在乳胶中创建标题页

在乳胶中创建标题页

我需要创建给定格式的标题页

                           **(Title of the Thesis)**

                                  Thesis

            Submited in partial fulfilment of the requirements of

                           BITS C421T/42T Thesis

                                    By

                                  (Author)

                                  ID No. ( )

                         Under the supervision of

                          ---------------------- 
                    (Name and Designation of Supervisor)

                              Instiute emblem

        BIRLA INSTITUTE OF TECHNOLOGY AND SCIENCE, PILANI (RAJASTHAN)

                                  (Date)

我是 Latex 的新手,但总是搞砸。我尝试使用命令 \center 将线条居中,但即使这样也不起作用。我应该如何创建上述标题页?此外,如何在标题页中嵌入图像?

答案1

有更好的方法可以做到这一点,但如果时间至关重要并且你并不真正关心大多数细节......

\documentclass{article}
\begin{document}
\begin{center}
\thispagestyle{empty}
\parskip=14pt%
\vspace*{3\parskip}%
**(Title of the Thesis)**

Thesis

Submited in partial fulfilment of the requirements of

BITS C421T/42T Thesis

By

(Author)

ID No. ( )

Under the supervision of

\rule{7cm}{0.4pt}\\
(Name and Designation of Supervisor)

Instiute emblem

BIRLA INSTITUTE OF TECHNOLOGY AND SCIENCE, PILANI (RAJASTHAN)

(Date)
\end{center}
\newpage

Rest of file.

\end{document}

相关内容