列数奇数的矩阵或表格

列数奇数的矩阵或表格

我想要实现如下目标:

过渡矩阵

有没有办法在乳胶中实现这一点?谢谢你的帮助。

答案1

根据你提供的信息,blkarray可以做这个工作:

在此处输入图片描述

\documentclass{article}
\usepackage{blkarray}% http://ctan.org/pkg/blkarray
\newcommand{\idxsize}{\scriptstyle}
\begin{document}
\[
  \begin{blockarray}{crcc}
    & & \rlap{\phantom{0}\hspace{.5\arraycolsep}$\idxsize j$}  &  \\
    & & \idxsize 0 & \idxsize 1 \\
    \begin{block}{cr[cc]}
      \relax\raisebox{-.5\normalbaselineskip}[0pt][0pt]{$\idxsize j-1$} & \idxsize 0 & a & b \\
      & \idxsize 1 & c & d \\
    \end{block}
  \end{blockarray}
\]
\end{document}

更多矩阵式结构可在命令在哪里\matrix

答案2

第二种选择是通过tikz-cd

在此处输入图片描述

代码

\documentclass[margin=10pt,varwidth]{standalone}

\usepackage{amssymb,amsmath}
\usepackage{tikz-cd}
\begin{document}

\begin{tikzcd}[row sep=tiny,column sep=tiny]
     &     &    &                    &   & j &    &\\
     &     &    &                    & 0 &   & 1  &\\
     &     &    & \arrow[draw=none]{}&   &   &    &\arrow[draw=none]{}\\
     &     & 0  &                    & a &   & b  &\\
j-1  &     &    &                    &   &   &    &\\
     &     & 1  &                    & c &   & d  &\\
     &     &    & \arrow[dash]{uuuu} &   &   &    &\arrow[dash]{uuuu}\\
\end{tikzcd}

\end{document}

相关内容