I am designing a titlepage for my report and I am a bit confused in deciding to use either \par\vspace{2cm}\noindent or \\[2cm] (for example).
Shortly speaking, what are the differences between \par\vspace{2cm}\noindent and \\[2cm]? When do we have to only use one rather than the other one?
If MWE is really needed, see the following.
\documentclass[12pt]{book}
\usepackage[a4paper,margin=25mm,showframe=true]{geometry}
\usepackage{graphicx}
\usepackage{palatino}
\begin{document}
\begin{titlepage}
\bfseries
\begin{center}
{\LARGE \sffamily Dissertation} \\[15mm]
{\large ``The simplest proof of the last theorem of Fermat''}\\[5mm]
{\itshape A proof that elementary students can understand}
\vspace{2cm}
\includegraphics[scale=.5]{mit-logo}%http://mindenfele.nolblog.hu/files/2014/04/mit_crest_logo.jpg
\vspace{2cm}
{\LARGE \sffamily Donut E. Knot}
\vfill
\begingroup
\large \sc
Deparment of Mathematics \\[4mm]
Massachusetts Institute of Technology \\[4mm]
Boston, USA \\[4mm]
2014
\endgroup
\end{center}
\end{titlepage}
\end{document}

\pars in text. – Johannes_B Aug 28 '14 at 07:38\scshould be replaced by\scshape. – Joseph Wright Aug 28 '14 at 07:55centerenvironment, which has the consequence of not setting the final line at the bottom of the text block? Use\centering. – egreg Aug 28 '14 at 08:51