Carsten Gips

Results 53 comments of Carsten Gips

btw, when using the pandoc default latex template, you get the same behaviour. `pandoc minimalBsp.md --top-level-division=chapter -o standard.tex --standalone` yields also ``` \setcounter{secnumdepth}{-\maxdimen} % remove section numbering ``` and the...

hmmm, using `scrbook` as document class: * `pandoc minimalBsp.md --top-level-division=chapter --pdf-engine=pdflatex -o scrbook_numbered.pdf -V documentclass=scrbook --number-sections` looks good * `pandoc minimalBsp.md --top-level-division=chapter --pdf-engine=pdflatex -o scrbook.pdf -V documentclass=scrbook` figure numbers show...

testing further: * `pandoc minimalBsp.md --pdf-engine=pdflatex -o standard.pdf`: numbers are ok, but default class seems to be "report" (i.e. `book: true` seem to be ignored?) * `pandoc minimalBsp.md --pdf-engine=pdflatex -o...

well, as long as you can live with numbered sections :) i'm not sure, if this is just a koma issue. eisvogel seems to be affected as well, so it...

maybe this is connected to #116?

when using `--verbose` i observe some (maybe) related warnings, e.g. ``` Class scrbook Warning: You've used obsolete option `tablecaptionabove'. Class scrbook Warning: deprecated option `enabledeprecatedfontcommands'. Class scrbook Warning: Usage of...

Actually, this PR would introduce two changes: add a new metadata variable `tutor` as well as move the title logo in front of the title ...

perhaps this generic solution is indeed, ehm, more generic and would support a few more use-cases :) however, when working on my [pandoc-thesis](https://github.com/cagix/pandoc-thesis) i wished more than once for a...

it seems to me, that in the default pandoc latex template `\frontmatter` is used before `\maketitle`, which would resolve the numbering issue. for the time beeing i used in https://github.com/cagix/pandoc-thesis...