von Grillteller » Mo 7. Nov 2016, 15:06
So habe jetzt alles hinbekommen. Aber das Problem, dass ich noch ohne KOMA-Klasse hatte besteht immer noch.....
Die Kopfzeile des Tabellen und -Formelverzeichnisse, die zusammen auf einer Seite sind, zeigt immer das zweite Verzeichnis dieser Seite. Ich möchte dort aber das erste Verzeichnis stehen haben.
Im Minimalbeispiel von esdd funktioniert es bei mir auch noch nicht.
\documentclass[
12pt,
ngerman,
titlepage,
listof=totoc,
listof=flat,
parskip=half% alternativ full
]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}% Sprachanpassung
\usepackage[vmargin=30mm, left=40mm, right=25mm, headheight=18pt]{geometry}
\usepackage{amsmath}
\usepackage[onehalfspacing]{setspace} % Zeilenabstände
\usepackage[automark,markcase=upper,headsepline]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\rightmark}
\cfoot*{\pagemark}
\addtokomafont{disposition}{\rmfamily}
\addtokomafont{pagehead}{\upshape}
\addtokomafont{caption}{\footnotesize}
\addtokomafont{captionlabel}{\bfseries}
\DeclareNewTOC[
type=formel,
name=Formel,
listname=Formelverzeichnis,
nonfloat
]{for}
\BeforeTOCHead{\linespread{1}\selectfont}
\usepackage{blindtext}% nur für Fülltext
\begin{document}
\author{Autor}
\title{Titel}
\maketitle
\listoffigures
\listoftables
\listofformels
\clearpage
\tableofcontents
\clearpage
\Blinddocument
\begin{formel-}
\begin{equation}
\label{formel:RMS}
RMS=\sqrt{\dfrac{1}{n}\sum_{i=1}^{n}{x^2}_i}
\end{equation}
\caption{Quadratischer Mittelwert}
\end{formel-}
\begin{formel-}
\begin{equation}
\label{formel:RMS1}
RMS=\sqrt{\dfrac{1}{n}\sum_{i=1}^{n}{x^2}_i}
\end{equation}
\caption{Quadratischer Mittelwert}
\end{formel-}
\end{document}
Gruß
Grillteller
So habe jetzt alles hinbekommen. Aber das Problem, dass ich noch ohne KOMA-Klasse hatte besteht immer noch.....
Die Kopfzeile des Tabellen und -Formelverzeichnisse, die zusammen auf einer Seite sind, zeigt immer das zweite Verzeichnis dieser Seite. Ich möchte dort aber das erste Verzeichnis stehen haben.
Im Minimalbeispiel von esdd funktioniert es bei mir auch noch nicht.
[code]
\documentclass[
12pt,
ngerman,
titlepage,
listof=totoc,
listof=flat,
parskip=half% alternativ full
]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}% Sprachanpassung
\usepackage[vmargin=30mm, left=40mm, right=25mm, headheight=18pt]{geometry}
\usepackage{amsmath}
\usepackage[onehalfspacing]{setspace} % Zeilenabstände
\usepackage[automark,markcase=upper,headsepline]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\rightmark}
\cfoot*{\pagemark}
\addtokomafont{disposition}{\rmfamily}
\addtokomafont{pagehead}{\upshape}
\addtokomafont{caption}{\footnotesize}
\addtokomafont{captionlabel}{\bfseries}
\DeclareNewTOC[
type=formel,
name=Formel,
listname=Formelverzeichnis,
nonfloat
]{for}
\BeforeTOCHead{\linespread{1}\selectfont}
\usepackage{blindtext}% nur für Fülltext
\begin{document}
\author{Autor}
\title{Titel}
\maketitle
\listoffigures
\listoftables
\listofformels
\clearpage
\tableofcontents
\clearpage
\Blinddocument
\begin{formel-}
\begin{equation}
\label{formel:RMS}
RMS=\sqrt{\dfrac{1}{n}\sum_{i=1}^{n}{x^2}_i}
\end{equation}
\caption{Quadratischer Mittelwert}
\end{formel-}
\begin{formel-}
\begin{equation}
\label{formel:RMS1}
RMS=\sqrt{\dfrac{1}{n}\sum_{i=1}^{n}{x^2}_i}
\end{equation}
\caption{Quadratischer Mittelwert}
\end{formel-}
\end{document}
[/code]
Gruß
Grillteller