URW GOTHIC 希臘文 支持

URW GOTHIC 希臘文 支持

URW Gothic 有希臘文支援嗎pdflatex?如果沒有,有沒有辦法使用 URW Gothic 或任何TeX Gyre family希臘語言的字體pdflatex

答案1

您可以用 NeoHellenic 替換 Greek 字體,NeoHellenic 也是無襯線字體。 Avant Garde/URW Gothic 沒有可用的希臘文版本。

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[greek,english]{babel}

\usepackage{avant} % uses URW Gothic
\renewcommand{\familydefault}{\sfdefault}

\DeclareFontFamilySubstitution{LGR}{\sfdefault}{neohellenic}

\begin{document}

This is English text in Avant Garde (actually URW Gothic)
and then there will be Greek text in NeoHellenic.

\begin{otherlanguage*}{greek}
Ἡ ταχεία καὶ εὐρεία ἔκθεση τοῦ κοινοῦ στὴ νέα αὐτὴ ἐπικοινωνιακὴ 
γλώσσα δὲν ἄφησε ἀνεπηρέαστο τὸν ρόλο τῆς τυπογραφίας σὲ σχέση 
μὲ τὴ λογοτεχνικὴ καὶ τὴν εἰκαστικὴ παραγωγὴ τῆς περιόδου.
\end{otherlanguage*}

\end{document}

在此輸入影像描述

答案2

URW 哥德式https://tug.org/FontCatalogue/urwgothic/或前衛,

\usepackage{avant}
\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif
\usepackage[T1]{fontenc}

它不支持希臘字母。我建議使用 Avant Gard (fontfamily pag) 這個折衷方案,

\usepackage[euler]{textgreek} %%%% for greek letters
\usepackage{eulervm}%%%%%%%%%% for math-mode with the same style of the greek letters 

使用引擎pdfLaTeX

在此輸入影像描述

\documentclass[a4paper,12pt]{article}

\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}
\renewcommand{\sffamily}{pag}
\renewcommand{\familydefault}{\sffamily}
\usepackage[euler]{textgreek}
\usepackage{eulervm}

\begin{document}
Avant gard with greek, \textbf{bold} \textit{letter} \textalpha, \textbeta \[\sum^{n}_{i=1}{n} f_i(x)\]
\end{document}

在此輸入影像描述

相關內容