MakeIndex, Nomenclature, Glossaries and AcronymsCreating list of abbreviations

Information and discussion about MakeIndex - the tool to generate subject indices for LaTeX documents.
Post Reply
tapanjain
Posts: 1
Joined: Tue Jan 03, 2017 11:34 am

Creating list of abbreviations

Post by tapanjain »

I am writing my Thesis on Latex. I want that all the abbreviations appearing in the text should automatically generate a list at appropriate place in thesis.
Can anyone help me in writing the same?

I have used following syntax, but for this we have to type the entire list manually. I want the list to be generated automatically once I describe the abbreviation in text.

Code: Select all

\usepackage{enumitem}

\newlist{abbrv}{itemize}{1}
\setlist[abbrv,1]{label=,labelwidth=1in,align=parleft,itemsep=0.1\baselineskip,leftmargin=!}

\chapter*{List of Abbreviations}
\chaptermark{List of Abbreviations}

\begin{abbrv}

\item[AHSS]			Advanced High Strength Steel

\end{abbrv}
Last edited by Stefan Kottwitz on Tue Jan 03, 2017 6:53 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
BlackForestrian

Creating list of abbreviations

Post by BlackForestrian »

Welcome to the LaTeX Community.

You might be interested in the glossaries package, for example. After definition of acronyms (i.e. abbreviations) you will be able to use them with the command \gls{foo} and print the full list of acronyms basically at any place you desire.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Creating list of abbreviations

Post by cgnieder »

Just to complete the list: there are also acronym and acro for creating lists of abbreviations. :)
site moderator & package author
Post Reply