Fonts & Character SetsFonts problems in table of contents

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
Oelle74
Posts: 3
Joined: Wed Jul 06, 2016 11:23 am

Fonts problems in table of contents

Post by Oelle74 »

Hi,

I would like to have the list of figures in the same font in the table of contents as the other chapters or as the index or bibliography, but it doesn't work.

Below an example code.

What should I change?

Thanks!

Code: Select all

\documentclass[12pt,a4paper,index=totoc,bibliography=totoc,listof=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}

\listoffigures

\begin{theindex}
\end{theindex} 

\end{document}
Last edited by Oelle74 on Wed Jan 18, 2017 7:12 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Fonts problems in table of contents

Post by Johannes_B »

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Fonts problems in table of contents

Post by Stefan Kottwitz »

Da es im anderen Forum gelöst wurde, hake ich es hier auch als gelöst ab.

Der Code von Oelle74 selbst, von dort (bis auf nicht nötige Leerzeilen :-) ):

Code: Select all

\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}
Stefan
LaTeX.org admin
Post Reply