\fancyhdr 中的字幕

\fancyhdr 中的字幕

KOMA 類別允許標題 ( \title{}) 和副標題 ( \subtitle{})。我想製作一個自動插入兩者的標題。

在標準文章類別中,可以使用以下命令來實現標題\runtitle

\usepackage{fancyhdr}
\pagestyle{fancy}
    \fancyhf{} %clear header footer
    \fancyhead[L]{\today} 
    \fancyhead[R]{\runtitle} 

但有類似的\subtitle命令嗎?理想情況下:

\usepackage{fancyhdr}
\pagestyle{fancy}
    \fancyhf{} %clear header footer
    \fancyhead[L]{\today} 
    \fancyhead[C]{\runtitle}
    \fancyhead[R]{\runsubtitle} 

答案1

使用 KOMA 腳本包scrlayer-scrpage。我想這樣標題會變得非常擁擠。

InvictusKoma標題

\documentclass[headinclude]{scrbook}
\usepackage{scrlayer-scrpage}
\usepackage{blindtext}
\ihead{\today}
\makeatletter
\chead{\@title}
\ohead{\@subtitle}
\makeatother
\begin{document}
\title{The Wombats Journey}
\subtitle{Spring}
\author{Carl Capybara}
\maketitle
\Blinddocument
\end{document}

相關內容