几年前我看到过类似的问题这里,然而并没有有效的答案。
问题是,是否可以将特定文档中的每个图表和表格自动导出到单独的文件(带或不带图表/表格标题)。以下是更具体的要求列表。
- 将使用 tikz/pgfplots 创建的图形导出到单独的 pdf 文件(带有和不带有标题,并按照文档中的编号)
- 导出使用 tabular、tabularx 和 longtable 的表格(带和不带标题)
- 提取时,是否有办法从文档中删除/隐藏(及其标题)图形/表格,同时保留对该图形/表格的引用。
我在下面创建了一个示例文档,其中包含一个图形和一个表格,以便贡献者可以在他们的答案中使用它。
代码:
\documentclass{article}
\usepackage{tikz}
\usepackage{lipsum}
\usepackage{tabularx}
\title{example}
\author{John Doe}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{a Section}
In Figure \ref{fig:one} \lipsum[1]
\begin{figure}[ht]
\centering
\begin{tikzpicture}
\node(a)[draw, rectangle, ultra thick] at (0,0) {Test};
\node(b)[draw, rectangle, ultra thick] at (2,2) {Test};
\draw[-latex](a)--(b);
\end{tikzpicture}
\caption{Sample caption for figure 1}
\label{fig:one}
\end{figure}
\section{another Section}
\begin{table}
\begin{tabularx}{\textwidth}{llX}
\hline
colA&colB&colC \\
\hline
test&test&test\\
\hline
\end{tabularx}
\caption{Table A}
\label{table:A}
\end{table}
\end{document}
答案1
这演示了如何使用独立程序来处理.fff
文件。
5 英寸的宽度只是猜测。您可以使用 \the\textwidth 来打印每个文档应该使用的内容。
\begin{filecontents*}{test2.fff}
\begin{figure}
\centering
\includegraphics{example-image}
\caption{A figure without subfigures}
\end{figure}
\efloatseparator
\begin{figure}[htb]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=.9\textwidth]{example-image}
\caption{first part}
\end{subfigure}%
%
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=.9\textwidth]{example-image}
\caption{(second part)}
\end{subfigure}%
\caption{A figure with subfigures}
\end{figure}
\efloatseparator
\end{filecontents*}
\documentclass[multi={figure,table}]{standalone}
\usepackage{graphicx}
\usepackage{subcaption}
\setlength{\textwidth}{5in}
\def\efloatseparator{\relax}
\makeatletter
\renewenvironment{figure}[1][]{\minipage{\textwidth}\def\@captype{figure}}{\endminipage}
\renewenvironment{table}[1][]{\minipage{\textwidth}\def\@captype{table}}{\endminipage}
\makeatother
\begin{document}
\input{test2.fff}
\end{document}