代码错误。未定义控制序列

代码错误。未定义控制序列

我是 LaTeX 的初学者,不明白为什么会出现错误。这是我的代码:

\documentclass[letterpaper,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{array,tabularx}
\usepackage{lastpage}
\usepackage{fancyhdr}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage[spanish]{babel} % Manejo de idiomas
\usepackage[pages = some]{background} 

%\usepackage{nomencl}
%\makenomenclature
%%\renewcommand{\nomname}{List of Symbols}

\backgroundsetup{
contents={\includegraphics{escudounipamplona.png}},
angle=0,
scale=0.45,
color=black,
opacity=0.1
}

\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thesubsection}{\arabic{subsection}}

\newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}}
\renewcommand{\tabularxcolumn}[1]{M{#1}}

\usepackage[hmargin=2cm,top=4cm,headheight=75pt,footskip=65pt]{geometry}
\setlength{\parindent}{0.95cm}
\pagestyle{fancy}

\renewcommand{\headrulewidth}{0pt}

\fancyhead[CE,CO,LE,LO,RE,RO]{} %% clear out all headers
\fancyhead[C]{%
  \begin{tabularx}{\textwidth}{|M{3.0cm}|X|M{2.5cm}|M{3cm}|}
    \hline
    \multirow{4}*{\includegraphics[scale=0.034]{escudounipamplona}}
    &
    \multirow{4}*{\parbox{\linewidth}{\centering Propuesta trabajo de grado para optar por el título de Ingeniero en Mecatrónica}}
    &
    \multirow{2}*{\textbf{C\'odigo}}
    &
    \multirow{2}*{1.2}\\
    &&&
    \\\cline{3-4}
    &&
    \multirow{2}*{\textbf{Pagina}}
    &
    \multirow{2}*{\small\emph{Pagina \thepage\ de \pageref{LastPage}}\hspace{15pt}}\\
    &&&\\
    \hline
  \end{tabularx}
}



\begin{document}
\BgThispage
\begin{center}
{

\Large\textbf{Detecci\'on y diagnostico de fallas basados en t\'ecnicas de aprendizaje autom\'atico supervisado: aplicaci\'on al problema del benchmark DAMADICS}  
\vspace{3cm}
\\
{\normalsize \textit{Autor}} \\
Juan David Bola\~nos Aguilar\\

\vspace{3cm}

{\normalsize \textit{Director}} \\
Dr. Rocco Tarantino Alvarado \\
{\normalsize \textit{Doctorado en Ciencias Aplicadas}} \\
\vspace{3cm}
Programa de ingenier\'ia mecatr\'onica \\
Departamento de ingenier\'ia mec\'anica, mecatr\'onica e industrial \\
Facultad de ingenierías y arquitectura\\
Universidad de Pamplona\\
Villa del Rosario, Norte de Santander\\
febrero del 2015\\
}
\end{center}
\newpage
\BgThispage
\begin{center}
{

\Large\textbf{Detecci\'on y diagnostico de fallas basados en t\'ecnicas de aprendizaje autom\'atico supervisado: aplicaci\'on al problema del benchmark DAMADICS}  
\vspace{2.5cm}
\\
{\normalsize \textit{Autor}} \\
Juan David Bola\~nos Aguilar \\
{\normalsize \textit{Codigo: 1116249797}} \\
{\normalsize \textit{Correo electronico: [email protected]}} \\
\vspace{2.5cm}
{\normalsize \textit{Director}} \\
Dr. Rocco Tarantino Alvarado \\
{\normalsize \textit{Doctorado en Ciencias Aplicadas}} 
\\
{\normalsize \textit{Correo electronico: [email protected]}} \\
\vspace{2.5cm}
Programa de ingenier\'ia mecatr\'onica \\
Departamento de ingenier\'ia mec\'anica, mecatr\'onica e industrial \\
Facultad de ingenierías y arquitectura\\
Universidad de Pamplona\\
Villa del Rosario, Norte de Santander\\
febrero del 2015\\
}
\end{center}
\newpage
\tableofcontents
\newpage
\section{INTRODUCCI\'ON }
La supervisión de procesos técnicos tiene como objetivo ilustrar el estado actual del proceso, indicar estados no deseados o no permitidos y tomar acciones encaminadas a la corrección de los mismos con el fin de evitar da\n~os o accidentes \cite{isermannFaults}. Esta disciplina permite el desarrollo de metodos sistematicos que permiten la deteccion y posterior de \textbf{fallas} en plantas industriales que derivan en perdidas economicas, paro de produccion, daños en actuadores y sensores, entre otros.  

\bibliography{anteproyectoTabularX} 
\nocite{*}
\bibliographystyle{ieeetr}

    \end{document}

这是我的输出日志:

! Missing \endcsname inserted.
<to be read again> 
                   \global 
l.33 \bibcite{\IeC {\textbullet }}{2}

The control sequence marked <to be read again> should
not appear between \csname and \endcsname.

LaTeX Font Info:    Try loading font information for OMS+cmr on input line 33.
(/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <12> not available
(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 33.

! Extra \endcsname.
\@newl@bel ... \bbl@tempa \csname #1@#2\endcsname 
                                                  \def \bbl@tempb {#3}\@safe...
l.33 \bibcite{\IeC {\textbullet }}{2}

I'm ignoring this, since I wasn't doing a \csname.

感谢您的帮助。

编辑:附加了来自 Texmaker 日志窗口的捕获

在此处输入图片描述

答案1

你有过

da\n~os

而且应该是

da\~nos

评论

  • 因为您正在使用选项加载inputencutf8

    \usepackage[utf8]{inputenc}
    

    您可以直接从键盘上写重音字母、eñes 和 diéresis。

  • 你应该hyperref作为最后一个包加载

相关内容