I have a problem with the
numbers=noenddot
option. Every final number in my document should appear without dot. Apparently it works in the list of contents but not in the text. I tried to use pointlessnumbers
, but it did not work either. I was wondering if you have an alternative.Here is my minimal working example. I left some commands I added and which I think it might be relevant. Attached you will find "mystyle" style file. I am not sure if that is of relevance.
Code: Select all
\documentclass[
12pt,%
% draft,%
twoside,%
BCOR10mm,%
% bibtotocnumbered,% <= obsolete
bib=totoc, % <= recommended
toc=listof,
toc=bibliography,
numbers=noenddot
]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{mystyle}
\usepackage[titles]{tocloft}
\cftpagenumbersoff{part}
\captionsetup[table]{labelsep=quad}
\captionsetup[figure]{labelsep=quad}
\addto\captionsspanish{%
\renewcommand{\listfigurename}{Índice de Figuras}
\renewcommand{\listtablename}{Índice de Tablas}
\renewcommand{\figurename}{Figura}
\renewcommand{\tablename}{Tabla}
\renewcommand{\bibname}{Referencias bibliográficas}
\renewcommand{\appendixname}{Apéndices}
\renewcommand{\appendixtocname}{Apéndices}
\renewcommand{\partpagestyle}{empty}
\renewcommand{\appendixpagename}{Apéndices}}
\raggedbottom
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\begin{document}
\ifpdf
\tableofcontents
% \fi
{\listoftables
\let\cleardoublepage\relax
\let\clearpage\relax
\listoffigures
\let\cleardoublepage\relax
\let\clearpage\relax
}
\newpage{\pagestyle{empty}\cleardoublepage}
\addtocontents{toc}{\protect\cftpagenumbersoff{chapter}}
\section{First Chapter}
\label{sec:first-chapter-1}
\subsection{First Subsection}
\label{sec:first-subsection-1}
\end{document}
Regards,
Marie