答案1
答案2
这实际上是来自 Ti 的例子钾Z&PGF手册...您可以使用quotes
库
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{quotes}
\begin{document}
\begin{tikzpicture}
\draw[blue] (0,0) -- node[above] {top} node[below] {bottom} (10,0);
%
\draw[red] (0,2) to ["top", "bottom" '] (10,2);
\end{tikzpicture}
\end{document}