| 12345678910111213141516171819202122232425262728293031323334353637383940 | \begin{titlepage}    % ensure centering the title page by ignoring odd and even margin    \setlength{\oddsidemargin}{-1in}    \setlength{\evensidemargin}{-1in}    \setlength{\textwidth}{\paperwidth}    \vspace*{\fill}    % typesetting the title line    \noindent    \parbox{\textwidth}{\centering \bfseries \Huge        \formattedTitle    }    \vfill    \noindent    \parbox{\textwidth}{\centering \bfseries        \url{http://www.yiiframework.com/doc/guide}    }    \vfill    % typesetting authors    \noindent    \parbox{\textwidth}{\centering \Large        \formattedAuthors        \\ \vspace{1cm}        \formattedTranslators    }    \vspace*{\fill}    \noindent    \parbox{\textwidth}{\centering        This tutorial is released under the \href{http://www.yiiframework.com/doc/terms/}{Terms of Yii Documentation}.\\        \vspace{0.5cm}        Copyright 2014 Yii Software LLC. All Rights Reserved.    }\end{titlepage}
 |