是否有选项可以修剪右侧剩余的空白?

是否有选项可以修剪右侧剩余的空白?
\documentclass{article}
\usepackage[active,tightpage]{preview}
\PreviewBorder=12pt
\begin{document}
\begin{preview}
$
\frac{1}{3}=0.333\ldots \Rightarrow 1=3\times\frac{1}{3}=3\times 0.333\ldots=0.999\ldots
$\\
Thus $1=0.999\ldots$.
\end{preview}
\end{document}

在此处输入图片描述

是否有选项可以修剪右侧剩余的空白?

答案1

\linewidth您看到的额外空白是因为此处创建了一个具有宽度的段落。您可以使用包{varwidth}{<max width>}中的环境varwidth将段落宽度减小到最小。这minipage在内部使用环境。

\documentclass{article}
\usepackage{varwidth}
\usepackage[active,tightpage]{preview}
\PreviewBorder=12pt
\begin{document}
\begin{preview}
\begin{varwidth}{\linewidth}
$
\frac{1}{3}=0.333\ldots \Rightarrow 1=3\times\frac{1}{3}=3\times 0.333\ldots=0.999\ldots
$\\
Thus $1=0.999\ldots$.
\end{varwidth}
\end{preview}
\end{document}

您还可以使用standalone带有previewvarwidth=<max width|default: \linewidth>选项的类,它们内部将使用或多或少完全相同的代码:

\documentclass[varwidth,preview,border=12pt]{standalone}
\begin{document}
$
\frac{1}{3}=0.333\ldots \Rightarrow 1=3\times\frac{1}{3}=3\times 0.333\ldots=0.9
99\ldots
$\\
Thus $1=0.999\ldots$.
\end{document}

默认选项也在crop这里起作用,preview但不在preview内部使用该包。

相关内容