参考附件

参考附件

我正在使用一个模板来撰写我的论文,并试图引用我在附件中写的一些内容,例如在附件中使用 \label 并在引用它的地方使用 \ref。

问题是我无法引用附件中的某些内容。我找不到它的标签。可能是因为附件不是章节之类的。有什么建议可以解决此问题吗?

我的文档的结构:

    \documentclass[twoside]{esi-tfm}
\usepackage{custom}
\usepackage{multicol}
\usepackage{dirtytalk}
\input{metadata.tex}


\begin{document}

\cover
\bastardtitle
\frontpage
\signatures

\frontmatter
\copyrightpage
\jury
\tableofcontents
\listoftables
\listoffigures
\lstlistoflistings
\input{acro.tex}


\mainmatter

\input{intro.tex}
\input{webography.tex}
\appendix
\appendixtitle


In this annex are given some extended examples of code that will help understand the work better. \label{I WANT TO REFRENCE THIS SENTENCE FROM ANNEX}

\backmatter
\bibliography{main}
\cleardoublepage

\end{document}

当我将 \label 放在附录/附件中时,我会在文档的最后一部分获得一个参考,即 webography.com

谢谢

答案1

好的,我正在发布我找到的解决方案。

我把代码放在附件中,如下所示:

\begin{sltlisting} [caption= Caption, label=Label]

\end {lstlisting}

然后我参考使用\ref{Label}并且它有效。

相关内容