XeLaTeX、fontspec、Arial(TTF)、变音符号?

XeLaTeX、fontspec、Arial(TTF)、变音符号?

如何使用 Arial TT-Font 和 XeLaTeX 或 luaLaTeX 在 PDF 中获取德语变音符号?

下面的例子会生成一个方框来代替“ü”:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{fontspec}
\setmainfont{Arial}

\begin{document}
\section{Einführung}
Text.
\end{document}

答案1

您应该看看 XeTeX/LuaTeX 的输出(日志):

(/opt/texlive2011/texmf-dist/tex/xelatex/xunicode/xunicode.sty
*** you should *not* be loading the inputenc package
*** XeTeX expects the source to be in UTF8 encoding
*** some features of other encodings may conflict, resulting in poor output.

如果您遵循该建议,则代码的输出是正确的。

相关内容