Seite 1 von 1

Unterkapitel & Kopfzeile

Verfasst: Mi 4. Mai 2016, 10:30
von user1000
Hallo zusammen,
ich habe Unterkapitel in meinem Verzeichnis eingerichtet und leider werden jetzt deren Namen in der Kopfzeile angezeigt und nicht mehr wie gewünscht der Name des Verzeichnisses..
Hoffe ihr könnt helfen!
\documentclass[a4paper,11pt,oneside,english,ngerman,listof=totoc,bibliography=totoc,chapterprefix=true]{scrreprt} 
\usepackage[headsepline]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ofoot[\pagemark]{\pagemark}
\ohead{\headmark}
\chead[]{}
\cfoot[]{}
\automark[chapter]{chapter}
\renewcommand*{\chaptermarkformat}{}
\usepackage[toc,nonumberlist,acronyms,nopostdot]{glossaries} 
\newglossary*{subscript}{Tiefgestellt} 
\newglossary*{superscript}{Hochgestellt} 
\makenoidxglossaries 
\newglossaryentry{a}{type=subscript,name=a,description={a}} 
\newglossaryentry{b}{type=superscript,name=b,description={b}} 
\newglossaryentry{c}{type=subscript,name=c,description={c}} 
\newglossaryentry{d}{type=superscript,name=d,description={d}} 
\newglossaryentry{e}{type=subscript,name=e,description={e}} 
\newglossaryentry{f}{type=superscript,name=f,description={f}} 
\newglossaryentry{g}{type=subscript,name=g,description={g}} 
\newglossaryentry{h}{type=superscript,name=h,description={h}} 
\newglossaryentry{i}{type=subscript,name=i,description={i}} 
\newglossaryentry{j}{type=superscript,name=j,description={j}} 
\newglossaryentry{k}{type=subscript,name=k,description={k}} 
\newglossaryentry{l}{type=superscript,name=l,description={l}} 
\newglossaryentry{m}{type=subscript,name=m,description={m}} 
\newglossaryentry{n}{type=superscript,name=n,description={n}} 
\newglossaryentry{o}{type=subscript,name=o,description={o}} 
\newglossaryentry{p}{type=superscript,name=p,description={p}} 
\newglossaryentry{q}{type=subscript,name=q,description={q}} 
\newglossaryentry{r}{type=superscript,name=r,description={r}} 
\newglossaryentry{s}{type=subscript,name=s,description={s}} 
\newglossaryentry{t}{type=superscript,name=t,description={t}} 
\begin{document} 
\gls{a} 
\gls{b} 
\gls{c} 
\gls{d} 
\gls{e} 
\gls{f} 
\gls{g} 
\gls{h} 
\gls{i} 
\gls{j} 
\gls{k} 
\gls{l} 
\gls{m} 
\gls{n} 
\gls{o} 
\gls{p} 
\gls{q} 
\gls{r} 
\gls{s} 
\gls{t}

\glstocfalse
\addchap{Symbole} 
\setupglossaries{section=section} 
\printnoidxglossary[type=superscript,style=long] 
\printnoidxglossary[type=subscript,style=long] 

\end{document}
Vielen Dank schonmal!

Verfasst: Mi 4. Mai 2016, 10:51
von Noch so einer
\usepackage[toc,nonumberlist,acronyms,nopostdot]{glossaries}
\renewcommand*{\glossarymark}[1]{}% neu 

Verfasst: Mi 4. Mai 2016, 11:03
von user1000
Top, Danke!