I'm using the mhchem package and I'd like to have custom arrows in my text.
Rightarrow, leftarrow and doublearrow are fine with my custom design, but why uparrow and downarrow are not shown with my custom design? My MWE:
Code: Select all
\documentclass[a4paper,11pt]{book}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows.meta}
\usepackage[version=4]{mhchem}
\begin{document}
\ExplSyntaxOn
\cs_set:Npn \__mhchem_arrow_options_minLength:n { {1.25em} }
\ExplSyntaxOff
\mhchemoptions{arrows=pgf{Straight Barb[round, angle=60:1.5pt 3]}{0.1ex}}
\ce{A -> B} \\
\ce{C <- D} \\
\ce{E <=> F} \\
\ce{G ^} \\
\ce{H v} \\
\end{document}