Generaldocument review tools

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
pablochacin
Posts: 2
Joined: Mon Nov 12, 2007 12:14 pm

document review tools

Post by pablochacin »

Hi

I'm new to latex and currently my main problem in the migration from MS Word is more about the way I used to track the document review process. For instance, I used a color code to mark paragraphs or sentences wich need some actions, like "this paragraph needs some cleaning" (yelow), or "this citing is dubtios" (red), or "this text is redundant" (grey) and so for.

Also, I made an extensive usage of comments or annotation in the text (like "this concept hasn't been explained before") which were printed with the document (either is a separate page or to the right of the page.

So far, I haven't found any similar tools in latex. Firts, comments are just ignored in the preparation process. Second, I haven't found how to change the color of a paragraph or sentence.

I would appreciate any suggestiong.

Thanks in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

document review tools

Post by localghost »

For adding notes to your document, you can use

Code: Select all

\marginpar{text}
The marginnote package improves the behaviour of such marginal notes, but you then you have to add

Code: Select all

\usepackage{marginnote}
to your preamble and use

Code: Select all

\marginnote{text}
instead. Color is possible with the xcolor package. It provides some predefined colours and lets you easily define your own.

Refer to the documentation of the packages. You can find packages and their documentations on the servers of the Comprehensive TeX Archive Network (CTAN). In many countries there exist TeX User Groups as the TUG (UK) or DANTE (Germany). They all have their own CTAN mirror servers.


Best regards and welcome on the board
Thorsten
Post Reply