答案1
此外,更改节点坐标似乎不会改变任何东西。tikz 图片是在图形环境中编译的,但我并不指望这会改变任何东西。这里出了什么问题?
您省略了at
指示放置节点的位置,如手册版本 3.0.1a 第 214 页所示:
\path ... node <foreach statements> [<options>](<name>) at (<coordinate>){<node contents>} ...;
添加at
允许您将节点放置在您希望它所在的位置:
\begin{tikzpicture}
\draw (0,0) rectangle (3, 1.5);
\node at (1.6,.75) {C};
\end{tikzpicture}
答案2
答案3
我不认为包括上面提到的内容可以解决问题。这是我的方法。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0) rectangle (3, 1.5);
\draw (1.5,0.75) node {C};
\end{tikzpicture}
\end{document}