Math & Science ⇒ nomencl | Multiple Columns for List of Abbreviations
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
nomencl | Multiple Columns for List of Abbreviations
Rounding up my thesis now. I would like to make a list of abbreviations at the beginning of my thesis. I found the nomencl package that will probably do the trick. But I want the \printnomenclature to have a different layout: 4 columns like in this example and I also would like less space in between the abbreviations. I read the documentation of nomencl but I could not get it working. Anyone how can point me in the right direction?
\BoudewijnD
- Attachments
-
- Temp.zip
- MWE
- (42.61 KiB) Downloaded 476 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
nomencl | Multiple Columns for List of Abbreviations
Code: Select all
\renewcommand*{\nompreamble}{\begin{multicols}{2}}
\renewcommand*{\nompostamble}{\end{multicols}}
\setlength{\columnsep}{3em}
P.S.: Very good minimal example.
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
nomencl | Multiple Columns for List of Abbreviations
This did the trick. I added this code to also change the space between the list.
Code: Select all
\renewcommand*{\nompreamble}{\begin{multicols}{2}}
\renewcommand*{\nompostamble}{\end{multicols}}
\setlength{\columnsep}{3em}
\setlength{\nomitemsep}{0.01cm}
Can I just make a file for all the abbreviations and include this to the main file??
\BoudewijnD
PS: I found out you get better and faster help when you include a new a good MWE.