
Como posso suprimir o número da legenda com tufte
package ? Já tentei com caption
pacote, mas não funciona com tufte
... Obrigado
Responder1
Adicione as seguintes linhas em seu 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}
Saída:
Se você quiser o mesmo comportamento para tabelas, adicione também
\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}
Saída: