I'm currently writing my Master thesis and I'm in the final stage before submitting it. There are still some formating issues of which a few are severe :-/ I'm almost completely new to LaTeX and only had to start using it to write my thesis because it contains a lot of calculations. For these, I used the tabular expression to align them. It looks like this:
Code: Select all
\newenvironment{derivation}
{\vspace{8pt}\begin{tabular}[b]{p{0.3cm} p{0.2cm} p{15cm}}}
{\end{tabular}\vspace{8pt}}
\newcommand{\derstart}[1]{\\ \\ (#1) & $=$ &}
Code: Select all
\begin{derivation}
& & This is the first line\\
\derstart{1} This is the second line
\derstart{2} And this is the third one
\derstart{3} Sometimes, lines will be quite long and they need to break, which, of course, should not be a complete break (for the row), but only for the 'cell'. This is why I added p's to the definition of the derivation-environment, so I could use \\.
\derstart{$\alpha$} The final line sometimes needs a different symbol so I can better refer to it
\end{derivation}
Code: Select all
___ | _ | This is the first line
(1) | = | This is the second line
(2) | = | And this is the third one
(3) | = | Sometimes, lines will be quite long and they
_________ need to break, which, of course ...
(a) | = | The final line sometimes ...
Someone gave me the hint to use the enumeration environment instead, like this:
Code: Select all
\newenvironment{deri1}
{\begin{enumerate}[label={\arabic*~=}]}
{\end{enumerate}}
Do you have a recommendation what I could do?
Thanks a lot in advance for your time!