class: left, middle, inverse <!-- Title slide --> ### Friends don't let friends copy-paste ![:pull right, 35%]( <img src="https://github.com/crsh/papaja/raw/main/tools/images/papaja_hex.png" style="padding-top: 0.5em;"> ) # Revision letters #### Frederik Aust & Marius Barth <small> 21.04.2023 </small> --- exclude: true --- layout: true name: footer <div class="my-footer"> <div style="float: left;"><span>Frederik Aust & Marius Barth</span></div> <div style="text-align: right;"><span>Friends don't let friends copy-paste</span></div> <div style="float: center;"><span>21.04.2023</span></div> </div> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ "HTML-CSS": { scale: 150, } }); </script> --- <script src="https://cdn.jsdelivr.net/npm/medium-zoom@1.0.6/dist/medium-zoom.js"></script> <script type="module"> import mediumZoom from 'https://cdn.jsdelivr.net/npm/medium-zoom@1.0.6/dist/medium-zoom.esm.js' const zoomDefault = mediumZoom('#zoom-default') const zoomMargin = mediumZoom('#zoom-margin', { margin: 45 }) </script> --- layout: true template:footer # papaja ### Revision letter --- <img src="data:image/png;base64,#img/create-revision-letter.png" width="400px" height="" style="display: block; margin: auto;" /> --- A simpler YAML front matter ~~~yaml --- title : "Manuscript title" authors : "First Author & Second Author" journal : "Journal title" manuscript-id : "Manuscript number" cutout-quotes : true class : "draft" output : papaja::revision_letter_pdf --- ~~~ -- Other fields (e.g. `bibliography`) may be added. --- `:::reviewer` and `:::` enclose numbered reviewer comments .pull-left-45[ ~~~markdown # Reviewer \#1 :::reviewer This is a reviewer comment ::: This is our response ~~~ ] .pull-right-50[ ![](data:image/png;base64,#img/revision-preview1.png) ] --- .pull-left-45[ ~~~markdown :::reviewer This is a reviewer comment ::: * \Easy * \Assignment{First Author} * \WorkInProgress ~~~ ] .pull-right-50[ - Evaluate comments - Assign work packages - Track progress ] <img src="data:image/png;base64,#img/revision-preview2.png" width="500px" height="" style="display: block; margin: auto;" /> --- "Labelled quotes"-tags to quote paragraphs from the revised manuscript - Tag paragraphs in `manuscript.Rmd` ~~~yaml quote_labels: yes ~~~ ~~~md <@~{#revised-paragraph} This paragraph was thoroughly revised to please Reviewer 2. ~@> ~~~ --- "Labelled quotes"-tags to quote paragraphs from the revised manuscript - Quote paragraph in revision letter ~~~md ```{r} quote_from_tex(x = "revised-paragraph", file = "manuscript.tex") ``` ~~~ --- Use [`latexdiff`](https://ctan.org/pkg/latexdiff) ([online](https://3142.nl/latex-diff/)) to automatically highlight changes between two LaTeX files ~~~sh latexdiff manuscript_original.tex revision.tex > diff.tex ~~~ -- ~~~tex Implicit learning refers to the ability to adapt to regularities inherent in the environment in the absence of conscious awareness about the ongoing learning process itself or \DIFdelbegin \DIFdel{about the outcome of what is learned}\DIFdelend \DIFaddbegin \DIFadd{bla bla bla}\DIFaddend . This ability is fundamental for human beings as it allows us to act optimally in stable environments with relatively little effort. ~~~ --- Highlighted changes can be quoted in the revision letter ~~~tex % <@~{#revised-paragraph} Implicit learning refers to the ability to adapt to regularities inherent in the environment in the absence of conscious awareness about the ongoing learning process itself or \DIFdelbegin \DIFdel{about the outcome of what is learned}\DIFdelend \DIFaddbegin \DIFadd{bla bla bla}\DIFaddend . This ability is fundamental for human beings as it allows us to act optimally in stable environments with relatively little effort. % ~@> ~~~ --- template: footer class: middle, center # [Let's get some exercise](http://frederikaust.com/papaja-workshop/exercises/12_revision_question.html)!