I want to align content that starts in the middle of a line and content that starts at the beginning of the next line (for a thesis Authorization to Submit page). E.g.:
Major Professor: ___________________________ Date: _________________
Professor Name, Ph.D.
An example I saw combined \indent and non-breaking spaces (backslash space). This is a little messy and difficult to get just right, since \indent adds a fixed space instead of jumping to an indent level (like MS Word).
Is there any way to jump to a fixed indent level (say, 2 inches into the body) in the middle of a line? Or is there a better way to do this?
This code illustrates the kind of thing I'm doing:
\noindent{}M\indent{}A\\
\indent{}B % does not line up!
I want something like:
\noindent{}M\fixindent{1in}A\\
\fixindent{1in}B % lines up!

tabular. – Mar 23 '14 at 00:47