在标题页添加彩色丝带和图像

在标题页添加彩色丝带和图像

我想在标题页的顶部添加彩色丝带(一个矩形框)和徽标图像。

文档的标题位于页面的中心,我希望它保留在那里。

至于丝带和图片,丝带应从页面左边缘(不是边距)延伸到页面宽度的 3/4 左右。徽标应放置在丝带的右侧,即页面宽度的剩余四分之一左右。这两个元素应距离页面顶部几厘米。

你知道我该如何实现这个目标吗?

我目前使用的是移动设备,但回家后可以在 Scribus 中制作模型。我知道我可以在 Scrib 中设计页面并将其包含在内,但我想知道如何在 Latex 中做到这一点。

答案1

使用该titling软件包,您可以获得如下标题页:

\documentclass[11pt,a4paper,twoside]{report}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[osf]{garamondx}
\usepackage[showframe, nomarginpar]{geometry}
\usepackage{adjustbox}
\usepackage{xcolor}

\usepackage{titling}
\title{About John Ford}
\author{The author}
\renewcommand\maketitlehooka{\centering\makebox[0pt]{\raisebox{-0.5\height}{\color{yellow}\rule{\dimexpr0.75\paperwidth}{2cm}}%
\makebox[\dimexpr 0.25\paperwidth]{\quad\adjincludegraphics[height =5cm, valign=c]{SheWore}}}}
 \setlength\droptitle {-5cm}
\pretitle{\vspace{3cm}\begin{center}\Huge\itshape\bfseries}
\posttitle{\end{center}\vskip2cm}
\preauthor{\begin{center}\LARGE}
\postauthor{\end{center}\vfill}%
\begin{document}

\maketitle

\end{document} 

在此处输入图片描述

相关内容