I want to generate this pathway with Tikz, but I do not know how. I tried it with this, but it didn't work (I want to use compiler LaTeX, not pdfLaTeX, and I use OverLeaf.) Can anyone help?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning, arrows.meta, decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}[>=Stealth, node distance=2cm and 3cm, thick]
% Nodes
\node (crocetin) {Crocetin};
\node[right=of crocetin] (crocinV) {Crocin V};
\node[right=of crocinV] (crocinIII) {Crocin III};
\node[below=of crocinV] (crocinII) {Crocin II};
\node[left=of crocinII] (crocinIV) {Crocin IV};
\node[below=of crocinIII] (crocinI) {Crocin I};
% Arrows with labels above
\draw[->] (crocetin) -- node[above] {$\alpha$} (crocinV);
\draw[->] (crocinV) -- node[above] {$\beta$} (crocinIII);
\draw[->] (crocinIII) |- node[near start, right] {$\gamma$} (crocinI);
\draw[<-] (crocinI) -- node[above] {$\kappa$} (crocinII);
\draw[->] (crocinIV) -- node[above] {$\epsilon$} (crocinII);
\draw[->] (crocetin) -- node[left] {$\xi$} (crocinIV);
% Curved arrows
\draw[->] (crocinI.south) to[out=-90,in=-90,looseness=1.5] node[below] {$\theta$} (crocetin.south);
% Brace
\draw[decorate, decoration={brace, amplitude=10pt, mirror}]
(crocinIV.south west) -- (crocinI.south east) node[midway, below=10pt] {$\sigma$};
\end{tikzpicture}
\end{document}


