我正在将大学徽标添加到标题页左侧,一直到底部。但是当我增加图片尺寸时,它会将已经存在的文本移到新的空白页中。我可以看到页面底部有很多空间。但我无法将徽标进一步向下移动。有什么建议吗?
这是标题页中的代码:
\title{Energy: \\Testing energy systems}
\author{authors xx}
\date{Februar 01, 2019}
\renewcommand\Authands{ and }
\renewcommand{\and}{\\}
\begin{document}
\begin{titlingpage}
\topmargin
\begin{center}
\line(1,0){415}\\
[3mm]
\huge{\textbf{Energy: \\Design of energy systems}}
\line(1,0){415}\\
\textsc{\Large Energy}\\
\textsc{\large School project}
\end{center}
\begin{figure}[H] %Frontpage picture
\includegraphics[width=140mm, height=90mm]{Figurer/Vindtunnel.jpg}
\centering
\end{figure} %Frontpage picture
\begin{figure}[b] % THIS IS THE LOGO I AM HAVING TROUBLE WITH
\begin{flushleft}
\includegraphics[width=70mm, height=20mm]{Figurer/ntnuloggis.pdf}
\end{flushleft}
\end{figure} % THIS IS THE LOGO I AM HAVING TROUBLE WITH
\centering
\begin{tabular}{ l | l }
\large{Trude Nervik} & \large{Tormod Hansen} \\
\large{Per Sandber} & \large{Nadia Nansen}
\end{tabular}
\end{titlingpage}
答案1
我会做这样的事情:
\documentclass[a4paper]{article}
\usepackage{titling}
\usepackage{graphicx}
\title{Energy: \\Testing energy systems}
\author{authors xx}
\date{Februar 01, 2019}
\begin{document}
\begin{titlingpage}
\centering
\hrulefill
{\huge\textbf{Energy: \\Design of energy systems}\\}
\hrulefill
\vfill
{\Large\textsc{Energy}\\}
{\large\textsc{School project}\\}
\vfill
\includegraphics[width=\textwidth]{example-image}
\vfill
{\large\begin{tabular}{ l | l }
Trude Nervik & Tormod Hansen \\
Per Sandber & Nadia Nansen
\end{tabular}}
\vfill
\raggedright
\includegraphics[height=20mm]{example-image}
\end{titlingpage}
\end{document}
需要注意的几点:
没有规则要求状态
\includegraphics
必须处于figure
环境中。\large
和类似的命令不采取一个论点:它们的声明仅受它们出现的范围的限制。\topmargin
不是一个间距命令,而是一个保存尺寸的参数。对图像同时指定
width
和是没有意义的,因为这会使图像失真。height
不要猜测尺寸:
\line(1,0){415}
具有任意长度,可能适合也可能不适合;同样,width=140mm
非常可疑。