我在引用方程式时遇到了一些问题。特别是当我包含包时,它们无法正常工作hyperref
。
如果我做:
\begin{equation}\label{einstein}
E=m^{2}
\end{equation}
然后我尝试将其引用为
\ref{einstein}
打印的是标签名称(爱因斯坦)而不是方程式的编号,而且后面的书写也受到了奇怪的影响。
我认为可能是我在序言中创建了一些包冲突,即:
\documentclass[12pt]{report}
\setcounter{secnumdepth}{5}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage[english]{babel}
\usepackage[a4paper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE,RO]{\itshape \nouppercase \rightmark}
\fancyhead[LO,RE]{\itshape \nouppercase Chapter \arabic{chapter}}
% Useful packages
\usepackage{empheq,mathtools}
\usepackage{amsthm, amsmath, amsfonts, amssymb, amsbsy}
\usepackage{mathtools}
\usepackage{biblatex}
\addbibresource{sample.bib}
\usepackage{subcaption}
\usepackage{subfigure}
\usepackage{float}
\usepackage{bbold}
\usepackage{url}
\usepackage{float}
\usepackage{titling}
\usepackage{hyperref}
\usepackage{cleveref}
\newcommand{\bigzero}{\mbox{\normalfont\Large\bfseries 0}}
\newcommand{\rvline}{\hspace*{-\arraycolsep}\vline\hspace*{- \arraycolsep}}
\newcommand{\bigzero}{\mbox{\normalfont\Large\bfseries 0}}
\newcommand{\rvline}{\hspace*{-\arraycolsep}\vline\hspace*{-\arraycolsep}}
\title{Notes \\
{\Large University}}
\author{Me}
\addbibresource{sample.bib}
\begin{document}
\maketitle
\chapter*{Acknowledgements}
\tableofcontents
\newpage
\chapter*{Abstract}
\include{introduction}
\include{chap1}
\include{conclusion}
\printbibliography
\end{document}
我该如何解决?