\bmatrix를 두 줄로 나누기

\bmatrix를 두 줄로 나누기

암호

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

$\bm{\mu^*}$ = 
\begin{bmatrix}
\begin{split}
17.0716 & 21.3746 & 31.2462 & 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093\\[0.3em]
\end{split}
\end{bmatrix}

산출

산출

질문

어떻게 수직 벡터를 두 줄로 나눌 수 있나요?

답변1

을 사용하는 것은 어떻습니까 smallmatrix?

여기에 이미지 설명을 입력하세요

암호:

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,bm}
\begin{document}
\[
\bm{\mu^*} =
[\begin{smallmatrix}
 17.0716 & 21.3746 & 31.2462 & 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093
\end{smallmatrix}]
\]
\end{document} 

답변2

다음은 세 가지 가능성입니다.

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,bm}


\begin{document}

%%%% reduce the intercolumn space
\noindent % to emulate a preceding text
the unrounded $\bm{\mu}^*$ vector is
\[\addtolength{\arraycolsep}{-2.5pt}
\bm{\mu}^* = 
\begin{bmatrix}
17.0716 & 21.3746 & 31.2462 & 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093
\end{bmatrix}
\]
obtained with $484$ experiments.

%%%% use split
\noindent % to emulate a preceding text
the unrounded $\bm{\mu}^*$ vector is
\[
\begin{split}
\bm{\mu}^* &= 
[\begin{matrix} 17.0716 & 21.3746 & 31.2462 & 34.2847 \end{matrix} \\
 &\qquad\qquad \begin{matrix} 37.0049 & 43.2856 & 50.8193 & 59.7093 \end{matrix}]
\end{split}
\]
obtained with $484$ experiments.

%%%% use multline
\noindent % to emulate a preceding text
the unrounded $\bm{\mu}^*$ vector is
\begin{multline*}
\bm{\mu}^* = 
[\begin{matrix} 17.0716 & 21.3746 & 31.2462 & 34.2847 \end{matrix} \\
 \begin{matrix} 37.0049 & 43.2856 & 50.8193 & 59.7093 \end{matrix}]
\end{multline*}
obtained with $484$ experiments.

\end{document}

여기에 이미지 설명을 입력하세요

답변3

나는 조옮김과 글을 제대로 쓰는 것 외에는 아무것도 하지 않을 것이다. 하지만 고집한다면...

\documentclass[]{article}
\usepackage{mathtools}
\begin{document}\noindent
The vector is given by

\begin{multline}
\mu^* = \left[ \begin{matrix}17.0716 & 21.3746 & 31.2462\end{matrix}\right. \\
        \left.\begin{matrix} 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093\end{matrix}
        \right]
\end{multline}
and we don't mind making the vector ugly. 
\end{document}

여기에 이미지 설명을 입력하세요

답변4

한 가지 가능한 방법은 다음과 같습니다.

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,bm}
\begin{document}
$\bm{\mu^*} =
\begin{array}{ccccc}
 \bigl[17.0716 & 21.3746 & 31.2462 & 34.2847  \\
 & 37.0049 & 43.2856 & 50.8193 & 59.7093 \bigr]
 \end{array}
$

\end{document}

여기에 이미지 설명을 입력하세요

원하는 경우 \begin{array}[t]{ccccc} (참고 [t])를 사용하여 얻을 수 있습니다.

여기에 이미지 설명을 입력하세요

관련 정보