Dear Genius,
How to display the unicode character output in latex document using pdflatex option.
Regards
Pon ilavarasu
Text Formatting ⇒ Displaying unicode in latex file
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Displaying unicode in latex file
Current LaTeX already supports it (if you use a proper font encoding, proper font and for some characters some additional packages): With older LaTeX distributions you need
Things would become more easy using
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{lmodern}
\begin{document}
ÄÖÜéâ€
\end{document}
\usepackage[utf8]{inputenc}
. But this does not provide all unicode symbols. For some you have to load additional symbol fonts and declare the character yourself using \DeclareUnicodeCharacter
or package newunicodechar.Things would become more easy using
xelatex
or lualatex
and a font that provides all needed glyphs.Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. 
