标题页的对齐问题

标题页的对齐问题

这就是我想要实现的目标,

在此处输入图片描述

但我明白了,

在此处输入图片描述

使用这种语法,

\documentclass[14pt, a4paper]{article}
\setlength{\oddsidemargin}{0.5cm}
\setlength{\evensidemargin}{0.5cm}
\setlength{\topmargin}{-1.6cm}
\setlength{\leftmargin}{0.5cm}
\setlength{\rightmargin}{0.5cm}
\setlength{\textheight}{24.00cm}
\setlength{\textwidth}{15.00cm}
\parindent 0pt
\parskip 5pt
\pagestyle{plain}
\usepackage{graphicx}
\usepackage{hyperref}
\linespread{1.5}

\newcommand{\namelistlabel}[1]{\mbox{#1}\hfil}
\newenvironment{namelist}[1]{%1
\begin{list}{}
    {
        \let\makelabel\namelistlabel
        \settowidth{\labelwidth}{#1}
        \setlength{\leftmargin}{1.1\labelwidth}
    }
  }{%1
\end{list}}

\begin{document}

\begin{titlepage}
\begin{center}
  \bfseries
  \large MPhil/PhD SYNOPSIS
  \vskip.2in
  \textsc{\Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
 \end{center}

\vskip0.7in

%\begin{figure}[th]
 % \centering
 % \includegraphics[width=150pt]{uomlogo.PNG}
%\end{figure}

\vskip0.7in
\begin{minipage}{.40\textwidth}
  \begin{flushleft}
    \bfseries\large Submitted by \par \emph{}
    \vskip.2in
    \bfseries\large Supervisor \par \emph{}
    \vskip.2in
    \bfseries\large Co-Supervisor (if Any) \par \emph{}
  \end{flushleft}
\end{minipage}
\hskip.2\textwidth
\begin{minipage}{.40\textwidth}
  \begin{flushleft}
    \bfseries\large Name of the Scholar
    \vskip.2in
    \bfseries\large Dr./Mr. Name. \par \emph{\small Designation and Affiliation}
    \vskip.2in
    \bfseries\large Dr./Mr. Name. \par \emph{\small Designation and Affiliation}
  \end{flushleft}
\end{minipage}

\vskip1.3in
\begin{center}
  \bfseries
  \Large Department of ....

  \Large University of .....

  \large Session 2010-2012

\end{center}

\end{titlepage}



\end{document}

问题在于文本的对齐和样式。请提出建议,如何改进。

答案1

我会这样做:

\documentclass[14pt, a4paper]{article}
\setlength{\oddsidemargin}{0.5cm}
\setlength{\evensidemargin}{0.5cm}
\setlength{\topmargin}{-1.6cm}
\setlength{\leftmargin}{0.5cm}
\setlength{\rightmargin}{0.5cm}
\setlength{\textheight}{24.00cm}
\setlength{\textwidth}{15.00cm}
\parindent 0pt
\parskip 5pt
\pagestyle{plain}

\usepackage{array}

\usepackage{graphicx}
\usepackage{hyperref}
\linespread{1.5}

\newcommand{\namelistlabel}[1]{\mbox{#1}\hfil}
\newenvironment{namelist}[1]{%1
\begin{list}{}
    {
        \let\makelabel\namelistlabel
        \settowidth{\labelwidth}{#1}
        \setlength{\leftmargin}{1.1\labelwidth}
    }
  }{%1
\end{list}}

\begin{document}
\begin{titlepage}
\begin{center}
  \bfseries
  \large MPhil/PhD SYNOPSIS
  \vskip.2in
  \textsc{\Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
\end{center}

\vskip0.7in

\begin{center}% your figure here doesn't have to float, do not use figure environment
  \includegraphics[width=150pt]{example-image-a}
\end{center}
\vspace*{\fill}
\begin{tabular*}{\linewidth}{@{\extracolsep{\fill}}@{}ll@{}}
    \bfseries\large Submitted by &  \bfseries\large Name of the Scholar\\[-4pt]
    & \phantom{\emph{\small Designation and Affiliation}}\\[16pt]
    \bfseries\large Supervisor & \bfseries\large Dr./Mr. Name.\\[-4pt]
    & \emph{\small Designation and Affiliation}\\[16pt]
    \bfseries\large Co-Supervisor (if Any) & \bfseries\large Dr./Mr. Name.\\[-4pt]
    & \emph{\small Designation and Affiliation}
\end{tabular*}
\vspace*{\fill}
\begin{center}
  \bfseries\renewcommand{\arraystretch}{2}
  \begin{tabular}{c}
        \Large Department of ....\\
        \Large University of .....\\
        \large Session 2010-2012  
  \end{tabular}
\end{center}
\vspace*{\fill}
\hfill \textcopyright\ 2013 All rights reserved
\end{titlepage}
\end{document}

在此处输入图片描述

编辑: 如果您想强制标题位于一行而不改变字体大小,您可以使用\makebox[0pt]{...},但它不再与其余部分对齐。

我建议您将其保留为两行或放大标题页文本宽度。

我添加\usepackage{showframe}只是为了显示对齐。当然,您不能将其放入文档中。

\documentclass[14pt, a4paper]{article}
\setlength{\oddsidemargin}{0.5cm}
\setlength{\evensidemargin}{0.5cm}
\setlength{\topmargin}{-1.6cm}
\setlength{\leftmargin}{0.5cm}
\setlength{\rightmargin}{0.5cm}
\setlength{\textheight}{24.00cm}
\setlength{\textwidth}{15.00cm}
\parindent 0pt
\parskip 5pt
\pagestyle{plain}
\usepackage{showframe}
\usepackage{array}

\usepackage{graphicx}
\usepackage{hyperref}
\linespread{1.5}

\newcommand{\namelistlabel}[1]{\mbox{#1}\hfil}
\newenvironment{namelist}[1]{%1
\begin{list}{}
    {
        \let\makelabel\namelistlabel
        \settowidth{\labelwidth}{#1}
        \setlength{\leftmargin}{1.1\labelwidth}
    }
  }{%1
\end{list}}

\begin{document}
\begin{titlepage}
\begin{center}
  \bfseries
  \large MPhil/PhD SYNOPSIS
  \vskip.2in
  \makebox[0pt]{\textsc{\Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}}
\end{center}

\vskip0.7in

\begin{center}% your figure here doesn't have to float, do not use figure environment
  \includegraphics[width=150pt]{example-image-a}
\end{center}
\vspace*{\fill}
\begin{tabular*}{\linewidth}{@{\extracolsep{\fill}}@{}ll@{}}
    \bfseries\large Submitted by &  \bfseries\large Name of the Scholar\\[-4pt]
    & \phantom{\emph{\small Designation and Affiliation}}\\[16pt]
    \bfseries\large Supervisor & \bfseries\large Dr./Mr. Name.\\[-4pt]
    & \emph{\small Designation and Affiliation}\\[16pt]
    \bfseries\large Co-Supervisor (if Any) & \bfseries\large Dr./Mr. Name.\\[-4pt]
    & \emph{\small Designation and Affiliation}
\end{tabular*}
\vspace*{\fill}
\begin{center}
  \bfseries\renewcommand{\arraystretch}{2}
  \begin{tabular}{c}
        \Large Department of ....\\
        \Large University of .....\\
        \large Session 2010-2012  
  \end{tabular}
\end{center}
\vspace*{\fill}
\hfill \textcopyright\ 2013 All rights reserved
\end{titlepage}
\end{document}

在此处输入图片描述

相关内容