diff --git a/latex/thesis.cls b/latex/thesis.cls index 6c1e8c3..28ddd1f 100644 --- a/latex/thesis.cls +++ b/latex/thesis.cls @@ -246,6 +246,24 @@ \renewcommand*{\glsgroupskip}{& & \tabularnewline}% \fi } + +% Define a new style 'supercol' based on 'super' for acronyms glossaries +\newglossarystyle{supercol}{% + \setglossarystyle{super}% inherit everything from the original + % override just the main-entry format: + \renewcommand*{\glossentry}[2]{% + \glsentryitem{##1}% + \glstarget{##1}{\glossentryname{##1}}\space % <-- added colon here + &: \glossentrydesc{##1}\glspostdescription\space ##2\tabularnewline + }% + % likewise for sub‐entries, if you want a colon there too: + \renewcommand*{\subglossentry}[3]{% + &: + \glssubentryitem{##2}% + \glstarget{##2}{\strut}\glossentryname{##2}\space % <-- and here + \glossentrydesc{##2}\glspostdescription\space ##3\tabularnewline + }% +} \makeatother \endinput \ No newline at end of file