Code: Select all
\reaction{H2 + OH* <=> H2O + H*}

Sonntag
Code: Select all
\reaction{H2 + OH* <=> H2O + H*}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Code: Select all
\documentclass{article}
\usepackage[version=3]{mhchem}
\begin{document}
\reaction{H2 + OH* <=> H2O + H*} \label{Water}
See reaction~\ref{Water}
\end{document}
Code: Select all
\documentclass{article}
\usepackage { chemexec }
\usepackage[version=4,arrows=pgf-filled]{mhchem}
\begin{document}
\reaction{O2 + H* <=> OH* + O*}
\end{document}
Code: Select all
\documentclass{article}
\usepackage { chemexec }
\usepackage[version=4,arrows=pgf-filled]{mhchem}
\begin{document}
\reaction{H2 + OH* <=> H2O + H* \label{Water}}
See reaction~\ref{Water}
\end{document}
chemexec
has been my first attempt of writing a package ever. I knew little to nothing about writing a package and it is an obsolete package. Don't use it but use mhchem or chemmacros or chemformula instead. Using chemexec
is at your own risk and I won't provide any support to any conflicts due to its usage.Code: Select all
\documentclass{article}
\usepackage{chemmacros}
\usepackage{showframe}
\begin{document}
\listofreactions
\begin{reaction}
H2 + O* <=> OH* + H*
\end{reaction}
\renewtagform{reaction}[R ]{\{}{\}}
\begin{reactions}
Ca + O &-> CaO \\
H2 + O* &<=> OH* + H*
\end{reactions}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p