6

Possible Duplicate:
Writing { and } to a file with LaTeX

I want to output a curly brace, which will not be interpreted as a group delimiter. My attempt does not work:

\def\aa{\string}}

I want that calling \aa will output }.

EDIT As egreg mentionned, my aim is to have a brace that can be later on written into a file. The proposed solution \{ outputs correctly a brace, but attempting to write it in a file fails :

\newwrite\tempfile
\immediate\openout\tempfile="nico.txt"
\def\aa{\{}
\immediate\write\tempfile{blabla blabla \a blabla}
Loic Rosnay
  • 8,167

1 Answers1

7

Just use \}

This is probably a duplicate question.

Edit: I should also say; putting a backslash \ before nearly any special character in TeX will cause LaTeX to treat it as non-special (and vice versa).

You can either use \} directly, or just put it inside the macro definition:

\def\aa{\}}
codebeard
  • 1,285
  • The I should say part is wrong. Try \texttt{\{}. Compare that to \verb|{| – Clément Nov 18 '16 at 04:16
  • @Clément \verb is a special command, naturally the rules do not apply to it. – codebeard Nov 18 '16 at 04:26
  • 2
    I don't think you understand what I meant. I meant that, unless you use use T1 with inputenc, you won't get a monospace { by using \{ inside of \texttt. – Clément Nov 18 '16 at 06:12
  • I see... Well feel free to update the answer to your liking, it's not as though it's relevant to the asker's updated question and it's a dupe anyhow. – codebeard Nov 18 '16 at 07:32