\subtitle в fancyhdr

\subtitle в 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-script scrlayer-scrpage. Думаю, тогда заголовок будет довольно перегружен.

invictusKomaHeader

\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}

Связанный контент