MakeIndex, Nomenclature, Glossaries and AcronymsCreate different types of nomanclature on the same page

Information and discussion about MakeIndex - the tool to generate subject indices for LaTeX documents.
Post Reply
Colin93
Posts: 57
Joined: Mon Apr 04, 2016 2:55 pm

Create different types of nomanclature on the same page

Post by Colin93 »

Hi everyone

I have a nomenclature with 4 entries : Symbol, Descrption, Dimension & Units. My basis is this :

Code: Select all

\documentclass{article}

\usepackage{nomencl,etoolbox,ragged2e,siunitx}

\newcommand{\DimensUnits}[2]{\hfill\makebox[8em]{#1\hfill}%
\makebox[4em]{#2\hfill}\ignorespaces}
\newcommand{\insertnomheaders}{\item[\bfseries Symbol]%
\textbf{Description}\DimensUnits{\textbf{Dimensions}}{\textbf{Units}}}

\renewcommand\nomgroup[1]{%
  \item[\large\bfseries
  \ifstrequal{#1}{A}{Acronyms}{%
  \ifstrequal{#1}{R}{Roman Symbols}{%
  }

\renewcommand*{\nompreamble}{\markboth{\nomname}{\nomname}}

\newcommand{\nomdescr}[1]{\parbox[t]{4cm}{\RaggedRight #1}}
\newcommand{\nomwithdim}[5]{\nomenclature[#1]{#2}%
{\nomdescr{#3}\DimensUnits{#4}{#5}}}

\makenomenclature

\begin{document}
\mbox{}
\nomwithdim{R}{\(a,b,c\)}{half axes of ellipsoid}{L}{\si{m}}

\printnomenclature[6em]
\end{document}



However, I want to create on the same page a nomenclature with only with "Symbol" and "Descrption" I want to create another group but having trouble. Could you help me ?
Last edited by cgnieder on Mon Apr 18, 2016 2:43 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グラフィックス
Post Reply