Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klb2/review-response-template
LaTeX template for the response to reviewer comments (scientific journal publications)
https://github.com/klb2/review-response-template
academic-paper academic-publishing journal-publications latex latex-template overleaf-template publishing rebuttal-letter research-paper review-response scientific-publications
Last synced: 22 days ago
JSON representation
LaTeX template for the response to reviewer comments (scientific journal publications)
- Host: GitHub
- URL: https://github.com/klb2/review-response-template
- Owner: klb2
- License: gpl-3.0
- Created: 2021-09-30T12:17:58.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T16:45:03.000Z (7 months ago)
- Last Synced: 2024-06-25T18:37:17.242Z (7 months ago)
- Topics: academic-paper, academic-publishing, journal-publications, latex, latex-template, overleaf-template, publishing, rebuttal-letter, research-paper, review-response, scientific-publications
- Language: TeX
- Homepage: https://www.overleaf.com/latex/templates/review-response-template/tmbvmjstxwrd
- Size: 1.3 MB
- Stars: 34
- Watchers: 1
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- latex-templates - klb2/<br>review-response-template - response-template?style=flat-square)<br/>![20](https://img.shields.io/github/forks/klb2/review-response-template?style=flat-square)<br/>![2024-11-24](https://img.shields.io/github/last-commit/klb2/review-response-template?style=flat-square) | LaTeX template for the response to reviewer comments (scientific journal publications) | (Popular & New LaTeX Templates / Others)
README
# LaTeX Template for Review Responses
[![Overleaf Template](https://img.shields.io/static/v1?label=Overleaf&logo=overleaf&message=Template&color=47A141)](https://www.overleaf.com/latex/templates/review-response-template/tmbvmjstxwrd)
This repository provides a simple LaTeX template for writing responses to
reviewers, which is typically needed when submitting an article to a scientific
journal._This template is also available on
[Overleaf](https://www.overleaf.com/latex/templates/review-response-template/tmbvmjstxwrd)._# Usage
In order to use the `reviewresponse.cls` class in your document, simply include
the following line at the top of your LaTeX document```latex
\documentclass{reviewresponse}
```## Commands
The following commands are provided by the package.
If you are using [TeXstudio](https://www.texstudio.org/), there exists an
autocomplete file (`.cwl`) for the `reviewresponse.cls` package, which can be
found [here](https://gist.github.com/klb2/29f6fffeac8cc79e3b3f79e980a6b9e3).### Document Metadata
You can use the following commands to specify the metadata of the submitted
document.
Place these commands before `\begin{document}`.```latex
\title{Title of the Manuscript}
\author{Author One, Author Two, and Author Three}
\journal{Name of the Journal}
\manuscript{ID-of-the-Manuscript}
\editorname{Name of the Editor}
```### Editor and Reviewers
```latex
\editor
\reviewer
```These commands start a new editor and reviewer.
The typical usage is```latex
\begin{document}
...
\editor
Response to the editor\reviewer
Response to the first reviewer\reviewer
Response to the second reviewer
```### Comments and Responses
```latex
\begin{generalcomment}
...
\end{generalcomment}
```The `generalcomment` environment is meant for general comments given by the
editor and reviewers.```latex
\begin{revcomment}
...
\end{revcomment}
```The `revcomment` environment is meant for the individual comments made by the
reviewers.
They are automatically numbered.It also accepts optional arguments, which are directly passed to the underlying
`tcolorbox` environment.
This is useful, if you want to add some arguments in specific situations, e.g.,
the `breakable` keyword for very long comments.```latex
\begin{revresponse}[Optional Parameter]
...
\end{revresponse}
```The `revresponse` environment is meant for responses to the individual comments
of the reviewers and editor.
The optional parameter changes the text on the first line.
By default, this text is "Thank you for the comment.".The `concludingresponse` environment is meant for the final response to the editor or reviewer.
The optional parameter changes the text in the header of the `tcolorbox` environment.
By default, this text is "Concluding Response"; the value of the optional parameter is added to this text.```latex
\begin{concludingresponse}[to the Editor]
...
\end{concludingresponse}
```### Changes
```latex
\begin{changes}
...
\end{changes}
```The `changes` environment is meant for indicating changes that you made to your
manuscript.
It sets the content in a box in order to highlight it for the reviewers.### Bibliography
The `reviewresponse` package supports the use of `biblatex` for references.
Simply include `biblatex` and use the `\cite` command in your response.If you want to print specific references, e.g., at the end of the response to
one particular comment, you can use the `\printpartbibliography` command.```latex
\printpartbibliography{bibkey1,bibkey2,...}
```### Customization
You can customize the appearance of all the boxes in the `reviewresponse.sty`
file.If you only want to change the colors of the boxes, you need to redefine the
following colors.
The shown values are the defaults.```latex
\definecolor{colorcommentfg}{RGB}{0,63,87} % color of the title in the comment box
\definecolor{colorcommentbg}{HTML}{e0f0f6} % color of the background of the comment box
\definecolor{colorcommentframe}{RGB}{0,112,155} % color of the frame of the comment box\colorlet{colorchangebg}{black!2} % color of the background of the changes box
\colorlet{colorchangeframe}{black!20} % color of the frame of the changes box\colorlet{colorconcludingresponsefg}{black!80} % color of the title in the concluding response box
\colorlet{colorconcludingresponsebg}{black!2} % color of the background of the concluding response box
\colorlet{colorconcludingresponseframe}{black!20} % color of the frame of the concluding response box
```# Contribute
Thank you for considering contributing to this project.
You should be able to find all the information you need at
[`CONTRIBUTING.md`](CONTRIBUTING.md).