为什么描述列表中的 pmatrix 会破坏文档流?

为什么描述列表中的 pmatrix 会破坏文档流?

提供 MWE 的代码

\documentclass{article}

\usepackage{amsmath}

\usepackage[brazil]{babel}   
%\usepackage[latin1]{inputenc}  
\usepackage[utf8]{inputenc}  
% UTF-8 encoding is recommended by ShareLaTex

\title{MWE}

\begin{document} 

\maketitle

\section{Grande Resumo de Álgebra}

\begin{description}

\item[Igualdade de Matrizes] \hfill \\Duas matrizes são iguais se tem a mesma dimensão e elementos iguais.

\item[Matriz Transposta] \hfill \\Troca de posição as linhas e as colunas.\\
A = \begin{pmatrix} 3 & -2 & 4 \\ 1 & 3 & 7 \end{pmatrix}
\Rightarrow 
A' = \begin{pmatrix} 3 & 1 \\ -2 & 3 \\ 4 & 7 \end{pmatrix} 

A transposta da transposta é a matriz original.\\
(A^{t})^{t} = A

\item[Matriz Simétrica] \hfill \\Quando a transposta da matriz é a mesma matriz original, dizemos que a matriz é simétrica. A^{t} = A\\
A = \begin{pmatrix} 3 & 2 & 6 \\ 2& 10 & -7 \\ 6 & -7 & 9 \end{pmatrix} 

Toda Matriz Simétrica é quadrada.

\item[Matriz Diagonal] \hfill \\É uma matriz que contém zeros em todas as posições fora da diagonal.\\
A = \begin{pmatrix} 2 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 11 \end{pmatrix}

\end{description}

\end{document}

我想为什么我的描述列表中的文档流中断了,所以我注意到在我第一次出现矩阵后文档流就中断了。

你们知道如何解决或避免这种情况吗?我想写一个列表来总结一些数学科目,但我想在列表中写一些例子。我可以不用列表来做到这一点,但这会给我带来更多工作。

有任何想法吗?

谢谢您的帮助,加油!!

pmatrix 内部描述

答案1

问题是您需要将数学公式包含在内$...$\(...\)方程式和\[...\]显示方程式中。由于您没有这样做,您的代码无法编译(存在错误!),这会导致描述环境被破坏。

在样式方面,与其使用\\插入显式换行符,不如将相应的方程式置于显示模式。这样做会得到以下结果:

在此处输入图片描述

编辑 我建议\\\hfil使用枚举项包。如果您加载此包,则使用以下命令启动您的描述环境

\begin{description}[labelwidth=\textwidth]

将自动执行此操作。以下是更正后的代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage[brazil]{babel}
%\usepackage[latin1]{inputenc}
\usepackage[utf8]{inputenc}
% UTF-8 encoding is recommended by ShareLaTex

\begin{document}
\begin{description}[labelwidth=\textwidth]
  \item[Igualdade de Matrizes]
  Duas matrizes são iguais se tem a mesma dimensão e elementos iguais.

  \item[Matriz Transposta]
  Troca de posição as linhas e as colunas.
  \[ A = \begin{pmatrix} 3 & -2 & 4 \\ 1 & 3 & 7 \end{pmatrix}
  \Rightarrow
  A' = \begin{pmatrix} 3 & 1 \\ -2 & 3 \\ 4 & 7 \end{pmatrix}
  \]
  A transposta da transposta é a matriz original.
  \[(A^{t})^{t} = A\]

  \item[Matriz Simétrica]
  Quando a transposta da matriz é a mesma matriz original, dizemos que a matriz é simétrica. $A^{t} = A$
  \[A = \begin{pmatrix} 3 & 2 & 6 \\ 2& 10 & -7 \\ 6 & -7 & 9
  \end{pmatrix}\]

  Toda Matriz Simétrica é quadrada.

  \item[Matriz Diagonal]
  É uma matriz que contém zeros em todas as posições fora da diagonal.
  \[A = \begin{pmatrix} 2 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 11 \end{pmatrix}\]
\end{description}
\end{document}

相关内容