如何将具有多个子浮点数的图形保存到单个 pdf 文件中

如何将具有多个子浮点数的图形保存到单个 pdf 文件中

如何将具有多个子浮点数的图形保存到单个 pdf 文件中。

以下是代码:

\documentclass[12pt]{article}
\usepackage[percent]{overpic}

\begin{document}

\begin{figure}\centering
\begin{overpic}[width=0.49\textwidth]{pic.png}
\put(50,26){\textbf{A}}
\end{overpic}
\begin{overpic}[width=0.49\textwidth]{pic.png}
\put(50,26){\textbf{B}}
\end{overpic}
\begin{overpic}[width=0.49\textwidth]{pic.png}
\put(50,26){\textbf{C}}
\end{overpic}
\begin{overpic}[width=0.49\textwidth]{pic.png}
\put(50,26){\textbf{D}}
\end{overpic}
\begin{tabular}{|c|c|}
\hline test & test \\ 
\hline  &  \\ 
\hline 
\end{tabular} 
\caption{\label{fig-p1} caption.}
\end{figure}

\end{document}

它产生的结果是:

在此处输入图片描述

我想将红色方块中的图形保存为单个 pdf 文件(无白色边距),例如 fig1.pdf。然后下次,我只能包含 fig1.pdf,而不必包含那么多子浮点数:

\begin{figure}\centering
\includegraphics{fig1.pdf}
\caption{\label{fig-p1} caption.}
\end{figure}

我之所以问这个问题,是因为许多期刊要求你单独提交与正文相关的图表。

任何帮助将非常感激。

此处下载文本文件:https://dl.dropboxusercontent.com/u/45318932/test.zip

答案1

你可能会喜欢standalone此类别:

% arara: pdflatex
% !arara: indent: {overwrite: yes}
\documentclass[varwidth]{standalone}
\usepackage[percent]{overpic}
\begin{document}

\centering
\begin{overpic}[width=0.49\textwidth]{example-image-a}
    \put(50,26){\textbf{A}}
\end{overpic}
\begin{overpic}[width=0.49\textwidth]{example-image-b}
    \put(50,26){\textbf{B}}
\end{overpic}\\
\begin{overpic}[width=0.49\textwidth]{example-image-c}
    \put(50,26){\textbf{C}}
\end{overpic}
\begin{overpic}[width=0.49\textwidth]{example-image-a}
    \put(50,26){\textbf{D}}
\end{overpic}
\begin{tabular}{|c|c|}
    \hline test & test \\
    \hline      &      \\
    \hline
\end{tabular}

\end{document}

相关内容