3

What is the simplest way to represent a reaction network using LaTeX? An example of a reaction network is shown below:

A chemical reaction network.

cgnieder
  • 66,645
ttrptki
  • 39

1 Answers1

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}

enter image description here

unbonpetit
  • 6,190
  • 1
  • 20
  • 26