note286 / xduts

Xidian University TeX Suite 西安电子科技大学LaTeX套装
https://www.ctan.org/pkg/xduts
LaTeX Project Public License v1.3c
699 stars 71 forks source link

图片标题中的脚注和引用 #178

Closed 1518064060 closed 5 months ago

1518064060 commented 5 months ago

image image 例如想要给图片名称加上引用或脚注,文本中可以显示,但是在图片索引中无法显示图片名称,有大佬知道如何解决嘛!!!

note286 commented 5 months ago

下次建议使用文本提供代码,而不是图片。

\documentclass{xdupgthesis}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics[width=\linewidth]{example-image}
\caption[title]{title\footnotemark}
\label{key}
\end{figure}
\footnotetext{text}
\end{document}
1518064060 commented 5 months ago

感谢大佬