Estoy usando pdflatex
para escribir las reglas de un juego simple. El juego está en búlgaro. Aquí está la parte relevante del preámbulo:
\documentclass[10pt,a4paper,twoside,openany]{article}
\usepackage[utf8]{inputenc}
\usepackage[bulgarian]{babel}
\usepackage[pdftex]{graphicx}
Funciona bien. Ahora me gustaría utilizar una fuente más artística.Estees lo mejor que he podido buscar en google y no coincide con lo que estoy buscando.
Necesito una lista de fuentes admitidas, además de ejemplos breves de cada fuente, para poder elegir una fuente y aplicarla a mi documento. También una breve instrucción sobre cómo aplicarlo.
Respuesta1
Hay una lista de T2A
fuentes disponibles con glifos cirílicos.aquí. Puedes probarlos y elegir el que más te guste. He aquí un ejemplo.
\documentclass{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{droid} % <- one of the fonts with T2A encoding
\begin{document}
\noindent А а Б б В в Г г Д д Е е Ж ж З з И и Й й\\
К к Л л М м Н н О о П п Р р С с Т т У у\\
Ф ф Х х Ц ц Ч ч Ш ш Щ щ Ъ ъ Ь ь Ю ю Я я
\end{document}
Respuesta2
Aquí hay una lista complementaria de fuentes que se pueden usar con pdfLaTeX/XeLaTeX/LuaLaTeX, que no se mencionan en el enlace anterior:
Fuentes sans serif: Cabin
, Linux Biolinum
, MyriadPro
.
fuentes serif: Heuristica
y Erewhon
(basado en Adobe Utopia), ebgaramond
, Xcharter
(basado en Bitstream Charter), Linux Libertine
, MinionPro
.
Todas estas fuentes están disponibles en formato Opentype (Minion Pro y Myriad Pro vienen con Adobe Reader) y pueden usarse muy fácilmente para texto con Xe/LuaLaTeX y fontspec
.
Entre estas fuentes, solo Heuristica
, Erewhon
, MinionPro
nand MyriadPro
se pueden usar con pdfLaTeX para glifos cirílicos.
Editar: El enlace mencionado anteriormente ahora también apunta a Heuristica
y Erewhon
.
Una demostración con Heuristica y Erewhon (no pude hacer funcionar mi versión anterior de MinionPro, aunque existen los archivos.fd relevantes):
\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}