这段代码有什么问题?

这段代码有什么问题?
 \begin{doublespace}
    \left( {\begin{array}{*{20}{cccc}}
            {\cosh \left[ {2t} \right]}&0&{\sinh \left[ {2t} \right]}&0\\
            0&{\cosh \left[ {2t} \right]}&0&{ - \sinh \left[ {2t} \right]}\\
            {\sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}&0\\
            0&{ - \sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}
            \end{array}} \right)    
    \end{doublespace}

答案1

在看到没有添加空格的排版结果后,我同意这样做会很不自然。有一个比尝试更简单的解决方案doublespace

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
\begin{pmatrix}
\cosh[2t] &  0         & \sinh[2t] &  0         \\[2ex]
0         &  \cosh[2t] & 0         & -\sinh[2t] \\[2ex]
\sinh[2t] &  0         & \cosh[2t] &  0         \\[2ex]
0         & -\sinh[2t] & 0         &  \cosh[2t]
\end{pmatrix}
\]

\end{document}

您有几个无用的牙套和\left\right币,我把它们移除了。

在此处输入图片描述

答案2

好的,我们开始吧。你至少需要做的就是切换到数学模式。

\documentclass{article}
\usepackage{amsmath}
\usepackage{setspace} 
\begin{document}

You seem to \emph{really} want local doublespace. Well, OK, here we go.
\begin{doublespace}
\[    \left( {\begin{array}{*{20}{cccc}}
            {\cosh \left[ {2t} \right]}&0&{\sinh \left[ {2t} \right]}&0\\
            0&{\cosh \left[ {2t} \right]}&0&{ - \sinh \left[ {2t} \right]}\\
            {\sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}&0\\
            0&{ - \sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}
            \end{array}} \right)    \]
\end{doublespace}           
However, I'd use a \verb|pmatrix| environment.
\begin{doublespace}
\[    \begin{pmatrix}
            {\cosh \left[ {2t} \right]}&0&{\sinh \left[ {2t} \right]}&0\\
            0&{\cosh \left[ {2t} \right]}&0&{ - \sinh \left[ {2t} \right]}\\
            {\sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}&0\\
            0&{ - \sinh \left[ {2t} \right]}&0&{\cosh \left[ {2t} \right]}
      \end{pmatrix}    \]
\end{doublespace}           
\end{document}

在此处输入图片描述

你确定你想要这样的东西吗?

相关内容