Adding lists to toc with proper font

Issue #133 closed
Johannes Böttcher created an issue

Suppose a user wants to add the list of figures and similar entries to the table of contents. The entries are not set using \spacedlowersmallcaps as other chapter entries are.

MWE to reproduce the issue:

\documentclass[index=totoc,
listof=totoc
]{scrbook} 
\setuptoc{toc}{totoc}
\usepackage{classicthesis}
%\usepackage{tocbibind}
\begin{document}
\tableofcontents 
\chapter{Capybara}
\addchap{Wombat}
\listoffigures
\listoftables
\begin{theindex}
\end{theindex} 
\end{document}

Reported at mrunix

Official response

Comments (4)

  1. André Miede repo owner

    Thanks for bringing this to our attention and the solution. Building on KOMA will be discontinued in the future, but a solution for this case was found in the mrunix forum etc.:

    Solved in English: http://latex.org/forum/viewtopic.php?f=48&t=29080&p=98202#p98201

    Solved in German: http://mrunix.de/forums/showthread.php?77166-Schriftart-Inhaltsverzeichnis-vereinheitlichen&p=362451&viewfull=1#post362451

        \documentclass[12pt,a4paper,index=totoc]{scrbook} 
    
        \usepackage[OT1]{eulervm}
        \usepackage{classicthesis}
        \usepackage{arsclassica} 
        %\usepackage{makeidx}
        \begin{document}
        \tableofcontents 
        \chapter{Capybara}
        test\index{test} test \index{test2}
    
        \begin{figure}
        \caption{Test-Figure}
        \end{figure}
    
        \addchap{Wombat}
    
        \addcontentsline{toc}{chapter}{\tocEntry{Tabellenverzeichnis}}
        \listoffigures
    
        \begin{theindex}
        \end{theindex} 
        \end{document}
    

    Now also in the wiki: https://bitbucket.org/amiede/classicthesis/wiki/browse/

  2. Johannes Böttcher reporter

    \addcontentsline{toc}{chapter}{\tocEntry{Tabellenverzeichnis}} \listoffigures

    This will add Tabellenverzeichnis fürs Abbildungsverzeichnis.

  3. Log in to comment