答案1
该dash expand off
选项可能对您有用。
来自 TikZ 和 PGF手动的:
/tikz/dash expand off
使
off
虚线图案的一部分可展开,以便可以拉伸。这仅在存在单个字段且需要库时才有效on
。off
目前decorations
,必须在虚线图案选项之后生效的路径上指定此选项,因为必须dash pattern
在应用时知道。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations}
\begin{document}
\begin{tikzpicture}
\draw [dotted,dash expand off] (0,0.1) -- (1.02,0.1);
\draw [dotted,dash expand off] (0,0) -- (1,0);
\end{tikzpicture}
\end{document}