LaTeX 命令不在图列表中显示引文
LaTeX command to NOT show citation in List of Figures
我正在写报告,我想知道 LaTeX 中是否有一个命令可以在主要内容中显示对图形的引用,但在后面生成的图形列表中不相同?
例如:
在主章节中
图:1 XYZ过程的ABC [引用]
但报告后面生成的图表列表应显示:
图:1 XYZ流程ABC ...............................页码
在我的大部分图中,我使用以下代码:
\begin{figure}
\includegraphics[scale=1.0]{Image folder/image of interest}
\caption{ABC of XYZ process \cite{citation here}}
\label{fig: for reference purposes}
\end{figure}
因为 \cite{},图表列表显示了引用标记,例如[1] 或 [2] 我不想要。
如有任何帮助,我们将不胜感激。
谢谢
\caption
宏有一个可选参数,即用于图表列表的参数。因此:
\caption[ABC of XYZ process]{ABC of XYZ process \cite{citation here}}
文本中的标题会包含引文,但它会出现在 LoF 中的是“ABC of XYZ process”。
LaTeX wikibook 有更多详细信息。
我正在写报告,我想知道 LaTeX 中是否有一个命令可以在主要内容中显示对图形的引用,但在后面生成的图形列表中不相同?
例如: 在主章节中
图:1 XYZ过程的ABC [引用]
但报告后面生成的图表列表应显示:
图:1 XYZ流程ABC ...............................页码
在我的大部分图中,我使用以下代码:
\begin{figure}
\includegraphics[scale=1.0]{Image folder/image of interest}
\caption{ABC of XYZ process \cite{citation here}}
\label{fig: for reference purposes}
\end{figure}
因为 \cite{},图表列表显示了引用标记,例如[1] 或 [2] 我不想要。
如有任何帮助,我们将不胜感激。
谢谢
\caption
宏有一个可选参数,即用于图表列表的参数。因此:
\caption[ABC of XYZ process]{ABC of XYZ process \cite{citation here}}
文本中的标题会包含引文,但它会出现在 LoF 中的是“ABC of XYZ process”。
LaTeX wikibook 有更多详细信息。