[Tex/LaTex] Title page line spacing in Latex

line-spacing

I use this code on my title page:

{\large {Some College \\ Some Place \\ Some City}} \par}

The first two lines get normal spacing, but the third line gets little more bigger spacing. How can I have equal space between all the three lines?

Best Answer

compare:

\documentclass[12pt]{article}
\parindent=0pt
\begin{document}

{\large {Some College \\ Some Place \\ Some City}} \par

\bigskip
{\large {Some College \\ Some Place \\ Some City} \par}% the inenr {} are useless

\bigskip
{\large Some College \\ Some Place \\ Some City \par}

\end{document}
Related Question