my scrbook is divided in two parts with same content. The first part is written in Sütterlin, the second one in latin font. Is there the possibility to change the font in the TOC? I know this is not a normal case and would only be a nice-to-have.
Another question: What parameter do I have to change for bigger characters in Sütterlin (see line 5)? Are there also bold letters?
Thanks for your help
Regards,
schwarz
Code: Select all
\documentclass[12pt,% Schriftgröße
pdftex, % benutze PDFLaTeX
]{scrbook}
\usepackage{suetterl}
\DeclareFontShape{T1}{suetterl}{m}{n}{<->s*[0.8]suet14}{\fontdimen5\font=0.5\fontdimen6\font}
% see http://www.mrunix.de/forums/showthread.php?73448-Schriftart-f%FCr-das-ganze-Dokument
\usepackage[T1]{fontenc}% europäischer Zeichensatz
\usepackage[latin1]{inputenc}% Zeichenkodierung
\usepackage[german,ngerman]{babel}% neue deutsche Rechtschreibung, wichtig für Umlaute und Trennungsregeln
\newcommand{\inhalt}{%
Das ist mein Text, einmal in Sütterlin und einmal in lateinischer Schrift.
}
\begin{document}
\tableofcontents
{\selectlanguage{german} % alte deutsche Rechtschreibung für Sütterlin
\setkomafont{disposition}{\suetterlin}
\suetterlin
\addpart{Die Abschrift in Sütterlin}
\inhalt
}
\addpart{Die Abschrift in lateinischer Schrift}
\inhalt
\end{document}