I have this code, but the nomenclature is not printed, why? Im working on Mac with TeXStudio. Thank you in advance.
% arara: nomencl
% arara: pdflatex
\documentclass[12pt,a4paper]{report}
\usepackage[prefix]{nomencl}
\newcommand{\nomunit}[1]{\renewcommand{\nomentryend}{\hspace*{\fill}#1}}
\makenomenclature
\begin{document}
This is a minimal working example.
\printnomenclature
And this is the equation that changed the world's history:
\begin{equation} \label{relat}
E=mc^2
\end{equation}
\nomenclature{$E$}{Energy\nomunit{J}}
\nomenclature{$m$}{Mass\nomunit{kg}}
\nomenclature{$c$}{Speed of light\nomunit{m/s}}
\end{document}
makeindex-- or doesararaprovide a rule fornomenclat all? If I run it by hand I've got a nomenclature – Dec 21 '15 at 18:04araradoes have anomenclrule but it needs another% arara: pdflatex(before thenomenclrule). – Nicola Talbot Dec 21 '15 at 18:48ararabefore (don't tell Paulo ;-)) – Dec 21 '15 at 18:53nomenclrule doesn't set-sby default, so it would need to be% arara: nomencl: {style: 'nomencl.ist'}(I think that could do with fixing in the rule.) – Nicola Talbot Dec 21 '15 at 19:00