cgnieder / acro

acronyms for LaTeX
LaTeX Project Public License v1.3c
42 stars 9 forks source link

uppercase-short=true (default) does not work if first-style=short #147

Closed cgnieder closed 4 years ago

cgnieder commented 4 years ago

Original report by Frank Mittelbach (Bitbucket: FMittelbach, ).


In this case the first occurance comes out with lowercase, see \Ac*{etc} and \Ac{etc} below

\documentclass{article}\pagestyle{empty}

\usepackage{acro}
%\acsetup{uppercase-short}
\DeclareAcronym{dh}{short=d.h\acdot, long=das heißt, first-style=long}
\DeclareAcronym{etc}{short=etc\acdot, long=et cetera, first-style=short}

\begin{document}
0 \Ac*{dh},  1 \Acs{dh},  2 \acl{dh},  3 \Ac{dh}. 
0 \Ac*{etc}, 1 \Ac{etc}, 2 \acl{etc}, 3 \Ac{etc}.
\end{document}

cgnieder commented 4 years ago

Original comment by Clemens Niederberger (Bitbucket: cgnieder, GitHub: cgnieder).


fix issue #147

cgnieder commented 4 years ago

Original comment by Clemens Niederberger (Bitbucket: cgnieder, GitHub: cgnieder).


Thank you.