I have a couple of questions concerning some formatting issues:
1. How can I custom align text? More specifically, suppose I wanna write this in Latex:
Code: Select all
For i=0 to 10, do
while j=0 to 5, do
If j=t+1, do
change t to t-1
Do other necessary modifications
End if
End while
End for
2. How can I align a set of equations to the left?
So, for instance the following code centers those 2 equations:
Code: Select all
\begin {flalign}
x=y+1 \\
\sum\limits_{s \in S} X_s =10
\end{flalign}
And how can I let any equation that begins with "==" be aligned with the previous "=" of the previous equation (not in the previous code)?
3. The following code leaves a wider big vertical space between the second enumeration and the italic word "Assumptions:" than the vertical space between the first enumeration and that same word:
Code: Select all
\begin{enumerate}
\item \textbf{Column Generation procedure}\\
\noindent \emph{Assumptions:}
\begin{enumerate}
\item No literature found!
\item The routing paper.
\end{enumerate}
\end{enumerate}
I'd really appreciate any help.
Thanks a lot.
Aly