從另一個 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}

我想將tab:testand包含fig:test在 B.tex 中,程式碼如下:

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

這只能得到表和圖的索引,如Tab. 2Fig. 10。是否可以匯入B.tex中table和fig的內容和索引?也就是說,索引應該仍然與 A.tex 相同。

相關內容