将输出的 pdf 页面裁剪到 \fbox

将输出的 pdf 页面裁剪到 \fbox

有没有办法用\fbox{}LaTeX 宏将输出的 PDF 裁剪成?我写了一个宏来测试这样的例子,例如:

\newcommand{\inlinebox}[1]{
\fbox{#1}%
<--crop the output page to the equation content-->
\clearpage%
}

LaTeX 的最小示例:

\documentclass{article}
\newcommand{\inlinebox}[1]{
\fbox{#1}%    
<--crop the output page to the equation content-->
\clearpage%
}
\begin{document}
\inlinebox{$\widetilde{\mathbf{l}}$}
\end{document}

预期的 PDF 输出如下:

在此处输入图片描述

我在使用包时遇到一些问题preview,而且我也不能使用standalone类,所以我需要编写自己的宏来处理这些小任务。

注意:我使用latex dvips ps2pdf循环

答案1

这就是你要找的东西吗?

\documentclass{standalone}

\begin{document}

\fbox{$\widetilde{\mathbf{l}}$}

\end{document}

我留下一些灰色边框来显示生成的 PDF 只包含框

在此处输入图片描述

你也可以这样做,但输出效果不太好

\documentclass{article}

\begin{document}

\pagestyle{empty}
\fbox{$\widetilde{\mathbf{l}}$}

\end{document}

然后运行

latex file.tex
dvips file.dvi -o
ps2pdf file.ps
pdfcrop file.pdf

相关内容