大学徽标位于标题页左侧下方

大学徽标位于标题页左侧下方

我正在将大学徽标添加到标题页左侧,一直到底部。但是当我增加图片尺寸时,它会将已经存在的文本移到新的空白页中。我可以看到页面底部有很多空间。但我无法将徽标进一步向下移动。有什么建议吗?

这是标题页中的代码:

\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}

在此处输入图片描述

需要注意的几点:

  1. 没有规则要求状态\includegraphics必须处于figure环境中。

  2. \large和类似的命令采取一个论点:它们的声明仅受它们出现的范围的限制。

  3. \topmargin不是一个间距命令,而是一个保存尺寸的参数。

  4. 对图像同时指定width和是没有意义的,因为这会使图像失真。height

  5. 不要猜测尺寸:\line(1,0){415}具有任意长度,可能适合也可能不适合;同样,width=140mm非常可疑。

相关内容