After a couple of hours looking at Google for a solution, I arrived here for help. So, please!
I just want to insert a ¿ symbol.
Anyone know how to do that?
After a couple of hours looking at Google for a solution, I arrived here for help. So, please!
I just want to insert a ¿ symbol.
Anyone know how to do that?
The easiest way, in text mode (I don't think it is needed in math mode), is to write:
?`
PS: I would have written the above as a comment but I haven't been able to do that because the needed character is the one used for writing code...
> for \textexclamdown and < for \textquestiondown ... (personally i would go for utf-8 if i were writing an inflected language.)
– wasteofspace
Jun 09 '13 at 07:41
< and >). 3. I switched to utf-8 years ago, I was just remembering the way I was used to write such 'strange' characters without utf-8.
– karlkoeller
Jun 09 '13 at 07:56
Use inputenc and input the character directly from your keyboard:
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
¿
\end{document}

Of course, make sure your editor is also set to Unicode. If your editor encoding is set to ISO-8859-1 then load inputenc with the latin1 option:
\usepackage[latin1]{inputenc}
\textquestiondown, see also How do I look up a symbol? – Scott H. Jun 09 '13 at 05:11inputencis loaded with the apppropriate encoding. The answers to the other question don't apply here. – Gonzalo Medina Jun 09 '13 at 05:59