|
- \documentclass{standalone}
- \usepackage{tikz}
- \begin{document}
- \begin{tikzpicture}
- \path(0,2)--(2,2);
- \draw(0,0)circle(1);
- \end{tikzpicture}
- \end{document}
Copy the Code 上述代码在TeX中,边框是(-1,-1)(2,2).
见TeXLive.net
但是在i.upmath.me , 边框是 (-1,-1)(1,1) 
i.upmath.me使用了外部程序处理pdf或svg的裁剪, 没有使用TeX指定的边框. |
|