我需要让我的博士论文封面与我大学的一个愚蠢的 word 模板相匹配。虽然整个布局都设置得很好,但我无法按照要求将徽标/图片放在封面左上角(仅此而已!)。现在它位于封面中间。我正在报告类文档中使用标题功能。这实际上是我用 Latex 制作的第一个文档,所以我的 Latex 技能还不是顶级水平 :)
任何帮助都将不胜感激!谢谢。
\documentclass[12pt, twoside]{report}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{titlesec}
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\usepackage[latin1]{inputenc}
\usepackage[a4paper, width=150mm, top=23mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO, LE]{Fancy header}
\fancyfoot{}
\fancyfoot[LE, RO]{\thepage}
\fancyfoot[LO, CE]{Chapter \thechapter}
\fancyfoot[CO, RE]{John McClane}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\title{
{Fancy title}\\
{\large PhD dissertation}\\
\vspace{15mm}
\includegraphics[scale=1.5]{AUlogo}\\
\vspace{15mm}
{\large Faculty of Health}\\
{\small Department of Boring PhDs}
}
\author
{John McClane\\
Master of Disaster}
\date{May 2014}
\begin{document}
\maketitle
\end{document}
答案1
虽然我同意 Werner 的评论,即所引用的问题提供了各种出色的方法来实现这一点,但在这里我给出了另一种答案,其中图片相对于单词“Fancy Title”放置。尺寸\raisebox
(2 英寸)和\hspace
尺寸(2.2 英寸)可以调整以适应。2 英寸是“Fancy Title”顶部与图片底部之间的垂直间隙,而 2.2 英寸是图像右边缘与单词“Fancy title”右边缘之间的水平距离
\documentclass[12pt, twoside]{report}
\usepackage[demo]{graphicx}
\usepackage{enumitem}
\usepackage{titlesec}
\usepackage{stackengine}
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\usepackage[latin1]{inputenc}
\usepackage[a4paper, width=150mm, top=23mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO, LE]{Fancy header}
\fancyfoot{}
\fancyfoot[LE, RO]{\thepage}
\fancyfoot[LO, CE]{Chapter \thechapter}
\fancyfoot[CO, RE]{John McClane}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\title{
{\def\stackalignment{r}\def\useanchorwidth{T}%
\stackon[0pt]{Fancy title}{\smash{%
\raisebox{2in}{\includegraphics[scale=1.5]{AUlogo}}\hspace{2.2in}}}}\\
{\large PhD dissertation}\\
\vspace{15mm}
{\large Faculty of Health}\\
{\small Department of Boring PhDs}
}
\author
{John McClane\\
Master of Disaster}
\date{May 2014}
\begin{document}
\maketitle
\end{document}