tikz 图形不显示,但文本显示

tikz 图形不显示,但文本显示

我在一台新笔记本电脑上安装了新的(2018 年 1 月)Ubuntu 16.04 Linux 发行版,我猜测它附带了标准的 texlive。

在以下文件上运行 pdflatex 时,这是前几行:

pdflatex testtikz.tex
这是 pdfTeX,版本 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (预加载格式=pdflatex) 限制 \write18 已启用。进入扩展模式 (./testtikz.tex LaTeX2e <2016/02/01>

    \documentclass{article}
    \usepackage{tikz}

    \begin{document}

    PGF version is \pgfversion

    Before tikzpic

   \begin{tikzpicture}
   \draw (0,0) -- (0,2) -- (2,0)-- (0,0);
   \filldraw[color=red!60, fill=red!5, very thick](-1,0) circle (1.5);
   \node (maintopic) {Text};
   \end{tikzpicture}

   After tikzpic

   Regular latex picture follows:

   \setlength{\unitlength}{1cm}
   \thicklines
   \begin{picture}(10,6)
   \put(2,2.2){\line(1,0){6}}
   \put(2,2.2){\circle{2}}
   \put(6,2.2){\oval(4,2)[r]}
   \end{picture}

   \end{document} 

tikz 图形未显示在输出中(下面的屏幕截图),尽管 tikz 似乎可以正常工作,因为 \node 命令会生成文本。我以前没有使用过 tikz,但多年来一直使用 latex 进行排版。我没有使用 pdflatex,而是尝试使用 latex;在 xdvi 上或 dvipdf 之后仍然没有显示图形。

输出文件

我尝试使用 tikz 有什么错误?

相关内容