Hi everyone I'm not very good at using latex yet, but I am figuring it out, so my apologies in advance if this is something super basic.
I am trying to create an additional single page after my glossary for standard amino acid codes (needs to be listed in toc as well), but I don't know how to get a third column beside the three letter code, which would show the symbol (the one letter code) beside the three letter code. I set up a custom style (and by set up I mean copied this code from somewhere that I now cannot find) that modifies the long glossary style, and I played around a bunch, but I couldn't get the "custom" style to show a third column listing the "symbols", the one letter code.
Here is a MWE.
\documentclass{report}
\usepackage[nogroupskip,toc]{glossaries-extra}
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\newglossarystyle{custom}{
\setglossarystyle{long}
\renewenvironment{theglossary}
{\begin{longtable}[l]{@{}p{\dimexpr 3.5cm-\tabcolsep}p{0.8\hsize}}}
{\end{longtable}}
}
\setglossarystyle{custom}
\newglossaryentry{ala}{name={Alanine},symbol={A},description={Ala}}
\newglossaryentry{arg}{name={Arginine},symbol={R},description={Arg}}
\begin{document}
\printunsrtglossary[title=Standard amino acid codes]
\end{document}
I realize that maybe "long" isn't the right glossary style to do this, but after trying for so long (no pun intended) I'm kind of giving up and hoping that someone has a better solution.
The finished product would look like something this. 
If I'm doing this completely wrong and somebody has a better way I am all ears! I am a biochemist, and trying to use latex to write my thesis since word is awful at just about anything that is more complicated than a cooking recipe, and I rather struggle through latex than use word.
