I'm trying to make some line vertical-spaces in dedication. But, I couldn't find how.
Here is the code that I'm using:
\newenvironment{dedication}
{\clearpage % we want a new page
\thispagestyle{empty}% no header and footer
\vspace*{\stretch{1}}% some space at the top
\itshape % the text is in italics
\raggedleft % flush to the right margin
}
{\par % end the paragraph
\vspace{\stretch{3}} % space at bottom is three times that at the top
\clearpage % finish off the page
}
When I try this to get one empty lines. I get none.
\begin{dedication}
ABC \\ \\ DEF
\end{dedication}
And how do I please to change the font-style of John in this code:
\begin{dedication}
ABC \\ \\ DEF \\ \\
John
\end{dedication}
Thank you a lot!

ABC\\ \ \\ DEF. What font do you want?\textsl{}? – Sigur Mar 25 '14 at 00:43ABC\\[extra space] DEF. – Manuel Mar 25 '14 at 00:43