TikZ的独立图表?

时间:2010-04-23 20:50:39

标签: latex tikz

我正在使用TikZ在LaTeX中绘制图表,然后我想将其隔离为图像文件以进行联机。我的猜测是有一种方法可以直接提取这些图表,而无需从完成的.pdf文件中取出它们。我该怎么做呢? (如果重要,我正在使用TeXnicCenter。)

6 个答案:

答案 0 :(得分:58)

我会向您推荐以下方法。将tikz图片放在一个单独的文件中,并使用'standalone'类独立编译它。它使用其他答案中提到的“预览”包。要将图片包含在主文档中,首先加载“独立”,然后在图片文件中使用\ input。

这将允许您获得没有边距的tikz图片的单个PDF。然后你可以 使用PDF-to-say PNG转换器获取PNG(推荐用于图纸的Web发布)。 SVG格式会更好,因为它是矢量格式,但并非所有浏览器都能显示它。

这里有一些示例代码:

tikz图片文件(例如'pic.tex'):

\documentclass{standalone}
\usepackage{tikz}
% all other packages and stuff you need for the picture
%
\begin{document}
\begin{tikzpicture}
% your picture code
\end{tikzpicture}
\end{document}

主要文件:

\documentclass{article} % or whatever class you are using
\usepackage{standalone}
\usepackage{tikz}
% All other packages required
\begin{document}
% Text text text
% somewhere where you want the tikz picture
\input{pic}
% Text text text
\end{document}

然后编译图片并将其转换,例如使用ImageMagick(例如在Linux下):

pdflatex pic
convert -density 600x600 pic.pdf -quality 90 -resize 800x600 pic.png

或尝试SVG:

convert pic.pdf pic.svg

答案 1 :(得分:24)

跟进我的评论:Cirkuit通过运行类似以下命令序列的内容将TikZ图表转换为图像:

pdflatex img.tex
pdftops -eps img.pdf
convert -density 300 img.eps img.png

此处img.tex将是一个遵循此模板的LaTeX文件:

\documentclass{article}
\usepackage{tikz,amsmath,siunitx}
\usetikzlibrary{arrows,snakes,backgrounds,patterns,matrix,shapes,fit,calc,shadows,plotmarks}
\usepackage[graphics,tightpage,active]{preview}
\PreviewEnvironment{tikzpicture}
\PreviewEnvironment{equation}
\PreviewEnvironment{equation*}
\newlength{\imagewidth}
\newlength{\imagescale}
\pagestyle{empty}
\thispagestyle{empty}
\begin{document}
\begin{tikzpicture}
    % (your TikZ code goes here)
\end{tikzpicture}
\end{document}

如果您能够使用Cirkuit或类似的编辑器,或者为自己编写脚本以将图表放入该模板并运行相应的工具,您将可以快速将TikZ代码转换为PNG图像。

更直接地回答你的问题......不,我不知道有什么方法可以将TikZ图直接转换为PNG而无需通过PDF文件(或至少是DVI)某个阶段。

答案 2 :(得分:10)

请参阅Tikz手册“外部化图形”部分。这使您可以制作图形的EPS或PDF版本。我使用EPS文件,将它们转换为TIFF,然后将它们放在我需要的任何地方。

答案 3 :(得分:7)

我通常会沿着这些方向使用:

\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
%\setlength\PreviewBorder{2mm} % use to add a border around the image
\usepackage{tikz}
\begin{document}
\begin{preview}
\begin{tikzpicture}
    \shade (0,0) circle(2); % background
    \draw (0,0) circle(2);  % rim
    \draw (.75,1) circle(.5);   % right eye
    \fill (.66,.9) circle(.25); % right pupil
    \draw (-.75,1) circle(.5);  % left eye
    \fill (-.66,.9) circle(.25);% left pupil
    \fill (.2,0) circle (.1);   % right nostril
    \fill (-.2,0) circle (.1);  % left nostril
    \draw (-135:1) arc (-135:-45:1) -- cycle; % mouth
  \end{tikzpicture}
\end{preview}
\end{document}

生成的pdf文件包含独立的TikZ图片。要将其转换为任何其他文件格式,只需使用Gimp打开它。

答案 4 :(得分:2)

我使用它来Makefile规则从.tex文件创建PNG文件和缩略图,每个文件包含一个tikzpicture。它与TeXample.net处的图像创建类似:

%.png: %.tex
        @sed 's/^\\begin{document}/\
\\pgfrealjobname{dummy}\\begin{document}\\beginpgfgraphicnamed{example}/' $< | \
sed 's/^\\end{document}/\\endpgfgraphicnamed\\end{document}/' > example.tex ; \
        pdflatex --jobname=example example.tex ; \
        gs -dNOPAUSE -r120 -dGraphicsAlphaBits=4 -dTextAlphaBits=4 -sDEVICE=png16m \
-sOutputFile=$@ -dBATCH example.pdf ; \
        convert -thumbnail 200 $@ $(addsuffix .thumb.png, $(basename $@)) ; \
        mv example.pdf $(addsuffix .pdf, $(basename $<)) ; rm example.*

ghostview(gs)可能会被convert替换,您可以将example替换为另一个临时文件前缀。

答案 5 :(得分:2)

Windows:对于像我这样的新手来说是完全明确的

使用prewiew包作为Habi在乳胶代码中的上述建议删除边距。

安装MIktex和Inkscape并使用以下bat文件:

cd = "C:\Path to tex"
pdflatex input-file-name.tex
"C:\Program Files (x86)\Inkscape\inkscape.exe" input-file-name.pdf --export-plain-svg=output-file-name.svg