我在标题中引用了引文,并且参考书目中列出了每个参考文献的页码。但是,它列出了我的图表列表 ( ix
) 的页码,但我想将其删除。有没有办法在将标题放入 LoF 时删除部分标题,或者不在参考文献页码列表中包含序言页码?
\begin{figure}[ht!]
\centering
\includegraphics[width=\textwidth]{figure1}
\caption{caption is here (adapted from \cite{reference1}).}
\label{fig:figure1}
\end{figure}
答案1
该命令caption
与大多数其他级别的命令一样,有一个可选参数,用于 TOC、LOF 或 LOT:
\caption[caption for TOC]{caption here}
在标题中使用 \cite 的要求非常常见。Donald Arsenau 编写了一个包来简化此过程:菱镁矿
\documentclass{article}
\usepackage{notoccite}
\begin{document}
\listoffigures
\section{foo}
Text \cite{article-full}
\begin{figure}[!ht]
\caption{caption \cite{book-full}}
\end{figure}
\bibliographystyle{unsrt}
\bibliography{xampl}
\end{document}