我需要在文档中使用乳胶代码制作章节索引,如下所示:
\setcounter{tocdepth}{0}
\tableofcontents
我修改了示例来自其他答案以西班牙语按章节设置目录。
\documentclass{report}
%
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{titletoc}% http://ctan.org/pkg/titletoc
\usepackage[ linkbordercolor={1 1 1} ,
urlbordercolor={1 1 1} ]{hyperref}
\usepackage{bookmark}
\bookmarksetup{
open,
numbered,
addtohook={%
\ifnum\bookmarkget{level}>2 %
\renewcommand*{\numberline}[1]{}%
\fi
},
}
% \usepackage[spanish]{babel} % Ortografía
\usepackage[utf8]{inputenc} % Permite acentos
\begin{document}
\setcounter{tocdepth}{0}
\tableofcontents
\chapter{Introduction}
\lipsum[1]
\section{First section} \lipsum[2-3]
\section{Second section} \lipsum[4-5]
\section{Last section} \lipsum[6-7]
\chapter{Second chapter} \lipsum[1]
\section{First section} \lipsum[2-3]
\section{Second section} \lipsum[4-5]
\section{Last section} \lipsum[6-7]
\chapter{Last chapter} \lipsum[1]
\section{First section} \lipsum[2-3]
\section{Second section} \lipsum[4-5]
\section{Last section} \lipsum[6-7]
\end{document}
我评论了西班牙语的 babel 调用
% \usepackage[spanish]{babel} % 正字法
并且运行良好。但是当我打开西班牙语时,没有创建索引。
第一个错误说
缺少 \endcsname 插入 \lipsum1
但是我在同一代码中发现了很多行错误!
当然,我正在写西班牙语文本,但到处都是错误......
我应该修改什么?
问候