For some reason I have to edit a tex file exported from Scientific Word, which has the line
\input{tcilatex}
I downloaded tcilatex.tex from here. However, everything works fine until I try to use cases environment inside an align, or align*.
A toy example
\documentclass{article}
\usepackage{amsmath}
\input{tcilatex}
\begin{document}
\begin{align}
a = \begin{cases}
b\\c
\end{cases}
\end{align}
\end{document}
Compiling this file gives a lot of errors...
I noticed in the file I am editting, it seems Scientific Word has avoided the align environment and uses eqnarray which is advised as inferior.
Is this problem reproducible for you? If yes, what can be done to solve this problem? If not, what is the correct tcilatex.tex I should get?
tcilatex.texredefines several macros fromamsmath, so they cause conflicts. – egreg Feb 10 '15 at 11:46tcilatex? As @egreg points out, much of it seems to be definitions of macros fromamsmath. I suggest commenting out\input{tcilatex}. Then copy and paste any parts that are required into the preamble of your document. – Ian Thompson Feb 10 '15 at 11:49