这个问题与独立包的类似问题有关:除了所需的图形外,还添加了大量空白空间。但是,这次源代码中没有空段落。我的 MWE:
\documentclass[convert]{standalone}
\usepackage[english]{babel}
\usepackage{textopo}
\begin{document}
\begin{textopo}
\sequence{EIKKKLFWRAV[VAEFLAMTLFVFISIGSA]LGFNYPLERN}
\end{textopo}
\end{document}
运行后产生以下 pngpdflatex -shell-escape -synctex=1 -interaction=nonstopmode mwe.tex
我怀疑问题出在 textopo 软件包中,而不是独立软件包中,但是,我需要更有经验的人的确认。任何解决方法都将不胜感激。
答案1
我只会使用article
然后在外部裁剪例如pdfcrop
使用
\documentclass{article}
\usepackage[english]{babel}
\usepackage{textopo}
\begin{document}
\pagestyle{empty}
\begin{textopo}
\sequence{EIKKKLFWRAV[VAEFLAMTLFVFISIGSA]LGFNYPLERN}
\end{textopo}
\end{document}
然后应用pdfcrop
(与 texlive 2012 一起安装)产生
答案2
如果我textopo
在一个盒子里构建环境,计算出的宽度是 5178.32596pt,也就是 6 英尺或 1.8 米。
varwidth
如果使用选项,您将获得更合理的输出standalone
。不过,两侧仍有空白。
\documentclass[varwidth,convert]{standalone}
\usepackage{textopo}
\begin{document}
\begin{textopo}
\sequence{EIKKKLFWRAV[VAEFLAMTLFVFISIGSA]LGFNYPLERN}
\end{textopo}
\end{document}