¿Cómo suprimir la numeración de los higos en el título con el paquete tufte?

¿Cómo suprimir la numeración de los higos en el título con el paquete tufte?

¿Cómo puedo suprimir el número de título con tufteel paquete? Lo intenté con captionel 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:

ingrese la descripción de la imagen aquí

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:

ingrese la descripción de la imagen aquí

información relacionada