Hi there,
I'm trying to do some course work with a question which has a three part solution, namely (a), (b), and (c).
What I want to do is type (a) so it appears on the left of the page, then use some sort of command so that the paragraph text then lines up to the right of the (a) throughout.
Then I want (b) to be on the left, and the answer to (b) to stay on the right of that (like it did for (a)) etc.
Any pointers would be really appreciated,
many thanks.
Text Formatting ⇒ Positioning text to left of (a)
Positioning text to left of (a)
Last edited by srengam on Wed Jul 06, 2011 8:33 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Positioning text to left of (a)
Hi srengam,
you could use an enumerate environment.
For example, define the labels in your document preamble:
Later in the document write your text:
Stefan
you could use an enumerate environment.
For example, define the labels in your document preamble:
Code: Select all
\renewcommand*{\theenumi}{\alph{enumi}}
\renewcommand*{\labelenumi}{(\theenumi)}
Code: Select all
\begin{enumerate}
\item text for (a)
\item text for (b)
\item ...
\end{enumerate}
LaTeX.org admin
Re: Positioning text to left of (a)
Stefan that's worked perfectly,
thank you so much.
thank you so much.