この質問のタイトルは明確ではないかもしれません。私の英語表現は良くありません。私の問題を伝えるために例を挙げてください:
\someorder{a}{\paragraph{1999}ABCD}
\someorder{a}
このコードをコンパイルすると、同じ段落が2つ表示され、2番目の段落は最初の段落を自動的に参照すると思います。
答え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}
これにより、次のようになります。
これは方程式や図だけでなく、さまざまな場合に使えますが、その考え方を理解していただければ幸いです。