是否可以将表格和图形的全部内容包含在另一个 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包含在 B.tex 中: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相同。