pdflatex 无法为简单树编译简单的 tizk 代码

pdflatex 无法为简单树编译简单的 tizk 代码

我尝试使用以下简单的 tikz 代码来绘制一棵小树。我收到的错误消息如下

软件包 tikz 错误:放弃此路径。您忘记了分号吗?

分号实际上在代码中。

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{trees,graphs}
\usepackage[latin1]{inputenc}

\begin{document}

\tikz [grow=right]
\node { ";" }
child { \node{x = 12}
}
child { \node{y = 13}
}
;
\end{document}

答案1

对于树中的子节点tikz,使用node而不是\node

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\begin{document}
\tikz [grow=right]
  \node { ``;'' }          % \node command ends at semicolon below
    child { node{x = 12} } % use node instead of \node
    child { node{y = 13} };% use node instead of \node
\end{document}

相关内容