带有 pythontex 和 tikz 的独立包:如何避免图片周围的空间?

带有 pythontex 和 tikz 的独立包:如何避免图片周围的空间?

我想生成一个在另一个文档中使用的 pdf 图片。尽管使用了独立包,但图像左侧仍有大量空白。

梅威瑟:

\documentclass[crop]{standalone}
\usepackage{tikz}
\usepackage{pythontex}
\begin{pycode}
a=17
\end{pycode}
\begin{document}
\begin{tikzpicture}
\node (node1) at (2,1) {1};
\node at (0,0) {\py{a}};
\end{tikzpicture} 
\end{document}

答案1

pythontex 在文档开头创建了很多空格。使用 standalone 的 tikz-option:

\documentclass[tikz]{standalone}

\usepackage{pythontex}
\begin{pycode}
a=17
\end{pycode}
\begin{document}

\begin{tikzpicture}
\node (node1) at (2,1) {1};
\node[draw] at (0,0) {\py{a}};
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容