我想在每一章的末尾有单独的参考书目,所以我使用了\usepackage{chapterbib}
。到目前为止一切都很好。但是当我添加\usepackage{hyperref}
到我的 main.tex 文件时,每个参考文献都会出现错误“Package inputenc 错误:Unicode 字符 ∕ (U+2215)”,并且所有参考文献都出现在所有章节的末尾。我不知道如何解决这个问题。我希望 pdf 文件具有这样的功能:一旦我单击参考编号,它就会跳转到该参考文献,或者当我单击文本中的单词“图 2”时,它会跳转到该图(如果我\usepackage{hyperref}
没记错的话,我认为有责任激活此功能)。
这是我的main.tex
文件
\documentclass{thesis}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsthm,amsmath}
\usepackage{graphicx}
\usepackage{chapterbib}
\usepackage{braket}
\usepackage{dcolumn}
\usepackage{textcomp}
\usepackage{float}
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{corollary}[theorem]{Corollary}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\begin{document}
\include{chapter1}
\include{chapter2}
\include{chapter3}
\end{document}
每个都chapter.tex
像这样:
\chapter{name of the chapter}
Some text and \ref{} and \label{} , and some \cite{} ....
\cleardoublepage\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{unsrt}
\bibliography{ref}