Template for Latex and/or Pandoc to quickly write reviews and (author) response letters
Use the examples in folder RC_to_MS/
.
\section{Anonymuous Reviewer}
\subsection{Page 4 Line 15}
begin{quote} The cat in the box is \hl{dead}. \end{quote}
\RC It could be alive as well.
Then run pdflatex myletter.tex
to make myletter.pdf
.
# Anonymuous Reviewer
## Page 4 Line 15
> The cat in the box is \hl{dead}.
\RC It could be alive as well.
Then run pandoc -s -S --template ../templates/RC_to_MS-pandoc.tex myletter.md -o myletter.pdf
to make myletter.pdf
.
Use the examples in folder AR_to_RC/
.
\section{Reviewer 1}
\subsection{Page 4 Line 15}
\RC Paragraph on how I do not like the paper.
\AR Thank you, we changed the text as suggested.
begin{quote} The cat in the box is \DIFdelbegin \DIFdel{dead}\DIFdelend \DIFaddbegin \DIFadd{alive}\DIFaddend . \end{quote}
Then run pdflatex myletter.tex
to make myletter.pdf
.
# Reviewer 1
## Page 4 Line 15
\RC Paragraph on how I do not like the paper.
\AR Thank you, we changed the text as suggested.
> The cat in the box is \DIFdelbegin \DIFdel{dead}\DIFdelend \DIFaddbegin \DIFadd{alive}\DIFaddend .
Then run pandoc -s -S --template ../templates/AR_to_RC-pandoc.tex myletter.md -o myletter.pdf
to make myletter.pdf
.
- supports latexdiff commands
- supports text highlighting with
\hl{}
- supports tables and figures,
- supports non-labeled paragraphs, starting with
\AR*
or\RC*
instead of\AR
or\RC
, respectively.