带有 textopo 的独立文档中的空白区域

带有 textopo 的独立文档中的空白区域

这个问题与独立包的类似问题有关:除了所需的图形外,还添加了大量空白空间。但是,这次源代码中没有空段落。我的 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}

在此处输入图片描述

相关内容