
如何使用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}
輸出: