I want to enter a GREEK CAPITAL LETTER ALPHA (U+0391) into my LaTeX document. I do not want a LATIN CAPITAL A. How do I do this?
Asked
Active
Viewed 1.5k times
1 Answers
33
\symbol{"0391} % hex
\symbol{913} % dec
\symbol{'1621} % oct
You need a true Unicode TeX engine (XeLaTeX or LuaLaTeX) to get proper glyphs.
Full example code:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre Termes}
\begin{document}
Γ
\symbol{"0393} % hex
\symbol{915} % dec
\symbol{'1623} % oct
\end{document}
Leo Liu
- 77,365
ödirectly than\"o, or"owithpolyglossiaetc. – Leo Liu Oct 24 '11 at 04:50