Browse Source

Added custom variable toc-own-page

pull/38/head
Andre 7 years ago
parent
commit
cddcb0a360
  1. 5
      README.md
  2. 6
      eisvogel.tex

5
README.md

@ -68,6 +68,9 @@ This template defines some new variables to control the appearance of the title
- `caption-justification` default=`raggedright`
justification setting for captions (uses the `justification` parameter of the [caption](https://ctan.org/pkg/caption?lang=en) package)
- `toc-own-page` default=`false`
begin new page after table of contents, when `true`
## Examples
@ -152,4 +155,4 @@ images and tables | Code blocks styled without listings
## License
This project is open source licensed under the BSD 3-Clause License. Please see the [LICENSE file](LICENSE) for more information.
This project is open source licensed under the BSD 3-Clause License. Please see the [LICENSE file](LICENSE) for more information.

6
eisvogel.tex

@ -724,6 +724,9 @@ $if(beamer)$
\begin{frame}
\tableofcontents[hideallsubsections]
\end{frame}
$if(toc-own-page)$
\newpage
$endif$
$else$
{
$if(colorlinks)$
@ -731,6 +734,9 @@ $if(colorlinks)$
$endif$
\setcounter{tocdepth}{$toc-depth$}
\tableofcontents
$if(toc-own-page)$
\newpage
$endif$
}
$endif$
$endif$

Loading…
Cancel
Save