mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-03-26 05:48:32 +00:00
Merge a7eba4131d00197dcc2143b026a07d86b4ad95c0 into 24a8c009368843605c212159ad8449476db87d20
This commit is contained in:
commit
637f8b2411
@ -123,6 +123,14 @@ This template defines some new variables to control the appearance of the result
|
||||
- `toc-own-page` (defaults to `false`)
|
||||
|
||||
begin new page after table of contents, when `true`
|
||||
|
||||
- `lof-own-page` (defaults to `false`)
|
||||
|
||||
begin new page after list of figures, when `true`
|
||||
|
||||
- `lot-own-page` (defaults to `false`)
|
||||
|
||||
begin new page after list of tables, when `true`
|
||||
|
||||
- `listings-disable-line-numbers` (defaults to `false`)
|
||||
|
||||
|
12
eisvogel.tex
12
eisvogel.tex
@ -1102,10 +1102,22 @@ $endif$
|
||||
$endif$
|
||||
$endif$
|
||||
$if(lof)$
|
||||
$if(lof-own-page)$
|
||||
\newpage
|
||||
$endif$
|
||||
\listoffigures
|
||||
$if(lof-own-page)$
|
||||
\newpage
|
||||
$endif$
|
||||
$endif$
|
||||
$if(lot)$
|
||||
$if(lot-own-page)$
|
||||
\newpage
|
||||
$endif$
|
||||
\listoftables
|
||||
$if(lot-own-page)$
|
||||
\newpage
|
||||
$endif$
|
||||
$endif$
|
||||
$if(linestretch)$
|
||||
\setstretch{$linestretch$}
|
||||
|
Loading…
x
Reference in New Issue
Block a user