6

This question is almost a duplicate of this one. Except the answer does not work for the spanish language.

You can check by commenting/removing the 2nd and 3rd lines.

\documentclass[numbers=noenddot]{scrbook}
\def\spanishoptions{mexico}
\usepackage[spanish]{babel} 
\usepackage{blindtext}% dummy text
\begin{document}
\tableofcontents

\part{One}
\part{Two}
\blinddocument
\end{document}

1 Answers1

5

To ensure that the heading numbers will be controlled by the KOMA-Script class use the babel option es-nosectiondot.

\documentclass[numbers=noenddot]{scrbook}
\def\spanishoptions{mexico}
\usepackage[
  spanish,
  es-nosectiondot% <- added
]{babel} 
\usepackage{blindtext}% dummy text
\begin{document}
\tableofcontents

\part{One}
\part{Two}
\blinddocument
\end{document}

enter image description here

esdd
  • 85,675