Carsten Gips

Results 53 comments of Carsten Gips

you could try https://tex.stackexchange.com/questions/262380/how-to-automatically-center-images, i.e. you would need to redefine the `\includegraphics` command which is generated by the latex writer in pandoc. you could put the lines in a `center.tex`...

you also could add a class to your markdown image like `![](myimage.png){.center}` and add the proposed `\begin{center}` and `\end{center}` for all images with class `center` using a simple lua filter...

what does pandoc say, i.e. what's the result of `pandoc mwe.md -o mwe.pdf`?

hmmm, pandoc converts the snippet in https://github.com/Wandmalfarbe/pandoc-latex-template/issues/156#issue-569568418 to ``` \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \item \begin{quote} This is a quote. \end{quote} \item This is the second line. \end{enumerate} ``` which seems to be...

did you also use `--filter pandoc-citeproc`? (see https://pandoc.org/MANUAL.html "Citations")

I'm a little surprised, that ```pandoc test.md -o example.pdf --from markdown --template eisvogel --listings --bibliography=src/biblio.bib``` should work, would have expected something like ```pandoc test.md -o example.pdf --from markdown --template eisvogel...

Regarding citations in markdown and pandoc see https://pandoc.org/MANUAL.html#citation-rendering and https://pandoc.org/MANUAL.html#citations and https://github.com/jgm/pandoc-citeproc/blob/master/man/pandoc-citeproc.1.md Pandoc uses per default the "Chicago style". You find other styles here: https://www.zotero.org/styles (download and use with `--csl...

that's strange. i also use `eisvogel.tex` in my [bachelor thesis template](https://github.com/cagix/pandoc-thesis), where it works just fine. tested the latest version, works still fine in my setup. i tried your mwe...

seems to be working, when using `scrreport` ...

well, the difference between `--number-sections` and your version is just ``` \setcounter{secnumdepth}{-\maxdimen} % remove section numbering ``` (line 113, compiled with `pandoc minimalBsp.md --template eisvogel.tex --top-level-division=chapter -o eisvogel_chapter.tex`) and ```...