如何创建 3 行页脚?可以使用 {scrpage2} 吗?

如何创建 3 行页脚?可以使用 {scrpage2} 吗?

是否可以创建一个有 3 行的页脚。我已经问过一些人了,但我不明白,因为我是初学者。我对乳胶的了解很少。抱歉。此代码只是大量代码的一部分。对于我的文档,我必须使用以下部分:

\documentclass[11pt,a4paper,titlepage,bibtotoc]{scrreprt} and \usepackage[automark,plainheadsepline,headsepline,footsepline,plainfootsepline]{scrpage2}

我希望能有一个针对该软件包的解决方案。

在此处输入图片描述

\documentclass[11pt,a4paper,titlepage,bibtotoc]{scrreprt}
\usepackage{blindtext}
\usepackage[automark,plainheadsepline,headsepline,footsepline,plainfootsepline]{scrpage2}
\usepackage{mwe}
\pagestyle{scrheadings}
\ihead[{\includegraphics[height=14pt]{example-image-b}}]{{\includegraphics[height=14pt]{example-image-b}}}
%\ohead[\Dep]{\Dep}
%\ifoot[\jobname.pdf]{\jobname.pdf}
\ifoot[Datei:\\\jobname.pdf]{Datei:\\\jobname.pdf \\ helllooo}
\ofoot[\pagemark~ / \hspace*{0.1mm} \pageref{LastPage}]{\pagemark~ / \hspace*{0.1mm} \pageref{LastPage}}
\cfoot[\Dep]{\Dep}
\begin{document}
\Blindtext
\end{document}

上面您可以看到一个示例(Word 2007 屏幕截图)。

答案1

免责声明:这只是一个过时软件包的解决方法

请注意,该软件包scrpage2自 2013 年 12 月起就已过时,并且该选项bibtotoc已弃用至少 10 年!

解决方法是将页脚保持在页脚分隔线下方(假设是单面文档):

\documentclass[11pt,a4paper,titlepage,
  bibtotoc% deprecated for at least 10 years, should be replaced by bibliography=totoc
]{scrreprt}
\usepackage{mwe}% dummy text and example images
\usepackage{lastpage}
\usepackage[
  automark,
  headsepline,plainheadsepline,
  footsepline,plainfootsepline]
{scrpage2}% deprecated since December 2013, should be replaced by scrlayer-scrpage
\pagestyle{scrheadings}
\clearscrheadfoot
\ihead
  [{\includegraphics[height=14pt]{example-image-b}}]
  {{\includegraphics[height=14pt]{example-image-b}}}
\ifoot
  [\smash{\begin{tabular}[t]{@{}l}Datei:\\\jobname.pdf\end{tabular}}]
  {\smash{\begin{tabular}[t]{@{}l}first row\\second row\\third row\\fourth row\end{tabular}}}
\cfoot
  {first row}
\ofoot
  [\pagemark~ / \hspace*{0.1mm} \pageref{LastPage}]
  {\smash{\begin{tabular}[t]{r@{}}\\second row\\\\fourth row\end{tabular}}}
\begin{document}
\chapter{Example}
\Blindtext
\end{document}

在此处输入图片描述

相关内容