別の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:testand を含めたいと思います。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これは、 やのように、表と図のインデックスのみを取得しますFig. 10。 B.tex の表と図の内容とインデックスの両方をインポートできますか? つまり、インデックスは A.tex のものと同じである必要があります。

関連情報