I am trying to make a list of acronyms for my doc. I am just struggling to get the formatting to look nice.
What I want is the abbrv in bold and the full description to be left aligned in another column.
I used the standard new acronym macro to define acronyms
Code: Select all
%\newacronym{<label>}{<abbrv>}{<full>}
Code: Select all
\glossaries
Code: Select all
style=super
What is happening is my glossary is being split over two pages when there is ample room on one page.
I think
Code: Select all
\baselineskip=22pt plus1pt
My output is attached and everything is up to date software wise.
Thanks a lot!!
My MWE is below. Apologise for the long list of acronyms but this is to show everyone the issue.
Code: Select all
documentclass[a4paper,12pt]{report}
\usepackage[nopostdot, style=super, nonumberlist, toc]{glossaries}
\makeglossaries
\begin{document}
\baselineskip=22pt plus1pt
\printglossary[title={List of Abbreviations}]
\newpage
\gls{adamts} \gls{af} \gls{bp} \gls{dmem} \gls{ecm} \gls{fbs} \gls{gag} \gls{ivd} \gls{ivdd} \gls{il}
\gls{lp} \gls{mmp} \gls{np} \gls{ngml} \gls{lp} \gls{mmp} \gls{np} \gls{ngml} \gls{page} \gls{page}
\gls{pcr} \gls{sds} \gls{timp} \gls{tnf} \gls{ugml}
\newacronym{ngml}{$\eta$g/mL}{nanogram per millilitre}
\newacronym{ugml}{$\mu$g/mL}{microgram per millilitre}
\newacronym{adamts}{ADAMTS}{A Disintegrin And Metalloproteinase with Thrombospondin Motifs}
\newacronym{af}{AF}{annulus fibrosus}
\newacronym{bp}{BP}{back pain}
\newacronym{dmem}{DMEM}{Dulbecco's Modified Eagle's Medium}
\newacronym{ecm}{ECM}{extracellular matrix}
\newacronym{fbs}{FBS}{feotal bovine serum}
\newacronym{gag}{GAG}{glycosaminoglycans}
\newacronym{ivd}{IVD}{intervertebral disc}
\newacronym{ivdd}{IVDD}{intervertebral disc degeneration}
\newacronym{il}{IL}{interleukin}
\newacronym{lp}{LP}{leg pain}
\newacronym{mmp}{MMP}{matrix metalloproteinases}
\newacronym{np}{NP}{nucleus pulposus}
\newacronym{page}{PAGE}{polyacrylamide gel electrophoresis}
\newacronym{pcr}{RT-qPCR}{real time quantitative polymerase chain reaction}
\newacronym{sds}{SDS}{sodium dodecyl sulfate}
\newacronym{timp}{TIMP}{tissue inhibitors of metalloproteinases}
\newacronym{tnf}{TNF-$\alpha$}{Tumor necrosis factor-alpha}
\end{document}