对称矩阵

对称矩阵

您有什么解决方案可以正确放置快捷方式“sym”在对称矩阵中?

\documentclass{book}
\usepackage{amsmath}
\begin{document}
    \begin{equation}
    \begin{bmatrix}
    u,_1+x_3\theta_2,_1-x_2\theta_3,_1&\frac{1}{2}(v,_1-x_3
    \theta_1,_1-\theta_3) & \frac{1}{2}(w,_1+x_2\theta_1,_1+\theta_2)\\   
    \text{Sym.} & {0} & {0} \\ 
    {} & {} & {0} 
    \end{bmatrix}
    \end{equation}
\end{document}

[文本经过编辑,以适应更复杂的配置]

在此处输入图片描述

答案1

我认为有两种可能的方法。

\documentclass{article}
\usepackage{amsmath}
\usepackage{multirow}

\begin{document}
  \begin{equation}
    \begin{bmatrix}
      1 & 1 & 1 & 1 \\
        & 1 & 1 & 1 \\
        & \multirow{2}{*}{\makebox[0pt]{\text{sym.}}}  & 1 & 1 \\
        &   &   & 1 
    \end{bmatrix}
  \end{equation}
  \begin{equation}
    \begin{bmatrix}
      1 & 1 & 1 & 1 \\
        & 1 & 1 & 1 \\
        &   & 1 & 1 \\
        \multicolumn{2}{c}{\text{sym.}} & & 1 
    \end{bmatrix}
  \end{equation}
\end{document}

补充:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
  \begin{equation}
    \begin{bmatrix}
      u,_1+x_3\theta_2,_1-x_2\theta_3,_1&\frac{1}{2}(v,_1-x_3\theta_1,_1-\theta_3) & \frac{1}{2}(w,_1+x_2\theta_1,_1+\theta_2) \\
      & 0 & {0} \\
      \multicolumn{2}{c}{\text{\smash{\raisebox{1.5ex}{Sym.}}}} & {0} 
    \end{bmatrix}
  \end{equation}
\end{document}

相关内容