Skip to content

Commit

Permalink
reviewer response pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jsta committed Nov 18, 2022
1 parent dd0d160 commit 7008d59
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ manuscript/*.docx
manuscript/*.bib
manuscript/*.bbl
manuscript/*.blg
manuscript/eidr.md
manuscript/*.md
manuscript/*.txt
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ manuscript/combined.pdf: manuscript/manuscript.pdf manuscript/supplement.pdf
manuscript/eidr.pdf: manuscript/eidr.md
pandoc -o $@ $< -V geometry:margin=1in

manuscript/reviewer_comments.pdf: manuscript/reviewer_comments.md
pandoc $< -H manuscript/quote_setup.tex -o $@

archive.zip:
git archive --format zip --output archive.zip main

Expand Down
12 changes: 12 additions & 0 deletions manuscript/quote_setup.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
% https://tex.stackexchange.com/a/180400/52459
\usepackage{framed}
\usepackage{tcolorbox}
\let\oldquote=\quote
\let\endoldquote=\endquote

% \renewenvironment{quote}{%
% \begin{tcolorbox}\begin{oldquote}}{\end{oldquote}\end{tcolorbox}}

\renewenvironment{quote}{%
\begin{tcolorbox}\list{}{\leftmargin=0in\rightmargin=0in}\item[]}%
{\endlist\end{tcolorbox}}

0 comments on commit 7008d59

Please sign in to comment.