4

Possible Duplicate:
How does one insert a backslash or a tilde into LaTeX?

I tried inserting symbols in latex. e.g.: \texttildelow

It didn't work. But symbols like \textasciitilde work.

I can't understand why some symbols work and others (the first one mentioned here) result in "undefined control sequence" error.

Shashank Sawant
  • 6,557
  • 11
  • 37
  • 49

1 Answers1

5

these symbols need the textcomp package:

\documentclass{article}
\usepackage{textcomp}%

\begin{document}
\texttildelow

\textasciitilde
\end{document}
Peter Grill
  • 223,288