hyperref、babel 和子方程冲突

hyperref、babel 和子方程冲突

我正在尝试subequations在文档中使用。在研究我的序言时,我发现如果我同时使用babel和打包,就会发生致命错误,并且不会产生任何结果。hyperref.pdf

我知道我可以尝试使用equation counter,来进行枚举 1.1a、1.1b,但我想知道为什么会发生这种情况subequations,以及是否有办法解决这个问题。

我的代码是

\documentclass{book}
\usepackage{amsmath}
\usepackage[english,greek]{babel}
\usepackage[iso-8859-7]{inputenc}

\usepackage{hyperref}
%\hypersetup{%
    %pdfborder = {0 0 0},
    %colorlinks,
    %citecolor=red,
    %filecolor=Darkgreen,
    %linkcolor=blue,
    %urlcolor=cyan!50!black!90
%}

\begin{document}
\chapter{Chapter one}
\begin{subequations}
    \begin{align}
        1+1=&2\\
        2+2=&4
    \end{align}
\end{subequations}
\end{document}

相关内容