我有以下矩阵
\begin{pmatrix}
1 & 3 & 2 & 6 \\
4 & 1 & 8 & 2 \\
3 & 9 & 4 & 12 \\
12 & 3 & 16 & 4
\end{pmatrix}
我希望以某种方式标记第一行的“1”和“6”以及最后一行的“12”和“4”。要么用粗体字,要么放在小“方框”内,要么用其他方式(但颜色不能不同)。我希望读者清楚,这些是需要注意的组件。有人知道怎么做吗?
答案1
- 我做了数字加粗- 请参见我怎样才能获得粗体数学符号?。
- 为了彩色数字, 请参见在数学模式中为方程式添加颜色的更简单的方法?。
代码
\documentclass[]{article}
\usepackage{amsmath}
\usepackage{bm}
\begin{document}
% https://tex.stackexchange.com/questions/595
\begin{equation}
\begin{pmatrix}
\bm{1} & 3 & 2 & \bm{6} \\
4 & 1 & 8 & 2 \\
3 & 9 & 4 & 12 \\
\bm{12} & 3 & 16 & \bm{4}
\end{pmatrix}
\end{equation}
\end{document}
输出
答案2
另外三种可能性:
\documentclass[]{article}
\usepackage[svgnames]{xcolor}
\usepackage{mathtools}
\usepackage{bm}
\newcommand\ub[1]{\underbracket[0.4pt][1.5pt]{\mkern1mu#1\mkern1mu}}
\newcommand\hl[1]{\color{DarkGrey}{\bm{#1}}}
\begin{document}
\begin{equation}\setlength\fboxsep{2pt}
\begin{pmatrix}
\boxed{1} & 3 & 2 & \boxed{6} \\
4 & 1 & 8 & 2 \\
3 & 9 & 4 & 12 \\
\boxed{12} & 3 & 16 & \boxed{4}
\end{pmatrix}
\qquad
\begin{pmatrix}
\ub{1} & 3 & 2 & \ub{6} \\
4 & 1 & 8 & 2 \\
3 & 9 & 4 & 12 \\
\ub{12} & 3 & 16 & \ub{4}
\end{pmatrix}
\qquad
\begin{pmatrix}
\hl{1} & 3 & 2 & \hl{6} \\
4 & 1 & 8 & 2 \\
3 & 9 & 4 & 12 \\
\hl{12} & 3 & 16 & \hl{4}
\end{pmatrix}
\end{equation}
\end{document}