我如何才能使用包隐藏标题编号tufte
?我尝试使用caption
包,但不起作用tufte
...谢谢
答案1
在序言中添加以下几行
\makeatletter
\renewcommand\fnum@figure{\figurename}
\makeatother
梅威瑟:
\documentclass{tufte-book}
\makeatletter
\renewcommand\fnum@figure{\figurename}
\makeatother
\begin{document}
\begin{figure}
\caption{A figure}
\end{figure}
\end{document}
输出:
如果你希望表格也具有相同的行为,请添加
\renewcommand\fnum@table{\tablename}
梅威瑟:
\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}
输出: