¿Dónde puedo encontrar una lista de fuentes compatibles en búlgaro, junto con ejemplos?

¿Dónde puedo encontrar una lista de fuentes compatibles en búlgaro, junto con ejemplos?

Estoy usando pdflatexpara 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 T2Afuentes 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}

ingrese la descripción de la imagen aquí

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: Heuristicay 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, MinionPronand MyriadProse pueden usar con pdfLaTeX para glifos cirílicos.

Editar: El enlace mencionado anteriormente ahora también apunta a Heuristicay 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} 

ingrese la descripción de la imagen aquí

información relacionada