Consider following MWE:
\documentclass{report}
\begin{document}
\begin{description}
\item[Apple] apple
\item[\textbf{Apple}] apple
\item[apple] apple
\end{description}
\end{document}
which gives
When using the classicthesis package with following MWE :
\documentclass{report}
\usepackage{classicthesis} %<--
\begin{document}
\begin{description}
\item[Apple] apple
\item[\textbf{Apple}] apple
\item[apple] apple
\end{description}
\end{document}
one observes that the capital letter in 'Apple' has been removed and a sc is applied:
This seems to be the expected behaviour, as mentioned in this question.
How can I achieve a normal bf text starting with a capital letter?
- Boldface: using
\textbf{}(see second figure) - Capital letter: ???




\item[\textbf{\uppercase{a}pple}] appleshould do it. – Marijn Aug 22 '21 at 22:19