For a phrase that is not a proper name, I want to have the first letter of each word uncapitalized except when it starts off a sentence, in which case the very first letter of the phrase is capitalized. But that its not working with acro. This code is the one below.
\documentclass{article}
\usepackage{acro}
% class `abbrev': abbreviations:
\DeclareAcronym{CNO}{
short = CNO ,
long = Clasificador Nacional de Ocupaciones ,
class = acro
}
% class `nomencl': nomenclature
\DeclareAcronym{e0}{
short = \ensuremath{e_0} ,
long = Esperanza de vida al nacer ,
sort = e_0 ,
class = nomencl
}
\begin{document}
\section*{List of acronyms}
\addcontentsline{lof}{section}{List of acronyms}
\ac{evn} Si yo vengo escribien y el \ac{CNO} aperece primero y luego \ac{CNO}, \ac{ONU} and \ac{evn} are abbreviations whereas \ac{e0}.
\printacronyms
\printacronyms[include-classes=abbrev,name=Abbreviations]
\printacronyms[include-classes=nomencl,name=Nomenclature]
\printacronyms[include-classes=acro,name=Acronimos]
\end{document}

\documentclass{article} \usepackage{acro}
% class `nomencl': nomenclature \DeclareAcronym{e0}{ short = \ensuremath{e_0} , long = Esperanza de vida al nacer , sort = e_0 , }
\begin{document}
the problem that i have its that the e0 acronymus appears with capital E in this sentence, when i wante with e lower case. some text \ac{e0}.
\printacronyms
\end{document}
– Nicolás Sacco Dec 21 '15 at 22:56class = nomenclandclass = acro– LaRiFaRi Dec 21 '15 at 23:00