0

I am writing \textsc{<someother\_thing> } and want same output in small caps keeping symbols intact. \_ is used to output only _. The output I get is ¡SOMEOTHER_THING¿ and there is no error.

I want output as <SOMEOTHER_THING>.

Stefan Pinnow
  • 29,535

1 Answers1

2
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\textsc{<someother\_thing> }
\end{document}

T1 output

cfr
  • 198,882