I am using \input{GlossaryEntries} to include a list of glossary entries to my document. As this list easily gets long and therefore bad to overview, I would like to list every \newglossaryentry{entry}{...} in the structure tab of TexMaker. This would allow easy navigation to the entries and easy ordering once a new entry is added.
Is it possible to list custom command entries, such as above, to the structures tab of TexMaker (or another editor)?
\documentclass{article}
\usepackage[acronym]{glossaries}
\makeglossaries
\newacronym{abc}{ABC}{a contrived acronym}
\newglossaryentry{computer1}
{
name=computer1,
description={computer1}
}
\newglossaryentry{computer2}
{
name=computer2,
description={computer2}
}
\newglossaryentry{computer3}
{
name=computer3,
description={computer3}
}
\begin{document}
\gls{abc}
\gls{computer3}
\end{document}
Now it would be awesome if "ABC", "computer1", "computer2", "computer3" was selectable in the structure tab of TexMaker.
\documentclassand ending with\end{document}. - 1) Do you mean something like the structure of chapter, section,... (on the left) for every glossaryentry? – Bobyandbob Sep 02 '17 at 09:55label{...}within the glossary entry to create a label entry for each glossary in the structure tree. But as it is in the preamble I dont think this works. – Steffen Sep 02 '17 at 12:27bib2glswhich is currently still under development but should be uploaded to CTAN soon. It was developed in response to Is there a program for managing glossary tags? The glossary entries are stored in a .bib file and can (hopefully) be managed in JabRef, making them easier to manage. – Nicola Talbot Sep 02 '17 at 12:48