diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tocvsec2/tocvsec2-example.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tocvsec2/tocvsec2-example.tex | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tocvsec2/tocvsec2-example.tex b/Master/texmf-dist/doc/latex/tocvsec2/tocvsec2-example.tex new file mode 100644 index 00000000000..0dea71304b8 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tocvsec2/tocvsec2-example.tex @@ -0,0 +1,56 @@ + +\documentclass{article} + +\usepackage{tocvsec2} +\maxtocdepth{subsubsection} +\maxsecnumdepth{subsubsection} + +\def\x{% + \subsection{sone} xyz + \subsubsection{ssone} abc + \subsubsection{sstwo} def + \subsection{stwo} 123 + \paragraph{foo} here +} + +\begin{document} +\makeatletter + +\tableofcontents +\section{Normal section} +\x + +\setsecnumdepth{subsection} +\settocdepth{subsection} +\section{Reduce numbering} +\x + +\setsecnumdepth{section} +\settocdepth{section} +\section{Reduce numbering again} +\x + +\resetsecnumdepth +\resettocdepth +\section{Reset numbering once} +\x + +\setsecnumdepth{section} +\settocdepth{section} +\section{Reduce numbering again} +\x + +\resetsecnumdepth* +\resettocdepth* +\section{Another normal section after resetting completely} +\x + +\appendix + +\settocdepth{all} +\setsecnumdepth{all} +\section{Appendix with all numbering} +\x + + +\end{document} |