为什么独立版无法正确检测 TikZ 裁剪?

为什么独立版无法正确检测 TikZ 裁剪?

这个小例子

\documentclass{standalone}
\usepackage{xltxtra,textcomp,graphicx,color,tikz}
\usepackage[absolute,overlay]{textpos}
\begin{document}
\begin{tikzpicture}
    \clip (0,0) rectangle (12.8cm, 1.15cm);
    \draw (0,0) grid (12.8cm, 1.15cm);
\end{tikzpicture}
\end{document}

生成以下输出:

输出

左侧的边距/额外空间来自哪里?我该如何删除它?不应该\clip处理这个吗?

答案1

使用

\documentclass[
   tikz,
   %border=1pt
]{standalone}

通过该tikz选项,standalone类知道它应该裁剪环境tikzpicture而不仅仅是给定的文本框。

使用边框选项,您可以更好地控制结果

相关内容