please smallcaps bold tex coding provided?
Asked
Active
Viewed 112 times
0
1 Answers
1
With the fontenc you can get bold small caps, though not for all fonts.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\begin{document}
\textbf{\textsc{\lipsum[1]}}
\end{document}
bmv
- 3,588

\textbf{\textsc{Bold Small Caps}}will work, but if there is no such font, latex can not create it from nothing so you will get a warning that a font is being substituted. – David Carlisle Jan 18 '18 at 12:22