I am making a document using a Tibetan unicode font with XeLaTeX and fontspec. However, the text is not appearing properly. The super– and subscripted letters appear next to the base letter instead of above or below them, and the tsheg has a strange appearance. I have a suspicion it is due to using the wrong font but I don't know which font to change to. Thank you.
\documentclass[10pt]{article}
\usepackage{fontspec}
\begin{document}
\setmainfont{Arial Unicode MS}
བོད་ཡིག་འདི་ལ་དག་པར་ཡོང་གི་མ་རེད།
\end{document}
UPDATE: Below is an excerpt from the transcript from compiling this code:
\documentclass{article}
\usepackage{fontspec}
\begin{document}
\setmainfont{Kailasa}
བོད་ཡིག་འདི་ལ་དག་པར་ཡོང་གི་མ་རེད།
\end{document}
"Kailasa" is a Tibetan font installed on my system; the result is the same no matter which Tibetan font I use. Here is the end of the transcript:
.................................................
. fontspec info: "no-scripts"
.
. Font Kailasa does not contain any OpenType `Script' information.
.................................................
\g__fontspec_family_Kailasa_int=\count121
.................................................
. fontspec info: "no-font-shape"
.
. Could not resolve font Kailasa/BI (it probably doesn't exist).
.................................................
.................................................
. fontspec info: "no-font-shape"
.
. Could not resolve font Kailasa/B (it probably doesn't exist).
.................................................
.................................................
. fontspec info: "no-font-shape"
.
. Could not resolve font Kailasa/I (it probably doesn't exist).
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Kailasa(0)' created for font 'Kailasa' with options
. [Ligatures=TeX].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"Kailasa/OT:mapping=tex-text;"
.
. * 'small caps' with NFSS spec.:
.
. and font adjustment code:
.
.................................................
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no ? in font Kailasa Regular/OT:mapping=tex-text;!
Missing character: There is no 1 in font Kailasa Regular/OT:mapping=tex-text;!
[1
]
(./tibetan test.aux) )
Here is how much of TeX's memory you used:
13186 strings out of 493734
278852 string characters out of 6146348
296946 words of memory out of 5000000
16499 multiletter control sequences out of 15000+600000
3704 words of font info for 22 fonts, out of 8000000 for 9000
1328 hyphenation exceptions out of 8191
46i,4n,59p,10365b,183s stack positions out of 5000i,500n,10000p,200000b,80000s
Output written on tibetan test.pdf (1 page).
For some reason it is not able to recognize the characters entered in the code of the document or it cannot find the font, although I am certain it is installed on my system.
