This is my LaTex script:

\documentclass[a4paper]{article}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\setmainfont[Mapping=tex-text]{Jenson Classico}
\begin{document}
ąęśćłó
\end{document}

I compile this using xelatex through eclipse plugin.

As Jenson Classico has no polish characters I have edited this font to add them. In Microsoft Office it works fine (I am able to use polish characters). Unfortunately in pdf generated from above tex-file it doesn't. If I use any other font (e.g. Arial) it works like a dream.

Any suggesions? I really don't have any more ideas...

link|improve this question

50% accept rate
A better place for this question would be tex.stackexchange. – Konrad Rudolph Sep 23 '10 at 14:12
feedback

1 Answer

Try using the polyglossia package.

\documentclass[a4paper]{article}
\usepackage{fontspec}
\usepackage{polyglossia}
\usepackage{xunicode}
\usepackage{xltxtra}
\setdefaultlanguage{polish}
\setmainfont[Mapping=tex-text]{Jenson Classico}
\begin{document}
ąęśćłó
\end{document}
link|improve this answer
Still nothing :( – Filip Sep 24 '10 at 7:33
Is that font Jenson Classico a unicode font ? Trying using other Polish unicode font. If nothing works, post the question in tex.stackexchange.com there are some good peoples there. – Ujjwol Sep 24 '10 at 9:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.