When using the acronym package I would like to capitalize the first letter in the acronym description (e.g., Direct current). But when used in text I would like to have the word in lower letters.
\documentclass{article}
\usepackage{acronym}
\begin{document}
\begin{acronym}
\acro{DC}{direct current}
\end{acronym}
Batteries run on \ac{DC}.
\end{document}
Output:
DC direct current
Batteries run on direct current (DC).
glossariesan option for you? – Marco Daniel May 31 '12 at 9:09\ac{DC}:) – cgnieder Sep 10 '12 at 16:32