Added custom variable toc-own-page

This commit is contained in:
Andre 2018-05-02 19:10:58 +02:00
parent f9b234f151
commit cddcb0a360
2 changed files with 10 additions and 1 deletions

View File

@ -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.

View File

@ -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$