傅立叶字体的问题

傅立叶字体的问题

我在文档中使用 Fourier 字体来表示数学,但定义、定理等不是粗体,当我写英文名称时,它们都是粗体(我的文本是希腊文)。另外,我想知道我必须做什么才能将我的数学字体更改为我的文本字体,谢谢。这是我的代码:

 \usepackage{amsthm}
\usepackage{latexsym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage[greek]{babel}
\usepackage[utf8]{inputenc}
\usepackage[active]{srcltx}
\usepackage{fourier}
\newtheorem{theorem}{Θεώρημα}[chapter]
\newtheorem{lemma}[theorem]{Λήμμα}
\newtheorem{proposition}[theorem]{Πρόταση}
\newtheorem{corollary}[theorem]{Πόρισμα}
\newtheorem{definition}[theorem]{Ορισμός}
\newtheorem{remark}[theorem]{Παρατήρηση}
\newtheorem{axiom}[theorem]{Αξίωμα}
\newtheorem{example}[theorem]{Παράδειγμα}
\newtheorem{symb}[theorem]{Συμβολισμός}
\newtheorem{note}[theorem]{Σημείωση}





   \begin{document}
\begin{theorem}
\vert x+y\vert^2=...
\end{theorem}
\textlatin{Banach}
\end{document}

答案1

在日志文件中你发现

LaTeX Font Warning: Font shape `LGR/futs/m/n' undefined
(Font)              using `LGR/cmr/m/n' instead on input line 26.

LaTeX Font Warning: Font shape `LGR/futs/m/it' undefined
(Font)              using `LGR/futs/m/n' instead on input line 27.

LaTeX Font Warning: Font shape `LGR/futs/bx/n' undefined
(Font)              using `LGR/futs/m/n' instead on input line 28.

LaTeX Font Warning: Font shape `LGR/futs/m/sl' undefined
(Font)              using `LGR/futs/m/n' instead on input line 31.

解释是:fourier不支持希腊语(准确地说,不支持希腊语的 LGR 编码)。因此,使用后备字体,并且无法选择系列或形状。

恐怕 TeX Live 中没有支持希腊语的基于 Utopia 的字体。

相关内容