What is the simplest way to represent a reaction network using LaTeX? An example of a reaction network is shown below:
Asked
Active
Viewed 1,372 times
1 Answers
7
chemfig can do this:
\documentclass{article}
\usepackage{chemfig}
\begin{document}
\schemestart
\subscheme{B + E}
\arrow(be--ac)[135]
\subscheme{A + C}
\arrow[90]
\chemfig{A}
\arrow{<=>}
\chemfig{B}
\arrow(@be--d){<=>}[45]
\chemfig{D}
\arrow(@ac--@d){<=>}
\schemestop
\end{document}
unbonpetit
- 6,190
- 1
- 20
- 26


\xymatrix? – Arun Debray Jan 31 '16 at 22:33