Como escrever matriz e seu código fonte usando exemplo cnltx

Como escrever matriz e seu código fonte usando exemplo cnltx

Eu quero obter a saída da matriz

\begin{pmatrix}
\frac{1}{2} & 0 & \frac{9}{5} \\
-2 & \frac{2}{3} & -\frac{1}{4} \\
12 & 0 & \frac{11}{7} \\
\end{pmatrix}

junto com o código exibido lado a lado usando

\begin{example}[side-by-side]
\end{example} 

com cnltx-examplepacote. Quando vou compilar (com amsartdocumentclass) isso, dá um erro. Como consertar isto?

Aqui está meu código

\documentclass{amsart}
\usepackage{amsmath,amsthm,amssymb,amsxtra,amsopn}
\usepackage{cnltx-example}

\begin{document}

\begin{example}[side-by-side]
  Consider the following example.
  \[ (x + y)^2 = x^2 + 2xy + y^2\]
\end{example}

%The following gives an error at the time of compiling
\begin{example}[side-by-side]
  Consider the following matrix.
$\begin{pmatrix}
\frac{1}{2} & 0 & \frac{9}{5} \\
-2 & \frac{2}{3} & -\frac{1}{4} \\
12 & 0 & \frac{11}{7} \\
\end{pmatrix}$
\end{example}

\end{document}

Responder1

Aparentemente, cnltx-examplerequer um recuo do código com dois espaços:

\documentclass{amsart}
\usepackage{amssymb}
\usepackage{cnltx-example}

\begin{document}

\begin{example}[side-by-side]
  Consider the following example.
  \[ (x + y)^2 = x^2 + 2xy + y^2\]
\end{example}

%The following gives an error at the time of compiling
\begin{example}[side-by-side]
  Consider the following matrix.
  $\begin{pmatrix} \frac{1}{2} & 0 & \frac{9}{5} \\
  -2 & \frac{2}{3} & -\frac{1}{4} \\
  12 & 0 & \frac{11}{7} \\
  \end{pmatrix}$
\end{example}

\end{document}

insira a descrição da imagem aqui

informação relacionada