jemnotesversion 2 / featuring this entry or see all/search

Feb 25
From here: in latex, you can type \verb|{| and get a real brace in a typewriter font. But if you type {\tt \{ }, you get a sans-serif replacement. In code:
\verb|{|    % nice, real brace.
{\tt \{}    % hideously replaced by sans-serif glyph.
two ways to fix this:
\usepackage[T1]{fontenc}
% or
{\tt {\char '173} }