Latex 中 Kerkis 字体激活错误

Latex 中 Kerkis 字体激活错误

我正在尝试在乳胶中使用 kerkis 字体\usepackage{kmath,kerkis}

以下是我的序言:

\documentclass[12pt]{article}

\usepackage{kmath,kerkis}
\usepackage[T1]{fontenc}

\usepackage[margin=1in]{geometry}

\usepackage{multicol}
\usepackage{mathrsfs}

\usepackage{scrextend}

\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{caption}
\usepackage{float}
\usepackage{subcaption}
\captionsetup[figure]{font=small}
\usepackage{setspace}

\graphicspath{{img/Ch1/}}

\DeclareCaptionLabelFormat{nocaption}{}

\usepackage{hyperref}
\hypersetup{ colorlinks, citecolor=blue, linkcolor=blue, urlcolor=blue}


\usepackage{cite}
\usepackage{filecontents}




\begin{document}


Some texts here.
A math equation example
 \begin{align}
    \Omega &= [\nabla \times {\cal A}]_z \nonumber\\
    &= \frac{\partial {\cal A}_y}{\partial k_x} - \frac{\partial {\cal A}_x}{\partial k_y}
\end{align} 


\end{document}

但是我收到一个错误:“命令 \iint 已定义。...d{\iint}{\DOTSI\protect\MultiIntegral{2}}”

有人能告诉我序言中出了什么问题吗?

答案1

我已经限制了你的 MWE 并且它可以正常工作。

\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{kmath,kerkis}
\usepackage{mathrsfs}
\usepackage{scrextend}
\usepackage{graphicx}




\begin{document}


Some texts here.
A math equation example
 \begin{align}
    \Omega &= [\nabla \times {\cal A}]_z \nonumber\\
    &= \frac{\partial {\cal A}_y}{\partial k_x} - \frac{\partial {\cal A}_x}{\partial k_y}
\end{align} 


\end{document}

在此处输入图片描述

相关内容