I have the following piece of code:
\newenvironment{mylisting}
{\begin{list}{}{\setlength{\leftmargin}{1em}}\item\scriptsize\bfseries}
{\end{list}}
\newenvironment{mytinylisting}
{\begin{list}{}{\setlength{\leftmargin}{1em}}\item\tiny\bfseries}
{\end{list}}
\begin{mylisting}
\begin{verbatim}
I want to display an accent in this text (i.e. más)
\end{verbatim}
\end{mylisting}
The word "más" should be displayed with accent but I got:
m'as
The verbatim environment is ignoring the accent.
BTW According to my config, the accent is displayed just using ' before the letter.
Anyone knows how to solve this issue?

allttpackage -- it provides environmentallttthat is supposed to behave exactly like verbatim, but it escapes all<backslash>and{...}. That way, you could surely write\'{a}to get the symbol, sinceallttwill expand the command\'. – tohecz Feb 12 '12 at 19:53