Importe uma tabela e figura de outro arquivo tex

Importe uma tabela e figura de outro arquivo tex

É possível incluir todo o conteúdo da tabela e figura em outro arquivo tex?

Digamos que temos 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}

E quero incluir tab:teste fig:testem B.tex com o seguinte código:

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

Isso obtém apenas o índice da tabela e figuras como Tab. 2e Fig. 10. É possível importar o conteúdo e os índices da tabela e fig em B.tex? Ou seja, os índices ainda devem ser os mesmos do A.tex.

informação relacionada