如何将两个徽标放在页面同一行、相对两侧、水印之上?

如何将两个徽标放在页面同一行、相对两侧、水印之上?

我正在使用考博课程,我无法让标题页看起来像我想要的那样。

我为你制作了一个最小工作示例,您可以轻松地在 overleaf 上进行编译。我希望第一页看起来像这样:

  1. 在第 1 页上,两个 Disney 标志位于同一行,且位于页面的相对两侧(左/右)。
  2. 底部有星图作为背景的水印,位于第 1 页。
  3. 第三页的标题文字位于水印上方和徽标下方,第 1 页。

你知道该怎么做吗?

谢谢!

答案1

尝试这个简化的例子。

使用

\titlehead{%
    \includegraphics[height=2.7cm,keepaspectratio]{logo1.jpg}\hfill\includegraphics[height=5cm,keepaspectratio]{logo2.png}
}

\SetWatermarkText{\tikz{\node[opacity=0.2]{\includegraphics[width=35cm,angle=30]{watermark_blurred.png}}}}

\maketitle

A

% !TeX TS-program = pdflatex

\documentclass[
    a4paper,
    fontsize=11pt, 
    twoside=true,
    numbers=noenddot, 
]{kaobook}

\usepackage[firstpage]{draftwatermark}
\SetWatermarkLightness{1}
\SetWatermarkScale{1.6}

\usepackage[framed=true]{kaotheorems}

\usepackage[english]{babel}

\usepackage{kaorefs} % must be the last <<<<<<<<<<<<

\usepackage{kantlipsum} % dummy text <<<<<

\begin{document}

%------------------------
\titlehead{% added <<<<<<<<<<<<<<<<<<<<<<<<<<<<
    \includegraphics[height=2.7cm,keepaspectratio]{logo1.jpg}\hfill\includegraphics[height=5cm,keepaspectratio]{logo2.png}
}

\subject{
\textit{This goes above the title}}

\title[]{\fontsize{50}{1}\selectfont This is the title}

\author[This is the author]{This is the author}

\date{\today}

\frontmatter 
\SetWatermarkText{\tikz{\node[opacity=0.2]{\includegraphics[width=35cm,angle=30]{watermark_blurred.png}}}}% added <<<<<<<<<<<<<<<<<<<<<<<<<<<<
\maketitle

\pagelayout{wide}

\mainmatter 
\setchapterstyle{kao}

\chapter{First}

\kant[1-7]

\end{document}

相关内容