Importar una tabla y una figura desde otro archivo tex

Importar una tabla y una figura desde otro archivo tex

¿Es posible incluir todo el contenido de la tabla y figura en otro archivo tex?

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

Y quiero incluir el tab:testy fig:testen B.tex con el siguiente código:

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

Esto solo obtiene el índice de la tabla y la figura como Tab. 2y Fig. 10. ¿Es capaz de importar tanto el contenido como los índices de la tabla y la figura en B.tex? Es decir, los índices deberían seguir siendo los mismos que los de A.tex.

información relacionada