[Tex/LaTex] Increasing space between columns in a list of acronyms

formattingtables

For my List of Acronyms page, I'd like the explanation of the acronym (i.e. "List Abbreviations Here" in the example below) to be a bit more on the right.

List of Acronyms

I'm using a thesis template, which obviously has class file (.cls) file attached to it and I don't want to fiddle too much with that although I guess that is how I will effect such a change. I dont want suggestions to install the nomenclature or glossary packages as I'm a bit too nervous to try out the packages, because every time I attempt to install a new package, everything else seems to be adversely affected.

Code from the .cls file:

 \newcommand\listsymbolname{List of Acronyms}
 \usepackage{longtable}
 \newcommand\listofsymbols[2]{
 \btypeout{\listsymbolname}
 \addtotoc{\listsymbolname}
\chapter*{\listsymbolname
  \@mkboth{
      \MakeUppercase\listsymbolname}{\MakeUppercase\listsymbolname}}
\begin{longtable}[l]{#1}#2\end{longtable}\par
\cleardoublepage

Code from .tex file:

\setstretch{1.5}  % Set the line spacing to 1.5, this makes the following tables easier to read
\clearpage  % Start a new page
\lhead{\emph{List of Acronyms}}  % Set the left side page header to "Abbreviations"
\listofsymbols{ll}  % Include a list of Abbreviations (a table of two columns)
{
\textbf{LAH} & \textbf{L}ist \textbf{A}bbreviations \textbf{H}ere \\
}

Best Answer

Try changing the first argument of \listofsymbols in the .tex file to

\listofsymbols{l @{\hspace{1cm}} l}
{
 \textbf{LAH} & \textbf{L}ist \textbf{A}bbreviations \textbf{H}ere \\
}

You can modify the length 1cm to whatever suits your needs.

Related Question