您好,我正在使用 Sharelatex,并且在序言中使用这些命令以便能够用希腊语书写。
\usepackage{xltxtra}
\usepackage{xgreek}
\setmainfont[Mapping=tex-text]{GFSDidot.otf}
\setsansfont[Mapping=tex-text]{GFSDidot.otf}
我怎样才能更改字体?
编辑一:
\documentclass[12pt]{article}
\usepackage{xltxtra}
\usepackage{xgreek}
\setmainfont[Mapping=tex-text]{GFSDidot.otf}
\setsansfont[Mapping=tex-text]{GFSDidot.otf}
\begin{document}
Text Here!
Κείμενο εδώ!
\end{document}
答案1
LaTeX 字体目录提供 TeX 包支持的各种字体的示例和说明。
衬线- 首先寻找那些启动 GFS 的人,因为那是希腊字体协会。
桑斯- 再次,有一个 GFS 产品。(我怀疑您是否希望在衬线字体和无衬线字体中使用相同的字体。)
显然其他字体也支持希腊语。由于您使用的是 XeLaTeX 或 LuaLaTeX,因此您可以使用系统上安装的任何支持希腊语的字体。在 LaTeX 字体目录或加拿大运输安全局,寻找 opentype 或 truetype 格式可用的字体。
如果不进一步了解您的文档或您正在尝试做的事情,就很难说出任何有用的话。
TeX Live 包含以下希腊字体协会提供的 opentype 格式的内容:
- GFS 蒿属
- GFS 巴斯克维尔
- GFS 博多尼
- GFS 康普顿
- GFS 迪多特
- GFS 新希腊
- GFS 波尔森
- GFS 索洛莫斯
此外,Iwona、Kurier、AntykwaTorunska、cm-unicode、EBGaramond12、Libertine、GNU FreeFont、Stix、OldStandard、Philokalia、PlayFair 等也支持希腊文。您可以使用以下方式检查
otfinfo -s <fontfile>
TeX Live 中精选的 opentype 字体样本
\documentclass[12pt,twocolumn]{article}
\usepackage{xltxtra}
\usepackage{xgreek}
\begin{document}
\setmainfont[
Mapping=tex-text,
BoldFont=GFSArtemisiaBold.otf]{GFSArtemisia.otf}
\section{GFS Artemisia}
Text Here!
Κείμενο εδώ!
\setmainfont[
Mapping=tex-text,
BoldFont=LibreBaskerville-Bold.otf]{LibreBaskerville-Regular.otf}
\section{Libre/GFS Baskerville}
Text Here!
\setmainfont[
Mapping=tex-text]{GFSBaskerville.otf}
Κείμενο εδώ!
\setmainfont[
Mapping=tex-text,
BoldFont=GFSBodoniBold.otf]{GFSBodoni.otf}
\section{GFS Bodoni}
Text Here!
Κείμενο εδώ!
\section{GFS Complutum}
\setmainfont[
Mapping=tex-text]{GFSPolyglot.otf}
Κείμενο εδώ!
\setmainfont[
Mapping=tex-text,
BoldFont=GFSDidotBold.otf]{GFSDidot.otf}
\section{GFS Didot}
Text Here!
Κείμενο εδώ!
\setsansfont[
Mapping=tex-text,
BoldFont=GFSNeohellenicBold.otf]{GFSNeohellenic.otf}
\section{\textsf{GFS Neohellenic}}
{\sffamily
Text Here!
Κείμενο εδώ!}
\section{GFS Porson}
\setmainfont[
Mapping=tex-text]{GFSPorson.otf}
Κείμενο εδώ!
\section{\sffamily GFS Solomos}
\setmainfont[
Mapping=tex-text]{GFSSolomos.otf}
Κείμενο εδώ!
\setmainfont[
Mapping=tex-text,
BoldFont=STIX-Bold.otf]{STIX-Regular.otf}
\section{STIX}
Text Here!
Κείμενο εδώ!
\setsansfont[
Mapping=tex-text,
BoldFont=Iwona-Bold.otf]{Iwona-Regular.otf}
\section{\sffamily Iwona}
{\sffamily
Text Here!
Κείμενο εδώ!}
\setsansfont[
Mapping=tex-text,
BoldFont=Kurier-Bold.otf]{Kurier-Regular.otf}
\section{\sffamily Kurier}
{\sffamily
Text Here!
Κείμενο εδώ!}
\end{document}