如何在页眉中包含 \section*{...} 的标题?

如何在页眉中包含 \section*{...} 的标题?

我的论文遇到了一个问题。\section*{...} 如何用于页眉中的章节标题?

对于带有 \section{...} 的部分,我的定义按需要工作:

在此处输入图片描述

对于带有 \section*{...} 的部分,如果之前没有定义 \section,则根本不显示标题:

在此处输入图片描述

以及最后一节的标题(如果已经有 \section 的话):

在此处输入图片描述

这是一个最小的工作示例:

\documentclass[12pt,titelpage]{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{xcolor}
\usepackage[automark]{scrlayer-scrpage}

\setheadsepline[text]{.4pt}[\color{black}]
\lehead*{\headmark}
\lohead*{\headmark}

\begin{document}
    \newpage
    \addcontentsline{toc}{section}{Abstrakt} %Add it to the ToC
    \section*{Abstrakt} %Using * so its not considert for numberd section-structure 
    some text
\end{document}

我需要添加什么?可以手动设置标题吗?

答案1

添加\markboth{Abstrakt}{Abstrakt}section*标题。

在此处输入图片描述

\documentclass[12pt,titelpage]{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{xcolor}
\usepackage[automark]{scrlayer-scrpage}

\setheadsepline[text]{.4pt}[\color{black}]
\lehead*{\headmark}
\lohead*{\headmark}

\usepackage{kantlipsum}% ONLY for the dummy text <<<

\begin{document}
    \newpage
    \addcontentsline{toc}{section}{Abstrakt} %Add it to the ToC
    \section*{Abstrakt \markboth{Abstrakt}{Abstrakt}} %Using * so its not considert for numberd section-structure 
    \kant[1-6]
\end{document}

相关内容