summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex')
-rw-r--r--Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex75
1 files changed, 75 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex b/Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex
new file mode 100644
index 00000000000..800a130d827
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex
@@ -0,0 +1,75 @@
+%% LaTeX package xassoccnt - version 1.0 (2016/07/28 -- 21/05/18)
+%% Example file for reset list features file for xassoccnt.sty
+%%
+%%
+%% -------------------------------------------------------------------------------------------
+%% Copyright (c) 2016 by Dr. Christian Hupfer <christian dot hupfer at yahoo dot de>
+%% -------------------------------------------------------------------------------------------
+%%
+%% This work may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License, either version 1.3
+%% of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2005/12/01 or later.
+%%
+%%
+%% This work has the LPPL maintenance status `author-maintained`
+%%
+%%
+
+\documentclass{book}
+
+\usepackage{chngcntr}
+
+\usepackage{xassoccnt}
+
+\newcommand{\showfullresetlist}[1]{%
+\item Counter name: #1 \hfill \csname the#1\endcsname%\leavevmode%
+}
+
+\begin{document}
+
+\chapter{First}
+
+\section{First section}
+\begin{itemize}
+ \LoopFullCounterResetList{chapter}{\showfullresetlist}
+\end{itemize}
+
+\begin{figure}
+\caption{A dummy figure}
+\end{figure}
+
+\RemoveFromFullReset{section}{chapter}
+
+
+\chapter{Second Chapter}
+
+\section{First section in 2nd chapter}
+\begin{itemize}
+ \LoopFullCounterResetList{chapter}{\showfullresetlist}
+\end{itemize}
+
+\begin{figure}
+\caption{Another dummy figure}
+\end{figure}
+
+
+\AddToReset{section}{chapter}
+
+
+\chapter{Third Chapter}
+
+\section{First section in 3rd chapter}
+\begin{itemize}
+ \LoopFullCounterResetList{chapter}{\showfullresetlist}
+\end{itemize}
+
+\begin{figure}
+\caption{Another dummy figure}
+\end{figure}
+
+
+\end{document} \ No newline at end of file