I'm writing my thesis, and have created a nomenclature by the nomencl package. However, I would like the nomenclature to be in two columns, boxed individually. The column problem I have solved by
Code: Select all
\usepackage{multicol}
\renewcommand*\nompreamble{\begin{multicols}{2}}
\renewcommand*\nompostamble{\end{multicols}}
Code: Select all
\usepackage{framed}
\renewcommand*\nompreamble{\begin{framed}\begin{multicols}{2}}
\renewcommand*\nompostamble{\end{multicols}\end{framed}}
Thanks in advance!
\David