我知道我可以访问 TikZ 中路径的末尾,并将坐标命名为:
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{svg.path}
\begin{document}
\begin{tikzpicture}
\draw [green] svg {M201.1,673.2c1.4-39.8,2-52.2,18.2-70.8c11.7-13.5,18.3-24.3-7.7-49.4
c-39.3-38-43.2-59.2,1-90.2c18.1-12.7,67.1-20.2,25.4-36.6c-18.2-7.2-23.5-9.7-26.9-39.2c-3-26.7-17.7-28.2-37.7-35
c-20-6.9-87.7-28.8-50.2-78.2c23.5-31,58.6-73.9,83.1-118.2c13.3-24,22.4-56.5,38.6-85.9} coordinate (End);
\fill [red] (End) circle (4pt);
\end{tikzpicture}
\end{document}
我如何以相同的方式访问路径的起点?
答案1
这很棘手!svg
语法简化了 TikZ 路径构建机制的大部分工作,因此显而易见的解决方案coordinate[pos=0] (Start)
似乎不起作用。
因此,此方法在路径构建后获取路径并剥离初始坐标。然后,它会在该点处创建一个 TikZ 坐标。
\documentclass{standalone}
%\url{http://tex.stackexchange.com/q/364315/86}
\usepackage{tikz}
\usetikzlibrary{svg.path}
\makeatletter
\def\tikz@startcoord#1#2#3#4\pgf@stop#5{%
\begingroup
\pgftransformreset
\pgftransformshift{\pgfpoint{#2}{#3}}%
\pgfnode{coordinate}{center}{}{#5}{}%
\endgroup
}
\tikzset{
coordinate at start/.code={
\tikz@addmode{%
\pgfsyssoftpath@getcurrentpath\@temp
\expandafter\tikz@startcoord\@temp\pgf@stop{#1}
}%
}
}
\makeatother
\begin{document}
\begin{tikzpicture}
\begin{scope}[xshift=1cm]
\draw [coordinate at start=Start,green,yshift=2cm] svg {M201.1,673.2c1.4-39.8,2-52.2,18.2-70.8c11.7-13.5,18.3-24.3-7.7-49.4
c-39.3-38-43.2-59.2,1-90.2c18.1-12.7,67.1-20.2,25.4-36.6c-18.2-7.2-23.5-9.7-26.9-39.2c-3-26.7-17.7-28.2-37.7-35
c-20-6.9-87.7-28.8-50.2-78.2c23.5-31,58.6-73.9,83.1-118.2c13.3-24,22.4-56.5,38.6-85.9} coordinate (End);
\end{scope}
\fill [red] (End) circle (4pt);
\fill [blue] (Start) circle (4pt);
\end{tikzpicture}
\end{document
}
可能有更简单的方法来做到这一点......
已更新为忽略当前坐标变换(否则它们会被应用两次)。
答案2
可能比 OP 的要求稍微粗糙一些,但如果可以容忍分割 svg 路径,那么在第一个 moveto 之后放置一个坐标就可以了:
\documentclass[tikz,border=5]{standalone}
\usetikzlibrary{svg.path}
\begin{document}
\begin{tikzpicture}
\draw [green, xshift=25]
svg {M201.1,673.2}
coordinate (Start)
svg {c1.4-39.8,2-52.2,18.2-70.8c11.7-13.5,18.3-24.3-7.7-49.4
c-39.3-38-43.2-59.2,1-90.2c18.1-12.7,67.1-20.2,25.4-36.6
c-18.2-7.2-23.5-9.7-26.9-39.2c-3-26.7-17.7-28.2-37.7-35
c-20-6.9-87.7-28.8-50.2-78.2c23.5-31,58.6-73.9,83.1-118.2
c13.3-24,22.4-56.5,38.6-85.9}
coordinate (End);
\fill [blue] (Start) circle [radius=.1];
\fill [red] (End) circle [radius=.1];
\end{tikzpicture}
\end{document}