这段代码有什么问题?
\documentclass{article}
\usepackage[active,tightpage]{preview}
\begin{document}
\(1 + 1 = 2\)
\end{document}
我收到这个错误。
$ pdflatex bar.tex
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian)
restricted \write18 enabled.
entering extended mode
(./bar.tex
LaTeX2e <2011/06/27>
Babel <3.9f> and hyphenation patterns for 2 languages loaded.
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texmf/tex/latex/preview/preview.sty
(/usr/share/texmf/tex/latex/preview/prtightpage.def)) (./bar.aux)
Preview: Fontsize 10pt
Preview: PDFoutput 1
(./bar.aux) )
No pages of output.
Transcript written on bar.log.
你能帮我解决这个问题吗?
我想要的行为\documentclass[preview]{standalone}
。文本和数学都应该被呈现,但是页面大小应该被裁剪,以便足够大以容纳所有内容,但不能大于它。
答案1
你可能想要提取数学公式,所以
\documentclass{article}
%\usepackage[active,tightpage]{preview}
\usepackage[active,tightpage,textmath]{preview}
\begin{document}
\(1 + 1 = 2\)
\end{document}