You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you write a book your *.md document gets pretty long. It makes sense, e.g. to create a main.md, which include several other markdown files, wheres each included file contains a chapter of the book.
Is this template capable of this?
The text was updated successfully, but these errors were encountered:
something like pandoc -t pdf --template=https://github.com/Wandmalfarbe/pandoc-latex-template/blob/master/eisvogel.tex main.md chap1.md chap2.md chap3.md -o paper.pdf should work out of the box ... if you really want "includes", check out this Lua filter for Pandoc: https://github.com/pandoc/lua-filters/tree/master/include-files
This is great, but can be a little excessive in some cases. I found, that the easiest way of merging multiple markdown files together is just by grabbing them with glob like this:
pandoc src/*.md -o paper.pdf
Glob sorts files lexigraphically, so your src directory should look something like this:
If you write a book your
*.md
document gets pretty long. It makes sense, e.g. to create amain.md
, which include several other markdown files, wheres each included file contains a chapter of the book.Is this template capable of this?
The text was updated successfully, but these errors were encountered: