网站开发方案案例,现在去成都需要隔离吗?,淮北哪有做网站的,做电影网站怎么样问题描述
如果你在figure环境的\caption或\captionof中使用\cite#xff0c;但是参考文献的顺序仍然不正确#xff0c;可能是因为LaTeX的处理流程导致了这个问题。
比如图片在第二章节但里面引用了参考文献#xff0c;在文章末尾的参考文献第二章图片的参考文献顺序#…问题描述
如果你在figure环境的\caption或\captionof中使用\cite但是参考文献的顺序仍然不正确可能是因为LaTeX的处理流程导致了这个问题。
比如图片在第二章节但里面引用了参考文献在文章末尾的参考文献第二章图片的参考文献顺序却比第一章的要靠前latex优先处理的图标题里的bibtex。
解决办法
在这种情况下可以尝试使用notoccite宏包来防止\cite命令影响引文的排序。
在导言区添加以下命令
\usepackage{notoccite}这个宏包会禁止在文本中使用的\cite命令影响参考文献的排序。请确保它在其他biblatex宏包之前加载。
如果这个方法仍然不能解决问题可以尝试重新编译文档多次。有时候LaTeX 需要多次运行以正确处理引用和参考文献。
如果问题仍然存在你可能需要检查你的文档结构和使用的宏包确保它们没有引起引用顺序混乱的冲突。
正文里引用如下:
\begin{figure}\centering\includegraphics[width0.8\textwidth]{imgs/ch2/preload-rivet.pdf}\caption[The variability of the clamping stress as a function of the grip length for carbon steels.]{The variability of the clamping stress as a function of the grip length for carbon steels. (figure cite from \cite{a}, experimental data from Åkesson \cite{b},Wilson and Thomas \cite{Wilson1938FatigueJoints}, and Zhou \cite{c}. Also the average trend from Baron \ Larson \cite{d}, and upper and lower bounds from van Maarschalkerwaart \cite{e} are reported.)}\label{fig-preload-rivet}
\end{figure}List of Figure
当像上面的例子图标题太长的时候会出现 list of figure 也会出现很长一串但是后面的备注是不希望出现的因此可以采用以下办法来使list of figure里面的只参照这个[short-name] 以达到简略的方法。1
\caption[short-name]{Long-name}#latex #figure https://www.ntnu.no/wiki/display/imtsoftware/FiguresinLaTeX ↩︎