is it even possible to have use \begin{split} when ntheorem is used?
even a silly example like
Code: Select all
\[
\begin{split}
a & = b \\
& = c \\
& = d
\end{split}
\]

Code: Select all
\[
\begin{split}
a & = b \\
& = c \\
& = d
\end{split}
\]
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
(i did modify according to the link)amsthm.sty conflicts with the definition of theorem layouts in theorem.sty, some
features of amsthm.sty have been incorporated into option [amsthm] which has to
be used instead of \usepackage{amsthm}.
Code: Select all
\usepackage{amsmath}
\usepackage[amsmath,amsthm]{ntheorem}
Code: Select all
\usepackage{amsthm}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis