Completing Chemfig Scheme

chemfigchemistrystructure

I'm currently writing a lab report using LaTeX and I'm tasked with rewriting one of the chemical reactions (in this instance isoborneol to camphor, reaction provided in pic). I have the basic structures down, however I'm unsure even after consulting the docs how to add the wedge and middle line into the aromatic structures. My current code:

\begin{figure}[!htbp]
\centering
\caption{Isoborneol Oxidation Reaction To Camphor.\cite{chemfig,textbook}}
\schemestart
    \chemname{\chemfig{*6(-(-)-(<OH)----)}}{Isoborneol}
    \+
    \chemname{\chemfig{NaOCl}}{Sodium\\Hypochlorite}
    \arrow{->[HOAc][]}
    \chemname{\chemfig{*6(-(-)-(=O)----)}}{Camphor}
    \+
    \chemname{\chemfig{NaCl}}{Sodium\\Chloride}
    \+
    \chemname{\chemfig{H_2O}}{Water}
\schemestop
\end{figure}

Isoborneol to Camphor Synthesis Reaction

enter image description here

Best Answer

Here are two versions, one inspired by the example in the chemfig manual, the other closer to the image in your question:

enter image description here

\documentclass{article}
\usepackage{chemfig}
\begin{document}

\begin{figure}[!htbp]
\centering
\caption{Isoborneol Oxidation Reaction To Camphor.\cite{chemfig,textbook}}
\schemestart
    \chemname{\chemfig{*6(-(-)(<:[::120](-[::-100,0.7])(-[::100,0.7]))-(<OH)--(<:[::120])---)}}{Isoborneol}
    \+
    \chemname{\chemfig{NaOCl}}{Sodium\\Hypochlorite}
    \arrow{->[HOAc][]}
    \chemname{\chemfig{*6(-(-)(<:[::120](-[::-100,0.7])(-[::100,0.7]))-(=O)--(<:[::120])---)}}{Camphor}
    \+
    \chemname{\chemfig{NaCl}}{Sodium\\Chloride}
    \+
    \chemname{\chemfig{H_2O}}{Water}
\schemestop
\end{figure}

\begin{figure}[!htbp]
\centering
\caption{Isoborneol Oxidation Reaction To Camphor.\cite{chemfig,textbook}}
\schemestart
    \chemname{\chemfig{*6(-(-)(-[::100,1.075](-[::-70,0.8])(-[::110,0.8]))-(<OH)--(-[::140,1.075])---)}}{Isoborneol}
    \+
    \chemname{\chemfig{NaOCl}}{Sodium\\Hypochlorite}
    \arrow{->[HOAc][]}
    \chemname{\chemfig{*6(-(-)(-[::100,1.075](-[::-70,0.8])(-[::110,0.8]))-(=O)--(-[::140,1.075])---)}}{Camphor}
    \+
    \chemname{\chemfig{NaCl}}{Sodium\\Chloride}
    \+
    \chemname{\chemfig{H_2O}}{Water}
\schemestop
\end{figure}

\end{document}
Related Question