当定理环境中有 \newpage 时,我的文章中的标题采用斜体而不是正常字体

当定理环境中有 \newpage 时,我的文章中的标题采用斜体而不是正常字体

按照你的建议,我修复了最小工作示例。当我使用包时多语,页眉/页脚位于斜体包含前半部分定理的页面。

\documentclass{article}%%% OR dependencies


\usepackage[utf8]{inputenc}
\usepackage[english]{babel}


\usepackage{polyglossia}       
\setmainlanguage[variant=mono]{greek}   
\setotherlanguage{english}    
\setmainfont{Arial}    

\usepackage[Sonny]{fncychap}
\usepackage{amssymb} % maths
\usepackage{amsmath}

\newtheorem{theorem}{Θεώρημα}[section]
\newtheorem{lemma}{Λήμμα}[section]
\newtheorem{definition}{Ορισμός}[section]
\newtheorem{claim}{Ισχυρισμός}[section]
\newtheorem{guess}{Εικασία}[section]

\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhead[R]{}
\fancyhead[C]{}
\fancyhead[L]{\fontsize{8pt}{9.6pt}\selectfont HEAD}
\fancyfoot[R]{\fontsize{10pt}{12pt}\selectfont PAGE}
\fancyfoot[C]{}
\fancyfoot[L]{\fontsize{8pt}{9.6pt}\selectfont FOOT}
\renewcommand{\headrulewidth}{0pt}


\begin{document}

\pagestyle{fancy}
\newpage
\begin{guess}
\label{first_claim}
Text first Page $k+1$,\newpage test second page.
\end{guess} 

\end{document}

答案1

在评论中得到帮助后,我找到了问题所在。已经有另一个问题有一个有效的答案XeLaTeX + polyglossia + 俄语或希腊语 = 斜体页码

相关内容