From db19a9d0b7f4f1ef421119e6d2f0f798d41faa0c Mon Sep 17 00:00:00 2001
From: Bas Nijholt <basnijholt@gmail.com>
Date: Fri, 13 Sep 2019 16:19:02 +0200
Subject: [PATCH] use listings correctly

---
 Makefile           |  2 +-
 listings-setup.tex | 25 -------------------------
 revtex.template    | 26 ++++++++++++++++++++++++++
 3 files changed, 27 insertions(+), 26 deletions(-)
 delete mode 100644 listings-setup.tex

diff --git a/Makefile b/Makefile
index cb93e6a..8e253fb 100755
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,4 @@ bbl: paper.tex
 	bibtex paper.aux
 
 paper.tex:
-	pandoc -s --filter pandoc-fignos --filter pandoc-citeproc --filter pandoc-crossref --natbib paper.md -o paper.tex --bibliography paper.bib --listings -H listings-setup.tex --template revtex.template
+	pandoc -s --filter pandoc-fignos --filter pandoc-citeproc --filter pandoc-crossref --natbib paper.md -o paper.tex --bibliography paper.bib --listings --template revtex.template
diff --git a/listings-setup.tex b/listings-setup.tex
deleted file mode 100644
index f9f1ce2..0000000
--- a/listings-setup.tex
+++ /dev/null
@@ -1,25 +0,0 @@
-% Contents of listings-setup.tex
-\usepackage{xcolor}
-
-\lstset{
-    basicstyle=\ttfamily,
-    numbers=left,
-    keywordstyle=\color[rgb]{0.13,0.29,0.53}\bfseries,
-    stringstyle=\color[rgb]{0.31,0.60,0.02},
-    commentstyle=\color[rgb]{0.56,0.35,0.01}\itshape,
-    numberstyle=\footnotesize,
-    stepnumber=1,
-    numbersep=5pt,
-    backgroundcolor=\color[RGB]{248,248,248},
-    showspaces=false,
-    showstringspaces=false,
-    showtabs=false,
-    tabsize=2,
-    captionpos=b,
-    breaklines=true,
-    breakatwhitespace=true,
-    breakautoindent=true,
-    escapeinside={\%*}{*)},
-    linewidth=\textwidth,
-    basewidth=0.5em,
-}
diff --git a/revtex.template b/revtex.template
index 9cf81b4..a0b5ed6 100755
--- a/revtex.template
+++ b/revtex.template
@@ -67,6 +67,32 @@
 % workaround for https://github.com/jgm/pandoc/issues/4716
 \newcommand{\passthrough}[1]{\lstset{mathescape=false}#1\lstset{mathescape=true}}
 
+\usepackage{xcolor}
+
+\lstset{
+    basicstyle=\ttfamily,
+    numbers=left,
+    keywordstyle=\color[rgb]{0.13,0.29,0.53}\bfseries,
+    stringstyle=\color[rgb]{0.31,0.60,0.02},
+    commentstyle=\color[rgb]{0.56,0.35,0.01}\itshape,
+    numberstyle=\footnotesize,
+    stepnumber=1,
+    numbersep=5pt,
+    backgroundcolor=\color[RGB]{248,248,248},
+    showspaces=false,
+    showstringspaces=false,
+    showtabs=false,
+    tabsize=2,
+    captionpos=b,
+    breaklines=true,
+    breakatwhitespace=true,
+    breakautoindent=true,
+    escapeinside={\%*}{*)},
+    linewidth=0.9\textwidth,
+    basewidth=0.5em,
+}
+
+
 \begin{document}
 
 \title{$if(title)$$title$$endif$}
-- 
GitLab