使用 XeTeX 编写 Æ,ø,å

使用 XeTeX 编写 Æ,ø,å

我想在 xelatex 中使用丹麦字母“æ,ø,å”。如果我使用 pdflatex,一切都会正常,但如果我使用 xelatex,则不会打印“æ,ø,å”。

我尝试了几种不同的字体。我也尝试过加载外部字体。我在 Windows 8 上使用 TeX live。这是一个最简单的例子:

% Setup
\documentclass{article}
\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}
% Document
\begin{document}
Hæst.
\end{document} 

答案1

您的 MWE 可以在 Windows 7 上使用 TeX Live 2012 在 TeXworks 中与 XeLaTeX 完美编译,而无需更改 TeX Live 或 TeXworks 自带的任何默认功能:

\documentclass{standalone}
\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}
\begin{document}
Hæst.
\end{document}

这是 XeTeX,版本 3.1415926-2.4-0.9998 (TeX Live 2012/W32TeX) (format=xelatex 2013.3.14) 2013 年 6 月 14 日 13:53

在此处输入图片描述

相关内容