标签:ar 使用 sp 文件 art as tt c file
用tikz画的图片如果想用于别的tex文件中,需要生产与图片大小符合的pdf图片文件(这样可以防止后续截图丢失像素)。方法如下,使用pgfrealjob。
一个简单的例子:
\documentclass{article} \usepackage{graphics} \usepackage{tikz} \pgfrealjobname{picture} \begin{document} \beginpgfgraphicnamed{picture-f1} \begin{tikzpicture} \fill (0,0) circle (10pt); \end{tikzpicture} \endpgfgraphicnamed \end{document}
在命令行执行
pdflatex --jobname=picture-f1 picture.tex
极好的编辑图片的方法(create a pdf file exactly as big as a tikz picture)
标签:ar 使用 sp 文件 art as tt c file
原文地址:http://www.cnblogs.com/cs-jack-cheng/p/4110342.html