Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List of figures & List of tables with own page #282

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,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`)

Expand Down
12 changes: 12 additions & 0 deletions eisvogel.tex
Original file line number Diff line number Diff line change
Expand Up @@ -994,10 +994,22 @@
$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$}
Expand Down