这邮政解释了如何在课堂上删除所有图形的标题tufte-book
,但我需要删除没有标题的图形的标题。marginfigure
环境对此没有问题,当图形没有标题时,它只会打印其标签(例如图 1:)。
现在我的问题是如何处理figure
环境(具有带标签的图形)。示例代码如下:
\documentclass{tufte-book}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[scale=1]{sine.pdf}
\caption{I have no text for this caption and need to only print the
label.} %%% When I use \caption{}, I get nothing!
%\caption{}
\label{fig:figureX}
\end{center}
\end{figure}
\end{document}