问题T1 fontenc 和 microtype?

问题T1 fontenc 和 microtype?

我不得不在电脑上重新安装 Windows,因此也必须重新安装 Latex。之前它运行得很好,我不明白为什么现在会出现问题(我重新安装了完整的 miktex 发行版)。

以下是代码(原始文档要大得多,但您可以看到该部分的问题):

\documentclass{article}

\usepackage{amssymb,amscd,amsmath,amstext,amsfonts}
\usepackage[francais]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel=true,kerning=true]{microtype}
\usepackage{boiboites}

\newtheorem{thm}{Th\'eor\`eme}[section]
\newboxedtheorem[titleboxcolor = white]{defn}{D\'efinition}{thm}

\begin{document}

\begin{defn}
Soient $n$ un entier naturel et $a$ et $b$ deux entiers relatifs. On dit $a$ est congru \`a $b$ modulo $n$ s'il existe un entier relatif $k$ tel que $a=b+kn$. \\ 
On note $a \equiv b [n]$.
\end{defn}

\end{document}

Boiboites 是一个允许使用盒子定理的包,你可以在这个论坛或这里找到它http://snouffy.free.fr/blog-fr/index.php/post/2009/09/30/Des-jolies-boites-en-LaTeX-pour-encadrer-les-th%C3%A9or%C3%A8mes

当我构建文档时,出现此错误并且没有输出文档:

! pdfTeX error (font expansion): auto expansion is only possible with scalable fonts.
\@EveryShipout@Output ...@Org@Shipout \box \@cclv 

但是如果我删除该行\usepackage[T1]{fontenc},它就可以正常工作,或者如果我删除 microtype 包,它也可以正常工作。

我下载了最新的软件包,检查了可用的更新,但它们都是最新的。有谁能解决我的问题?

相关内容