Amostra selecionada de fontes opentype do TeX Live

Amostra selecionada de fontes opentype do TeX Live

Olá, estou usando o Sharelatex e utilizo esses comandos no preâmbulo para poder escrever em grego.

\usepackage{xltxtra}
\usepackage{xgreek}
\setmainfont[Mapping=tex-text]{GFSDidot.otf}
\setsansfont[Mapping=tex-text]{GFSDidot.otf}

Como posso alterar a fonte?

Editar eu:

\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}

Responder1

O Catálogo de Fontes LaTeXfornece exemplos e instruções para diversas fontes suportadas pelos pacotes TeX.

Serifas- procure aqueles que estão iniciando o GFS para começar, já que essa é a Greek Font Society.

Sem- novamente, há uma oferta GFS. (Duvido que você queira a mesma fonte para serif e sans.)

Obviamente, outras fontes também suportam o grego. Como você está usando XeLaTeX ou LuaLaTeX, você pode usar qualquer fonte instalada em seu sistema que suporte grego. No catálogo de fontes LaTeX ou emCTAN, procure fontes disponíveis no formato opentype ou truetype.

Sem saber mais sobre o seu documento ou o que você está tentando fazer, é difícil dizer algo muito útil.

TeX Live inclui as seguintes ofertas da Greek Font Society em formato opentype:

  • GFS Artemísia
  • GFS Baskerville
  • GFS Bodoni
  • Complutum GFS
  • GFS Didot
  • GFS Neo-helênico
  • GFS Porson
  • GFS Solomos

Além disso, Iwona, Kurier, AntykwaTorunska, cm-unicode, EBGaramond12, Libertine, GNU FreeFont, Stix, OldStandard, Philokalia, PlayFair etc. suportam a escrita grega. Você pode verificar isso usando

otfinfo -s <fontfile>

Amostra selecionada de fontes opentype do TeX Live

Amostra de grego

\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}

informação relacionada