标题页中有更多文本选项

标题页中有更多文本选项

您好,我如何在标题页中添加更多文本选项,例如入学编号和学院?以下是 MWE:

\documentclass[11pt]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{babel}

\begin{document}
%\titlehead{\centering\includegraphics[width=10cm]{3_Abbildungen/Deckblatt/logohs}}

\begin{center}
    Institut für Duale Studiengänge
\end{center}

\subject{Bachelorarbeit}
\title{Title}
\author{Me}
\date{6. April bis 1. Juni 2021}
\publishers{Erstprüfer: xxx\\Zweitprüfer: yyy}
\maketitle
\end{document}

谢谢你们。

答案1

像这样吗?

\documentclass[11pt]{scrreprt}

\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{graphicx} % <===============================================


\begin{document}

\titlehead{% <==========================================================
  {\Large Institut für Duale Studiengänge}\hfill%
  \includegraphics[width=3cm]{example-image}}

\subject{Bachelorarbeit}
\title{Title}
\author{Me}
\date{6. April bis 1. Juni 2021}
\publishers{Erstprüfer: xxx\\Zweitprüfer: yyy}
\maketitle
\end{document}

结果如下:

生成的 pdf

要将入学号码放入标题中,请将命令更改\titlehead

\titlehead{% <==========================================================
  {\Large Institut für Duale Studiengänge}\hfill%
  \Large 123456789}

相关内容