다른 tex 파일에서 표와 그림 가져오기

다른 tex 파일에서 표와 그림 가져오기

표와 그림의 전체 내용을 다른 tex 파일에 포함시킬 수 있나요?

A.tex가 있다고 가정해 보겠습니다.

\documentclass{article}
\begin{document}

write something here.

\begin{table}[tbp]
    \caption{a}
    {
        \begin{tabular*}{\columnwidth}{l@{\extracolsep{\fill}}rrr}
            \toprule
            {test} & {test} & {test} & {test} \\
            \midrule
            {test} & {test} & {test} & {test} \\
            \bottomrule
        \end{tabular*}
    }
    \label{tab:test}
\end{table}

\begin{figure}[tbp]\centering
    \includegraphics[]{test_fig.pdf} 
    \caption{}\label{fig:test}
\end{figure}

\end{document}

그리고 다음 코드를 사용하여 B.tex에 tab:test및를 포함시키고 싶습니다 .fig:test

\documentclass{article}
\usepackage{xr}
\externaldocument[A-][docA.pdf]
\begin{document}
  Tab.~\ref{A-tab:test})
  Fig.~\ref{A-fig:test})
\end{document}

Tab. 2이것은 and 와 같은 테이블과 그림의 인덱스만 가져옵니다 Fig. 10. B.tex에서 테이블과 그림의 내용과 인덱스를 모두 가져올 수 있습니까? 즉, 인덱스는 여전히 A.tex와 동일해야 합니다.

관련 정보