标题页中的图像放置不正确

标题页中的图像放置不正确

我写的标题页如下:

\title{
    {\textbf{Structural Health Assessment\\
of Railway Bridges\\ 
 Using Computational Intelligence Techniques}
}
\author{\textbf{Sitesh Kumar Singh}\\
\vspace{.6cm}
 (Roll No.: 15CE91S02) \\
 \vspace{.6cm}
 Under the Supervision of \\
 \textbf{Prof. Nirjhar Dhang}
}\\
\vspace{1cm}
    {\includegraphics{university.jpg}\\
    {\large Department of Civil Engineering,\\
Indian Institute of technology, Kharagpur
}}
}

在输出的 pdf 文件中,“图像和部门名称”位于页面中间,而我希望它们位于页面底部,如上所述。请帮忙。

答案1

使用软件包的解决方案titling(删除showframe最终版本的几何选项):

\documentclass[a4paper,12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[vmargin=2.5cm, textwidth=15cm, bindingoffset=6mm, showframe]{geometry}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{float} 
\usepackage{setspace}
\usepackage{titling}
\renewcommand\maketitlehooka{}
\pretitle{\begin{center}\bfseries\Large \onehalfspacing}
\title{Structural Health Assessment\\
of Railway Bridges\\
 Using Computational Intelligence Techniques}%
\posttitle{\end{center}}
\preauthor{\bfseries\large\vspace{3.5cm}}
 \author{Sitesh Kumar Singh}%\\
 \postauthor{%
 \normalfont
\smallskip\par
 (Roll No.: 15CE91S02)\vspace{1.5cm} \\
Under the Supervision of\\[1ex]
\textbf{Prof. Nirjhar Dhang}
}

\date{}

\renewcommand\maketitlehookd{\vfill\centering\fbox{\includegraphics[scale=0.5]{kgp}}}

\begin{document}

\begin{titlingpage}
\setlength\droptitle{10ex}

\setlength{\parindent}{0pt} %\centering \maketitle\clearpage \end{titlingpage}

\end{document} 

enter image description here

相关内容