이 질문의 제목이 명확하지 않을 수 있습니다. 내 영어 표현이 좋지 않아요. 내 문제를 전달하기 위해 예를 들어보십시오.
\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}
이는 다음을 생성합니다.
이것은 단순한 방정식과 숫자 이상의 용도로 작동하지만 여러분이 아이디어를 얻으시기 바랍니다.