I am using report document class, and want to use small caps in titles of chapters, sections... if I write \section{\textsc{Lorem Ipsum}} it will be lowercase, not small caps.
\documentclass[12pt, a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[slovene]{babel}
\usepackage[margin=2.5cm, left=3cm]{geometry}
\usepackage{etoolbox}
\begin{document}
\chapter{\textsc{Lorem Ipsum}}
Dolor sit amet
\end{document}
documentclassand the loaded packages. – riddleculous Mar 11 '17 at 09:57\chapter{{\sc Lorem Ipsum}}works though looks ugly because it overrides the bold face. The problem here is that the standard font doesn't support small caps in bold and is thus replaced by the standard font. If you want to fix this, use another font. Maye this helps. – riddleculous Mar 11 '17 at 10:15\usepackage{sectsty}and\allsectionsfont{\scshape}. – egreg Mar 11 '17 at 10:31