I'm surprised this works! chemmacros doesn't provide aJohannes_B wrote:To be honest, i don't even see the problem.Code: Select all
\documentclass[fleqn]{article} \usepackage{chemmacros} \usepackage{showframe} \setlength{\mathindent}{.2cm} \begin{document} \reaction{H2 + O* <=> OH* + H*} \end{document}
\reaction
macro but only a {reaction}
environment. Actually it doesn't work – try this:Code: Select all
\documentclass[fleqn]{article}
\usepackage{chemmacros}
\usepackage{showframe}
\setlength{\mathindent}{.2cm}
\begin{document}
\reaction{H2 + O* <=> OH* + H*}
foo bar
\end{document}
Code: Select all
\documentclass[fleqn]{article}
\usepackage{chemmacros}
\usepackage{showframe}
\setlength{\mathindent}{.2cm}
\begin{document}
\begin{reaction}
H2 + O* <=> OH* + H*
\end{reaction}
foo bar
\end{document}