Можно ли включить все содержимое таблицы и рисунка в другой 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:test
and 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. 2
и Fig. 10
. Можно ли импортировать как содержимое, так и индексы таблицы и рисунка в B.tex? То есть индексы должны быть такими же, как и в A.tex.