Skip to content

Commit 7008d59

Browse files
committed
reviewer response pipeline
1 parent dd0d160 commit 7008d59

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ manuscript/*.docx
4242
manuscript/*.bib
4343
manuscript/*.bbl
4444
manuscript/*.blg
45-
manuscript/eidr.md
45+
manuscript/*.md
46+
manuscript/*.txt

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,9 @@ manuscript/combined.pdf: manuscript/manuscript.pdf manuscript/supplement.pdf
307307
manuscript/eidr.pdf: manuscript/eidr.md
308308
pandoc -o $@ $< -V geometry:margin=1in
309309

310+
manuscript/reviewer_comments.pdf: manuscript/reviewer_comments.md
311+
pandoc $< -H manuscript/quote_setup.tex -o $@
312+
310313
archive.zip:
311314
git archive --format zip --output archive.zip main
312315

manuscript/quote_setup.tex

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
% https://tex.stackexchange.com/a/180400/52459
2+
\usepackage{framed}
3+
\usepackage{tcolorbox}
4+
\let\oldquote=\quote
5+
\let\endoldquote=\endquote
6+
7+
% \renewenvironment{quote}{%
8+
% \begin{tcolorbox}\begin{oldquote}}{\end{oldquote}\end{tcolorbox}}
9+
10+
\renewenvironment{quote}{%
11+
\begin{tcolorbox}\list{}{\leftmargin=0in\rightmargin=0in}\item[]}%
12+
{\endlist\end{tcolorbox}}

0 commit comments

Comments
 (0)