Hi,
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
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
- Attachments
-
- Temp.zip
- MWE
- (42.61 KiB) Downloaded 464 times
Last edited by localghost on Thu Aug 11, 2011 6:38 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
nomencl | Multiple Columns for List of Abbreviations
The nomencl manual introduces two macros that you can use to influence the appearance of your list. Together with the multicol package you can try something like these lines in the preamble of your document.
It is suggestive to add some space between the columns like done in the last line of the above code snippet. For further customization refer to Section 4 of the package manual. In this case you could modify the length \nomlabelwidth or simply give an optional parameter to the \printnomenclature command to decrease the separating space between an item and its description.
P.S.: Very good minimal example.
Thorsten
Code: Select all
\renewcommand*{\nompreamble}{\begin{multicols}{2}}
\renewcommand*{\nompostamble}{\end{multicols}}
\setlength{\columnsep}{3em}
P.S.: Very good minimal example.
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
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
Thanx Thorsten,
This did the trick. I added this code to also change the space between the list.
One short question.
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.
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.