这个问题的标题可能不太清楚,我的英文表达能力也不好,举个例子来表达我的问题:
\someorder{a}{\paragraph{1999}ABCD}
\someorder{a}
我希望编译此代码后,它将显示两个相同的段落,第二个段落将自动引用第一个段落
答案1
根据@leandriis 的评论,这可能就是您正在寻找的标签/参考。
例如:
\documentclass[tikz]{standalone}
\begin{document}
This is some dummy Text, don't mind me.
\begin{equation}\label{eq:1}
1+1 = 2
\end{equation}
Please consider equation \ref{eq:1}.
\begin{figure}
\centering
\includegraphics[width=0.3\textwidth]{1.png}
\caption{Some Picture}
\label{fig:1}
\end{figure}
This also works for some reference for pictures \ref{fig:1}.
\end{document}
生成结果:
这不仅适用于方程式和数字,但我希望你能明白我的意思。