I created a list of acronyms using the gossaries package. After updating my MikTeX to the very last version everything works fine. The list is showing the abbreviation on the left and the corresponding explanation on the right. Now, I just want to have the first letter of the explanation capitalized but cannot figure out how to achieve this. This question was already answerred here http://www.latex-community.org/forum/vi ... f=5&t=9966 but the solution did not work for me.
My code Looks like this
Code: Select all
\documentclass[10pt,twoside,headinclude,
headings=small,fleqn,leqno,english,
final,bibliography=totocnumbered
]{scrartcl}
\usepackage{etex}
\usepackage[english]{babel}
\usepackage{babelbib}
\usepackage{graphicx}
\usepackage[left=2.5cm,right=2.5cm,top=3.17cm,bottom=2.22cm]{geometry}
\usepackage{indent}
\usepackage{textcomp}
\usepackage{prelim2e}
\usepackage[mediumspace]{SIunits}
\usepackage[all]{xy}
\usepackage{pgf}
\usepackage{circuitikz}
\usepackage{booktabs}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{paralist}
\usepackage{multirow}
\usepackage{calc}
\usepackage{rotating}
\usepackage{colortbl}
\usepackage[bookmarks=true]{hyperref}
\usepackage[acronym,nonumberlist,toc,nopostdot]{glossaries}
\setglossarystyle{long}
\setacronymstyle{long-short}
\makeglossaries
\newacronym{TW}{TW}{this word}
\begin{document}
\tableofcontents
\printglossary[type=\acronymtype]
Within the text \gls{TW} should appear in small letters. In the list of acronyms, the Long form of \acrshort{TW} should appear with a capital first letter.
\end{document}