
¿Cómo puedo suprimir el número de título con tufte
el paquete? Lo intenté con caption
el paquete, pero no funcionó con tufte
... Gracias.
Respuesta1
Agregue las siguientes líneas en su preámbulo.
\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}
Producción:
Si también desea el mismo comportamiento para las tablas, agregue también
\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}
Producción: