I tried to search for a comparable topic but really did not find anything that answered my question.
My *.tex document class is "scrartcl" and I want to customize the first pages of all of my sections by the following:
- increased font size of section name
- increase margins between section name and text as well as section name and page boarder (same for footer). The whole first page should be more "centered"
Code: Select all
%\documentclass[a4paper,12pt]{article}
\documentclass[a4paper,12pt]{scrartcl}
%\documentclass[12pt]{ociamthesis}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
% Standards
% \usepackage[latin1]{inputenc}
% \usepackage{fontenc}%\usepackage{chicago}
% German language support
\usepackage[english]{babel}
% \usepackage{bibgerm}
% Mathematics
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amscd}
\usepackage{amsfonts}
% Formatting
\usepackage{graphicx} %Graphics
\usepackage{booktabs} %Tables
\usepackage{a4} %Page setting
\usepackage{fancyhdr} %Headers and footers
\usepackage{longtable} %Tabellen l\"{a}nger als eine Seite
\usepackage{subfigure}
\usepackage{booktabs}
\usepackage{enumerate}
\usepackage{epsfig}
\usepackage{layout}
\usepackage{tabularx}
\usepackage{array}
\usepackage{wasysym}
\usepackage{fancybox}
\usepackage{color}
\usepackage{rotating}
\usepackage{slashbox}% kann in Tabelle diagonalen Strich darstellen
\usepackage{multirow}
\usepackage{mathrsfs}
\usepackage[a4paper]{geometry}
\geometry{top=3.5cm, bottom=5cm, left=3cm, right=3cm}
\interfootnotelinepenalty=50000
\usepackage{caption}
% Chapter title pages
\fancypagestyle{myheadings}{
\fancyhf{}
\vspace{3cm}
\fancyhead[R]{}
\fancyfoot[L]{}
\fancyfoot[R]{}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\renewcommand{\baselinestretch}{1.3}
\pagestyle{headings}
\begin{document}
\setcounter{page}{1}\renewcommand{\thepage}{\roman{page}}%
\tableofcontents %
\newpage
% \listoffigures \addcontentsline{toc}{chapter}{List of Figures}% in Englisch
\listoffigures \addcontentsline{toc}{section}{List of Figures} % in Deutsch
% \listoftables \addcontentsline{toc}{chapter}{List of Tables}% in Englisch
\listoftables \addcontentsline{toc}{section}{List of Tables} % in Deutsch
\newpage
\setcounter{page}{1}\renewcommand{\thepage}{\arabic{page}}
\newpage
\section{\bfseries{\huge{Model}}
\thispagestyle{myheadings}
\vspace{2cm}
body of text...
\newpage
%
%
\newpage
\appendix
\end{document}
The next problem was that now the increased size of the section name leads to an increased font size in the header of the remaining pages of the same section which looks awful.
I was at least capable of creating margins by using \vspace() in \fancypagestyle{} and in the section directly..
I would be really grateful I anyone could give me a hint towards a more satisfying solution.
Best regards
maddog