如何使用 tufte 套件抑制標題中的無花果編號?

如何使用 tufte 套件抑制標題中的無花果編號?

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

輸出:

在此輸入影像描述

相關內容