Para imprimir mis listas solo cuando hay referencias utilizo la siguiente sintaxis:
% List of figures
\iftotalfigures\listoffigures\fi
% List of tables
\iftotaltables\listoftables\fi
Ahora me gustaría usar lo mismo para mis ecuaciones como esta:
% List of xequations
\iftotalxequations\listofxequations\fi
Mi declaración es así:
\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-}
Pero \iftotalxequations
no está definido. ¿Existe una manera fácil de definirlo?
Respuesta1
Como se explica en la primera respuesta aLista condicional de listados: lstlistoflistings solo si los listados están presentesPuedes usar el totalcount
paquete para definir \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}