我用來pdflatex
寫一個簡單遊戲的規則。遊戲語言為保加利亞語。以下是前言的相關部分:
\documentclass[10pt,a4paper,twoside,openany]{article}
\usepackage[utf8]{inputenc}
\usepackage[bulgarian]{babel}
\usepackage[pdftex]{graphicx}
效果很好。現在我想使用更具藝術感的字體。這是我能在谷歌上搜尋到的最好的,但它與我要尋找的不符。
我需要支援的字體列表,以及每種字體的簡短範例,以便我可以選擇一種字體並將其應用到我的文件中。還有關於如何應用它的簡短說明。
答案1
有一個T2A
帶有西里爾字母字形的可用字體列表這裡。您可以測試它們並選擇您最喜歡的一個。這是一個例子。
\documentclass{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{droid} % <- one of the fonts with T2A encoding
\begin{document}
\noindent А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я
\end{document}
答案2
以下是可與 pdfLaTeX/XeLaTeX/LuaLaTeX 一起使用的字體的補充列表,上面的連結中未提及:
無襯線字體: Cabin
, Linux Biolinum
, MyriadPro
。
襯線字體:Heuristica
和Erewhon
(基於 Adobe Utopia), ebgaramond
, Xcharter
(基於 Bitstream Charter), Linux Libertine
, MinionPro
.
所有這些字體均以 Opentype 格式提供(Minion Pro 和 Myriad Pro 附帶 Adobe Reader),並且可以非常輕鬆地用於 Xe/LuaLaTeX 和fontspec
.
在這些字體中,只有Heuristica
, Erewhon
, MinionPro
nandMyriadPro
可以與 pdfLaTeX 一起用於西里爾文字形。
編輯:上述連結現在也指向Heuristica
和Erewhon
。
使用 Heuristica 和 Erewhon 的演示(我無法使舊版本的 MinionPro 工作,儘管相關的 .fd 文件存在):
\documentclass{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
%\usepackage{heuristica} % <- one of the fonts with T2A encoding
\parindent = 0pt
\begin{document}
\fontfamily{Heuristica-TOsF}\fontencoding{T1}\selectfont
\textbf{Heuristica: }
0 1 2 3 4 5 6 7 8 9\\
\fontencoding{T2A}\selectfont
\noindent А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я\\[3ex]
{\itshape А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я\\}
\vskip 1cm
\fontfamily{erewhon-TOsF}\fontencoding{T1}\selectfont
\textbf{Erewhon: }0 1 2 3 4 5 6 7 8 9\\
\fontencoding{T2A}\selectfont
\noindent А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я\\[3ex]
{\itshape А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я\\}
\end{document}