\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
带有preview
和varwidth=<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
内部使用该包。