一些小文档中的错误

一些小文档中的错误

我的 LaTeX 论文有一些错误,我不知道如何解决这些问题:

第一个是:

pdfTeX warning (ext4): destination with the sa
me identifier (name{page.1}) has been already used, duplicate ignored
<to be read again> 

在谷歌上,我发现我必须添加选项pdfpagelabels,但仍然收到这个错误。

然后我遇到了另一个错误:

<to be read again> 
                   \relax 
l.37 \chapter
             {Introduction} [1]

就在上一个之后。这个我不知道如何修复。我不知道为什么会出现这个错误。

最后一个是警告:

Overfull \hbox (16.278pt too wide) in paragraph at lines 43--44
\T1/cmr/m/n/10 I did my in-tern-ship in a lab-o-ra-tory in Nantes called [][]

我使用包acronym,但不幸的是缩写太长,所以我收到段落太宽的警告。可以修复它吗?如何修复?

我给你原始文件:

\documentclass[a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[stable]{footmisc}



\usepackage{algorithm}
\usepackage{acronym}
\usepackage{geometry}
\usepackage{graphicx}


%\usepackage{pdftex}
\usepackage[pdfpagelabels]{hyperref}
\hypersetup{%
    pdfborder = {0 0 0}
}
\title{Prediction of Parallel Speed-ups for Las Vegas Algorithms}
\author{François Thiré}
\date{\today}

\pagestyle{headings}

%Acronyms
\acrodef{lina}[Laboratoire d'Informatique de Nantes Altantique]{LINA}
\begin{document}
\maketitle
\tableofcontents

\section*{Acknowledgement}
\chapter{Introduction}
\chapter{\acl{lina}}

I did my internship in a laboratory in Nantes calle \ac{lina}\footnote{Computer sciences laboratory of Nantes Atlantique}. The following      
words will present this laboratory. 
\begin{appendix}
\chapter{Bibliography}
\end{appendix}
\end{document}

相关内容