LaTeX 样式或宏,用于详细回应裁判报告

LaTeX 样式或宏,用于详细回应裁判报告

是否有适合的宏(甚至风格)来回复审稿人和编辑?

这些通常需要解决几个问题。最好引用原文(可能已编号)并稍微缩进显示响应,例如

a) 将 foo 拼写为 bar

我们选择遵循 ABC 风格...

b) 包括对 Really, Important 和 Stuff (2010) 的引用

第 2 节已更新,讨论...

答案1

由于缺乏对任何预先存在的内容的指针,我最终得到了以下(相当简单的)解决方案,至少目前如此:

\newcommand{\pointRaised}[2]{\medskip \hrule \noindent 
               \textsl{{\fontseries{b}\selectfont #1}: #2}} 
\newcommand{\reply}{\noindent \textbf{Reply}:\ }       

\pointRaised宏有两个参数。第一个是问题的枚举和/或位置。这将设置为粗体。其余部分是我选择从提出的问题中引用的内容。这将设置为倾斜的。整个块由一些垂直空间和水平线分隔。

只是\reply以粗体标记开始,然后是注释。

答案2

为了插入评论关于根据审稿人的问题对 LaTeX 文件中的文本进行修改,一个好的、简单的选择是制作一个todonotes激活包的版本。可以在边缘处做小注释,大注释可以放在行中。例如:

1型

\documentclass{article}
\usepackage{lipsum}
\usepackage{todonotes}
\title{A more clever title
\todo{Modified according to referee}}
\author{The author}
\begin{document}
\maketitle
\begin{abstract}
\todo[inline,color=green!50]
{Abstract changed to adapt to format indicated in
guidelines to authors. Text has beeen changed to 
reflect the update of Section 2 and Discussion.}
\lipsum[1] 
\end{abstract}
\section{Introduction}
Really et al. (2010) 
\todo[color=blue!40]{Added citation} 
said some important suff.\lipsum[2]
\lipsum[3]
\end{document}

为一个带有问题和答案的信件,这本质上与考试的文本结构相同,因此您可以使用exam文档类。例如:

平均能量损失

\documentclass[answers,12pt]{exam}
\usepackage{xcolor}
\definecolor{SolutionColor}{rgb}{0.1,0.3,1}
\usepackage{lipsum}

\renewcommand{\thequestion}{\alph{question} }
\renewcommand\questionlabel{\llap{\thequestion)}}

%\pointsinrightmargin
%\boxedpoints
\unframedsolutions
\shadedsolutions
\definecolor{SolutionColor}{rgb}{0.9,0.9,1}
\renewcommand{\solutiontitle}{}

\begin{document}


Dear Editor in Chief, \bigskip

Please read below our answer about the \numquestions{}
questions made by  both refereees. I hope that you agree
wih all our comments. \bigskip

Best regards,\bigskip

The author

\begin{questions}
\question Spell foo as bar
\begin{solution}
 We opted to follow the ABC style of ... 
\end{solution}
\question  Include reference to Really, Important and Stuff (2010)
\begin{solution}
Section 2 has been updated and the discussion ... 
\end{solution}
\end{questions}

\end{document}

答案3

有一个新的作者对审稿人的漂亮回复模板, 那是

  1. 易于编写,并且
  2. 易于阅读。

内容可以这样写:

\section{Reviewer 1}
\subsection{Page 4 Line 12}
\RC Lengthy paragraph about something
\AR I do not agree.
\begin{quote}
Excerpt from the text with latexdiff-flavoured text changes.
\end{quote}

或者在 Markdown 中:

# Reviewer 1
## Page 4 Line 12
\RC Lengthy paragraph about something
\AR I do not agree.
> Excerpt from the text with latexdiff-flavoured text changes.

看起来像这样:

作者对评审信的回复示例

答案4

这将是一篇非 LaTeX 的文章。作为期刊的主编,我将根据经验添加一些想法。缺乏模板反映了这样一个事实:实际上不需要这样的模板。应该写一封回复审稿人意见的信,这样可以清楚地看到每条意见都得到了回复。这样一封信可能比其他任何东西都更能反映审稿格式。

我认为,这类信件最重要的方面显然是非 (La)TeX 问题,总结如下:1. 清晰度 2. 真诚 3. 热情

正如@dank 所说,(La)TeX 的正常结构特征足以(从技术上讲)制作一封成功的回复信。

相关内容