定理大胆

定理大胆

我想知道为什么我的文本中的“定理”、“引理”等没有加粗。代码是

\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}

\usepackage[english,greek]{babel}
\usepackage[square, numbers, comma, sort&compress]{natbib}  % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim}  % Needed for the "comment" environment to make LaTeX comments

\usepackage{amsmath,amsfonts,amssymb,amscd,mathrsfs,enumerate}
\usepackage{amsthm}
\usepackage[all]{xy}
\usepackage{relsize}
\usepackage{pifont}
\usepackage{mathtools}
\usepackage[all]{xy}
\usepackage{relsize}
\usepackage{fourier}
\usepackage{esvect}

\usepackage{pgf,tikz}
\usepackage{mathrsfs}

\usepackage[capposition=top]{floatrow}
\renewcommand{\qedsymbol}{\textcolor{black}{$\blacksquare$}}
\allowdisplaybreaks 

...

\usetikzlibrary{arrows}

\DeclareRobustCommand{\en}[1]{%
  \foreignlanguage{english}{#1}%
}

\newcommand{\eng}{\begin{otherlanguage}{english}}
\newcommand{\eeng}{\end{otherlanguage}}


\theoremstyle{plain}
\newtheorem{thm}{Θεώρημα}[section]
\theoremstyle{plain}
\newtheorem{dfn}[thm]{Ορισμός}
\theoremstyle{plain}
\newtheorem{prp}[thm]{Πρόταση}
\theoremstyle{plain}
\newtheorem{lem}[thm]{Λήμμα}
\theoremstyle{definition}
\newtheorem{px}[thm]{Παράδειγμα}
\theoremstyle{definition}
\newtheorem{col}[thm]{Πόρισμα}
\theoremstyle{remark}
\newtheorem{note}[thm]{Παρατήρηση}
\theoremstyle{remark}
\newtheorem{prf}[thm]{Απόδειξη}
\theoremstyle{remark}

提前致谢!

答案1

字体fourier不支持希腊语,因此您会收到有关字体替换的警告。

与 Utopia 类似的可用希腊字体是 GFS Artemisia。

如果你添加

\usepackage{substitutefont}

\substitutefont{LGR}{\rmdefault}{artemisia}

在你的序言中,你得到了

\begin{thm}
\en{Theorem} Theorem % just for comparison
$\alpha\beta$ ab
\end{thm}

输出

在此处输入图片描述

其他可能的选择是\usepackage{fourier}

\usepackage{tempora}
\usepackage{newtxmath}

这将使用 Times 风格的字体。这里\substitutefont不需要。

笔记。没有必要重复\theoremstyle声明。一个声明的作用域会一直持续,直到被另一个类似的声明所推翻。

相关内容