I'm still new to LaTeX and have a question concerning the table of contents. I'm currently writing a thesis for my university degree and have to use a certain layout, which is only available as a Microsoft Word .dot.
At the moment I'm trying to make my thesis which is written in LaTeX look like that Word-based layout.
The only problem that remains is that the section names in the TOC are in bold font, but need to be "normal". How can I accomplish that?
Here is the beginning of my thesis:
Code: Select all
\documentclass[paper=a4, liststotocnumbered, bibtotocnumbered]{scrartcl}\usepackage[utf8]{inputenc}\usepackage{ngerman} %Deutsches Sprachpaket, inkl. neuer Rechtschreibung\usepackage{graphicx} %Einbinden von Bildern\usepackage[T1]{fontenc}\usepackage{listings} %schönere Anzeige von Quellcode\usepackage{textcomp}\usepackage{fancyhdr} %Kopfzeilen gestalten\usepackage[justification=raggedright,singlelinecheck=false]{caption} %Bildunterschriften linksbündig\usepackage{helvet} %Helvetica als Standardschriftart\renewcommand{\familydefault}{\sfdefault} %Helvetica als Standardschriftart\setlength{\parindent}{0pt} %kein Einzug am Beginn eines Absatzes\setlength{\parskip}{2ex plus0.3ex minus0.1ex} %Abstand zwischen 2 Absätzen\pagestyle{fancy} %eigener Seitenstil\fancyhf{} %alle Kopf- und Fußzeilenfelder bereinigen\renewcommand{\headrulewidth}{0.4pt} %Kopfzeilen-Unterstrich einstellen\renewcommand{\sectionmark}[1]{\markboth{\thesection{} #1}{}}\fancyhead[L]{\leftmark} %Kopfzeile links\fancyhead[C]{} %zentrierte Kopfzeile\fancyhead[R]{\thepage} %Kopfzeile rechts\renewcommand*\figurename{Abb.} %Abbildungsbezeichnungen ändern\renewcommand{\thefigure}{\arabic{section}-\arabic{figure}} %Abbildungsbezeichnungen ändern\makeatletter \@addtoreset{figure}{section} \makeatother %Abbildungsbezeichnungen ändern\usepackage{setspace} %anderthalbfacher Zeilenabstand\onehalfspacing %anderthalbfacher Zeilenabstand\usepackage{geometry} %Seitenränder\geometry{a4paper,left=30mm,right=20mm, top=30mm, bottom=25mm} %Seitenränder
Philip