LaTeX空行以及輸入矩陣(解決矩陣報錯)
阿新 • • 發佈:2018-12-01
Lax空行以及輸入矩陣
空行
空行可以使用
\\[2ex]
其中 2ex 可以隨便設為自己想要的距離。
輸入矩陣
輸入矩陣開始總是報錯,後來我發現是因為沒有什麼巨集包之類的,所以只需要引入巨集包就行了。
\documentclass{article} \usepackage{amsmath,xcolor} \usepackage{array} \makeatletter \renewcommand*\[email protected][1][*\[email protected] c]{% \hskip -\arraycolsep \let\@ifnextchar\
[email protected] \array{#1}} \makeatother \begin{document} \[ \begin{pmatrix}[cc|c] 1 & 2 & 3\\ 4 & 5 & 9 \end{pmatrix} \] \[ \begin{bmatrix}[*[email protected]{\quad}|@{\quad}>{\bf\color{red}}r] a & b & 1 & 4 \\ c & d & -2 & -3 \end{bmatrix} \] \end{document}
其中
\usepackage{amsmath,xcolor}
\usepackage{array}
\makeatletter
\renewcommand*\[email protected][1][*\[email protected] c]{%
\hskip -\arraycolsep
\let\@ifnextchar\[email protected]
\array{#1}}
\makeatother
這一段就是對矩陣巨集包的引入,只要引入後就可以使用\begin{bmatrix}進行矩陣輸入了。
參考
http://www.latexstudio.net/archives/6666.html
http://bbs.ctex.org/forum.php?mod=viewthread&tid=48308