How do I output two (or more) consecutive commas inside \texttt{} ?
,, displays a black square, \,\, displays nothing, \verb{,,} display three consecutive commas (what the heck!), \verb{\,\,} displays a single comma.
EDIT:
Apparently, the issue is with the ae package.
Here is the minimal example
\documentclass[a4paper, 11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{ae}
\begin{document}
\texttt{,,}
\end{document}

\texttt{}it pose problems. – Norswap Nov 21 '12 at 00:45\,is a thin space. The syntax for\verbis not the normal argument syntax, but must begin and end with the same character, eg\verb!,,!.\texttt{,,}works for me as is though... – cyberSingularity Nov 21 '12 at 00:46{,},works nicely. If you want to make an answer of it, I'll accept it. – Norswap Nov 21 '12 at 01:02aepackage in general. Letters consisting of a character and an accent (e.g.ü) will be displayed correctly in the pdf, but you won't be able to search the pdf for them or copy them properly because they're constructed out ofuand¨. Instead, use\usepackage[T1]{fontenc}in combination with either\usepackage{lmodern}or thecm-superfonts installed (the latter don't need to be loaded explicitly). I personally recommend the former, for a comparison see http://tex.stackexchange.com/questions/1390/latin-modern-vs-cm-super – doncherry Nov 21 '12 at 01:30