-
Notifications
You must be signed in to change notification settings - Fork 70
Description
Describe the bug
The barrier
component includes a line along the bipole axis in the same width as the junction, i.e. thicker than the normal line width used for connections. This looks really weird; the barrier should be only the cross. It is also inconsistent with the openbarrier
component when its gap
is set to 0.
I believe that the barrier
should look just like an openbarrier
with no gap
, i.e. the bold stroke along the wire should be removed.
To Reproduce
The image above can be produced with the following MWE
\documentclass{article}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0)
to [barrier] ++(1,0)
to [openbarrier, bipoles/openbarrier/gap=0] ++(1,0);
\end{circuitikz}
\end{document}
Operating system, LaTeX distribution
I am on Windows with TeX Live 2024. I have TikZ verion 3.1.10 (2023-01-15) and Circuitikz version 1.7.0 (2024/08/03).
>pdflatex --version
pdfTeX 3.141592653-2.6-1.40.26 (TeX Live 2024)
kpathsea version 6.4.0
Copyright 2024 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.43; using libpng 1.6.43
Compiled with zlib 1.3.1; using zlib 1.3.1
Compiled with xpdf version 4.04
Expected behavior
The barrier
should look just like an openbarrier
with no gap
, i.e. the bold stroke along the wire should be removed.