在 Tikz 中向节点添加文本

在 Tikz 中向节点添加文本

根据TikZ 添加文本,我尝试了以下示例,以文本形式在 Tikz 图形中显示坐标。但代码不可编译。

如何在不使用命令的情况下将文本添加到 tikz 中的坐标\node

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \draw[thick,rounded corners=8pt] (0,0) {0,0} -- (0,2) {0,2}; 
\end{tikzpicture}
\end{document} 

根据@JouleV 的建议,我有以下几点:

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \draw (-5,0) node {-5,0} -- (5,0) node {5,0};
  \draw (0,-5) node {0,-5} -- (0,5) node {0,5};
  \draw (0,0) circle [radius=3cm];
\end{tikzpicture}
\end{document}

如何保证文字与线条之间有足够的空间?

答案1

您只需添加一些选项即可。

\documentclass[tikz,margin=3mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw (0,-5) node[below] {$(0,-5)$}--(0,5) node[above] {$(0,5)$};
\draw (-5,0) node[left] {$(-5,0)$}--(5,0) node[right] {$(5,0)$};
\draw (0,0) circle (3cm);
\end{tikzpicture}
\end{document}

在此处输入图片描述

事实上,您可以添加所有可能的选项\node

相关内容