I have a nomenclature with 4 entries : Symbol, Descrption, Dimension & Units. My basis is this :
Code: Select all
Code, edit and compile here:
\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 ?