up vote 0 down vote favorite
share [g+] share [fb]

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 \{ }   % hideous fake brace.

LaTeX Font Warning: Font shape `OMS/lmtt/m/n' undefined
(Font)              using `OMS/cmsy/m/n' instead
(Font)              for symbol `textbraceleft' on input line 3.

How do you get the real, monospaced brace in a tt environment? (I can't just nest verb, because I need to change its color as well.)

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Use the T1 font encoding with

\usepackage[T1]{fontenc}
link|improve this answer
Nice. I like your answer better. +1. – Alok Feb 26 '10 at 5:33
@Alok, this might be cleaner, but your answer is a helpful alternative too, esp. if there are any incompatibilities with the fontenc package etc. I'd recommend returning it... – Peter Feb 26 '10 at 6:02
feedback

You can try {\tt {\char '173}}:

\newcommand{\lcb}{{\tt {\char '173}}}

See this. Seems to work for me.

link|improve this answer
perfect, thank you so much. – Peter Feb 26 '10 at 5:29
@Peter: am deleting my answer since the other answer is definitely better. – Alok Feb 26 '10 at 5:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.