
Wie kann ich die Untertitelnummer mit tufte
dem Paket unterdrücken? Ich habe es mit caption
dem Paket versucht, aber es funktioniert nicht mit tufte
... Danke
Antwort1
Fügen Sie Ihrer Präambel die folgenden Zeilen hinzu
\makeatletter
\renewcommand\fnum@figure{\figurename}
\makeatother
MWE:
\documentclass{tufte-book}
\makeatletter
\renewcommand\fnum@figure{\figurename}
\makeatother
\begin{document}
\begin{figure}
\caption{A figure}
\end{figure}
\end{document}
Ausgabe:
Wenn Sie dasselbe Verhalten auch für Tabellen wünschen, fügen Sie auch hinzu
\renewcommand\fnum@table{\tablename}
MWE:
\documentclass{tufte-book}
\makeatletter
\renewcommand\fnum@figure{\figurename}
\renewcommand\fnum@table{\tablename}
\makeatother
\begin{document}
\begin{figure}
\caption{A figure}
\end{figure}
\begin{table}
\caption{A table}
\end{table}
\end{document}
Ausgabe: