Um meine Listen nur dann auszudrucken, wenn Referenzen vorhanden sind, verwende ich die folgende Syntax:
% List of figures
\iftotalfigures\listoffigures\fi
% List of tables
\iftotaltables\listoftables\fi
Das Gleiche möchte ich nun für meine Gleichungen verwenden, und zwar wie folgt:
% List of xequations
\iftotalxequations\listofxequations\fi
Meine Erklärung lautet wie folgt:
\DeclareNewTOC[
counterwithin=chapter,
name=equation,
type=xequation,
nonfloat,
]{loe}
\AtBeginDocument{
\newcaptionname{ngerman}\xequationname{Gleichung}
\newcaptionname{ngerman}\listxequationname{Gleichungsverzeichnis}
}
-
\begin{xequation-}
\begin{gather}
\begin{aligned}
a &= b\\
\label{eq:1}
\end{aligned}\\
\begin{array}{lll}
\text{mit:} &&\\
a & \text{--} & \text{Test [1]}\\
b & \text{--} & \text{Test [1]}
\end{array}
\notag
\end{gather}
\caption[Test]{Test}
\end{xequation-}
Ist aber \iftotalxequations
nicht definiert. Gibt es eine einfache Möglichkeit, es zu definieren?
Antwort1
Wie in der ersten Antwort aufBedingte Auflistung von Inseraten - lstlistoflistings nur wenn Inserate vorhanden sindtotalcount
Sie können das Paket zum Definieren verwenden \iftotalxequations
.
MWE:
\documentclass[listof=entryprefix]{scrartcl}
\DeclareNewTOC[%
name=Formula,
type=xequation,
nonfloat,
]{loe}
\usepackage[xequation]{totalcount}
\begin{document}
\iftotalxequations\listofxequations\fi
\begin{xequation-}
$a=b$
\caption{P-Anteil}
\end{xequation-}
\begin{xequation-}
$E=mc^2$
\caption{Einstein}
\end{xequation-}
\end{document}