aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pandoc-citeproc-preamble.hs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pandoc-citeproc-preamble.hs b/src/pandoc-citeproc-preamble.hs
new file mode 100644
index 0000000..a72314c
--- /dev/null
+++ b/src/pandoc-citeproc-preamble.hs
@@ -0,0 +1,24 @@
+import Text.Pandoc.JSON
+
+preamble = [ RawBlock (Format "latex") "\\section*{References}"
+ , Para [ RawInline (Format "tex") "\\setlength{\\parindent}{-0.2in}"
+ , Space
+ , RawInline (Format "tex") "\\setlength{\\leftskip}{0.2in}"
+ , Space
+ , RawInline (Format "tex") "\\setlength{\\parskip}{8pt}"
+ , Space
+ , RawInline (Format "tex") "\\vspace*{-0.2in}"
+ , Space
+ , RawInline (Format "tex") "\\noindent"
+ ]
+ ]
+
+insertPreamble :: [Block] -> [Block]
+insertPreamble = foldr step []
+ where
+ step refs@(Div (_, ["references"], _) _) xs = preamble ++ refs : xs
+ step x xs = x:xs
+
+main = toJSONFilter preamble
+ where
+ preamble (Pandoc meta blocks) = Pandoc meta (insertPreamble blocks)