Closed
Description
Hello,
I'm trying to convert circuit drawings created with circuitikz
to svg. However, the output is missing some things.
Compiling this tex:
\documentclass[margin = 24mm]{standalone}
\usepackage{xcolor, circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0, 0) to [short, o-*] (1, 0);
\end{circuitikz}
\end{document}
gives me this pdf:
(notice the empty and filled circle on the end of the line)
If I convert this to svg using
dvisvgm --pdf circle.pdf
However, if I first convert the pdf to ps using poppler, and then convert the ps to svg:
pdftops circle.pdf
dvisvgm --eps circle.ps
I wasn't able to figure out, how exactly the *-o
is drawn by circuitikz, and normal circles drawn with tikz work as expected.
Thanks for any help in advance.