rmennes / tikzedt

Automatically exported from code.google.com/p/tikzedt
0 stars 0 forks source link

Parser error: Path/edge to relative named node #22

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
\begin{tikzpicture}
\coordinate (namedcoordinate) at (5,0);
\draw (0,0) -- +(namedcoordinate);
\end{tikzpicture}

What is the expected output? What do you see instead?
PDF is created but no overlay:
NoViableAltException

Please use labels and text to provide additional information.
TE 0.2

Original issue reported on code.google.com by notdiffi...@gmx.net on 2 Dec 2011 at 4:36

GoogleCodeExporter commented 8 years ago
I removed the parser error.... still this case is not handled correctly in TE.
It requires some more changes. I didn't know it was possible since, e.g., in
\begin{tikzpicture}
\node (namedcoordinate) at (5,0) {};
\draw (0,0) -- +(namedcoordinate);
\end{tikzpicture}
the + is ignored.
I added this to the long term TODO list.

Original comment by t.willwa...@gmail.com on 8 Jan 2012 at 8:25