I'm beginning to force me to learn how to handle LaTeX and could fix all my issues by searching the web and all these helpful forums.
But now, guess what: I couldn't find a fix for my latest issue.
That's the point: I have some equations which should be in a list.
For Example:
Code: Select all
\begin{itemize}
\item \begin{array}{cll}&\texttt{isempty(rest(prefix(a,prefix(b,} empty \texttt{))))} &= \texttt{false}\\
\Leftrightarrow &\texttt{isempty(rest(prefix(a,[b])))} &= \texttt{false}\\
\Leftrightarrow &\texttt{isempty(rest([a,b]))} &= \texttt{false}\\
\Leftrightarrow &\texttt{isempty([b])} &= \texttt{false}\\
\Leftrightarrow &\texttt{false} &= \texttt{false}\; \checkmark
\end{array}
\item \begin{array}{cll}&\texttt{last(lead(postfix(a,postfix(b,} empty \texttt{))))} &= \texttt{b}\\
\Leftrightarrow &\texttt{last(lead(postfix(a,[b])))} &= \texttt{b}\\
\Leftrightarrow &\texttt{last(lead([b,a]))} &= \texttt{b}\\
\Leftrightarrow &\texttt{last([b])} &= \texttt{b}\\
\Leftrightarrow &\texttt{b} &= \texttt{b}\; \checkmark
\end{array}
\end{itemize}
Maybe it is a missusage like I did that...
Could you help me fix this?
Later in my script there are familiar issues, but I think I could fix this if this works.
Thanks in advice,
Tim