[Tex/LaTex] Space between lines

fontsizeline-spacing

I try to typeset title pages and use LARGE and bold for this. The problem is that the lines seem to be too close to each other. I think it looks bad. Is this the way it is supposed to be? Is there a better way to do this?

\begin{document}

\begin{center}
{\LARGE\bf An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective}\\[\baselineskip]

\end{center}


\end{document}

Edit: OK what I really wanted isa title page like the stuff below. I wanted to have space between the lines. This was the reason for baselineskip. And the whole reason for messing around with the font sizes are the descriptions by google scholar that tell pdf producers to use fonts in different sizes for title and author and rest.

\documentclass[11pt,a4paper,fleqn,draft]{article}

\begin{document}

\begin{center}
{\LARGE\bf An \textit{a priori} Typology of Sentential Negation from\\[1mm] an HPSG Perspective}\\[\baselineskip]

{\large Joshua Crowgey}\\[\baselineskip]
University of Washington\\[3\baselineskip]

                Proceedings of the HPSG 2012 Conference\\[\baselineskip]

Department of Linguistics, Chungnam National University Daejeon, South Korea\\[\baselineskip]

                        Stefan M{\"u}ller (Editor)\\[\baselineskip]

                                2012\\[\baselineskip]

                          CSLI Publications\\[\baselineskip]

              http://csli-publications.stanford.edu/

\end{center}

\newpage

\end{document}

Best Answer

Insert \par inside the {\LARGE...} group and remove the line break at the end, since "There's no line here to end." Or, just drop the group formatting entirely, letting the font selection be scoped by the center environment:

enter image description here

\documentclass{article}
\begin{document}

\begin{center}
{\LARGE\bfseries An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective}
\end{center}

\begin{center}
\LARGE\bfseries An \textit{a priori} Typology of Sentential Negation from an HPSG Perspective
\end{center}

\end{document}​

The motivation here is that TeX only sets a paragraph once it's fully read it. So, without a blank line or an indication like \par the paragraph isn't set correctly with the change in \baselineskip.

Please note that the \it, \bf, etc. font macros are deprecated because they do not use the new font selection scheme introduced with LaTeX2e. Please use {\itshape ..}, {\bfseries ..} or \textit{..}, \textbf{..} instead. See Does it matter if I use \textit or \it, \bfseries or \bf, etc. and Will two-letter font style commands (\bf, \it, …) ever be resurrected in LaTeX? for more information.


With your updated post, here are some things to try, using the concepts described above:

enter image description here

\documentclass[11pt,a4paper,fleqn,draft]{article}
\usepackage{url}% http://ctan.org/pkg/url
\begin{document}

\begin{center}
  {\LARGE\bf An \textit{a priori} Typology of Sentential Negation from\par an HPSG Perspective\par}

  \bigskip

  {\large Joshua Crowgey\par}
  University of Washington

  \vspace*{3\bigskipamount}

  Proceedings of the HPSG 2012 Conference

  \bigskip

  Department of Linguistics, Chungnam National University Daejeon, South Korea

  \medskip

  Stefan M{\"u}ller (Editor)

  \medskip

  2012

  \medskip

  CSLI Publications

  \medskip

  \url{http://csli-publications.stanford.edu/}
\end{center}

\newpage

\end{document}​