Text Formatting ⇒ Text positioning question
Text positioning question
Also, why can't I use \subtitle and \author in the title page area. They don't work for some reason.
And another thing, why can't I use an extended \title {} block with all kinds of lines in it as long as I
continue with \\.
I'm mainly interested in answering the first question, why does the presence of a line downwind in the document affect the lines above it? I now have trouble aligning the lines above it. Big trouble.
And even more importantly, it gets MUCH worse if I put in a \vspace{1.5cm} command in. It's a major hassle to me.
Using the vspace macro should not in any way affect the start of the line above it.
\begin{document}
\font\myfont=cmr12 at 42pt
\begin{titlepage}
\begin{center}
\myfont Title
\textbf{The Story of xxxxxxxxxxx, xxxxxxxxx, and xxxxxxxx}
\newline
\newline
\textbf{Author}
\end{center}
\end{titlepage
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Text positioning question

A line break is already missing between the title and the subtitle. In the instructions for creating a title page, a blank line is added using the
\par
command for this purpose.I'd like to suggest you to adapt the code snippet as follows:
Code: Select all
\documentclass{article}
\font\myfont=cmr12 at 42pt
\begin{document}
\begin{titlepage}
\centering% substitute for the center environment
\myfont Title\par
\textbf{The Story of xxxxxxxxxxx, xxxxxxxxx, and xxxxxxxx}
\vspace{\baselineskip}% replacement for the second \newline command
\textbf{Author}
\end{titlepage}
\end{document}
Text positioning question
I took your advice and used the vspace, baselineskip and paragraph command after the subtitle which I had forgotten to show you and it behaves perfectly well now - no more 3rd lines or images pushing the characters - not sure why it had done that so thanks, it works now. I just need to move the graphics down to match another version of the document that I have created in another word processor. Thank you, it looks nice now, sorry I was fatigued and mis-copied my latex code.Bartman wrote:Please create aminimal working example and mark it with code tags so that it can be tested directly.
A line break is already missing between the title and the subtitle. In the instructions for creating a title page, a blank line is added using the\par
command for this purpose.
I'd like to suggest you to adapt the code snippet as follows:
Code: Select all
\documentclass{article} \font\myfont=cmr12 at 42pt \begin{document} \begin{titlepage} \centering% substitute for the center environment \myfont Title\par \textbf{The Story of xxxxxxxxxxx, xxxxxxxxx, and xxxxxxxx} \vspace{\baselineskip}% replacement for the second \newline command \textbf{Author} \end{titlepage} \end{document}
Because I wanted more room until the graphics for later additions, I changed the \vspace{baselineskip} to \vspace{6\baselineskip}. I now realize I can also use \\[2in] too as a way of adding space vertically but I like the baselineskip.
I have removed the author as it is an autobiography - I don't really need to include the author, I guess it seems redundant since my name is mentioned in the subtitle?