Lista actual de vectores muy bien alineados.

Lista actual de vectores muy bien alineados.

Estoy escribiendo un archivo en el que tengo que presentar 14 vectores propios de (columna) de longitud 14 de una manera agradable. Hasta ahora lo he probado con align*el entorno, pero no obtengo los resultados deseados. Básicamente quiero tener una fila de 7 vectores uno al lado del otro y una segunda fila de otros 7 vectores (o todos en una fila si el espacio lo permite), pero ahora no sé cómo alinearlos entrada por entrada para que las longitudes verticales póngase en fila.

\documentclass[12pt]{article}

\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage{mathtools}
\usepackage{commath}
\usepackage[sc,osf]{mathpazo}
\usepackage{authblk}
\usepackage{calc}
\usepackage{tkz-graph}
\usepackage{tikz}

\begin{document}
    \begin{align*}
            \begin{pmatrix} 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ 0 \\ \frac{-1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 1 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0  \end{pmatrix}, 
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix},
        &   \begin{pmatrix} 0 \\ \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} \\ \frac{-1}{\sqrt{2}} \\ 0 \\ 0 \\ \frac{-1}{\sqrt{2}} \\ 1 \\ 0 \\ -1 \\ 0 \\ 0 \\ 0 \\ 0 \\0 \end{pmatrix} 
        % \begin{pmatrix}1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & -1 & 1 & 1 & 0 & 0 & 0\end{pmatrix}  \\
        % \begin{pmatrix}1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & -1 & 1 & 1 & 0 & 0 & 0\end{pmatrix}  
    \end{align*}

\end{document}

Respuesta1

Aquí hay un enfoque diferente que establece toda la colección de vectores en una matriz. Puede ajustar la separación de columnas ( \arraycolsep) para adaptarla a sus necesidades, según el espacio disponible en el bloque de texto.

ingrese la descripción de la imagen aquí

\documentclass{article}

\usepackage{amsmath,bm}
\usepackage[sc,osf]{mathpazo}

\setcounter{MaxMatrixCols}{20}% https://tex.stackexchange.com/q/95162/5764

\begin{document}

\[
  \bm{\epsilon} = 
    \begin{bmatrix}
      \bm{\epsilon}_1^T \\
      \\
      \vdots \\
      \\
      \bm{\epsilon}_{14}^T
    \end{bmatrix} =
    \setlength{\arraycolsep}{.8\arraycolsep}% Reduce array column separation by 20%
    \begin{bmatrix}
       1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 &  1 \\ %  1
       0 &  s &  0 & -s &  s & -s &  0 &  1 & -1 &  0 &  0 &  0 &  0 &  0 \\ %  2
       0 &  s &  0 & -s &  s & -s &  0 &  1 & -1 &  0 &  0 &  0 &  0 &  0 \\ %  3
       0 & -s &  1 &  s &  0 &  0 & -s &  1 &  0 &  1 &  1 &  0 &  0 & -1 \\ %  4
      -1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 &  1 &  1 &  0 &  0 & -1 \\ %  5
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ %  6
       1 &  s &  1 & -s &  0 &  1 &  s & -1 &  0 & -1 & -1 &  0 & -1 &  0 \\ %  7
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ %  8
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 & -1 &  0 &  1 \\ %  9
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ % 10
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ % 11
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ % 12
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1 \\ % 13
       1 &  s &  1 &  s &  0 &  0 & -s & -1 &  0 & -1 &  1 &  0 &  0 &  1    % 14      
   \end{bmatrix}
\]
where $s = 1/\sqrt{2}$.

\end{document}

información relacionada