답변1
전체 열에 대해 이 프로세스를 자동화하려면 열 사양에 대한 액세스 권한이 필요합니다. 이는 불가능합니다.amsmath
'에스*matrix
환경. 대신에array
\color{red}
사양 을 사용하여 모든 항목 앞에 삽입하십시오 >{<prefix>}
.
\documentclass{article}
\usepackage{amsmath,array,xcolor}
\begin{document}
$
A = \begin{bmatrix}
a & b & c & d \\
a & b & c & d \\
a & b & c & d \\
a & b & c & d
\end{bmatrix} \qquad
\left[\begin{array}{@{} >{\color{red}}c c >{\color{red}}c c @{}}
a & b & c & d \\
a & b & c & d \\
a & b & c & d \\
a & b & c & d
\end{array}\right] = A
$
\end{document}
답변2
조금 더 쉬워졌습니다!
\documentclass[a4paper,11pt]{article}
\usepackage{amsmath}
\usepackage{color}
\begin{document}
\[
A =
\def\b{b}
\def\d{d}
\def\a{\color{red}a}
\def\c{\color{red}c}
\begin{bmatrix}
\a & \b & \c & \d \\
\a & \b & \c & \d \\
\a & \b & \c & \d \\
\a & \b & \c & \d \\
\end{bmatrix}
\]
\end{document}
답변3
기반수학 기호를 색칠하는 방법은 무엇입니까?또는수학 모드에서 방정식에 색상을 추가하는 더 간단한 방법은 무엇입니까?("수학 컬러 라텍스"를 검색했습니다.).
\documentclass[a4paper,11pt]{article}
\usepackage{amsmath}
\usepackage{xcolor}
\begin{document}
\begin{equation}
A = \begin{bmatrix}
\textcolor{red}{a} & b & \textcolor{red}{c} & d \\
\textcolor{red}{a} & b & \textcolor{red}{c} & d \\
\textcolor{red}{a} & b & \textcolor{red}{c} & d \\
\textcolor{red}{a} & b & \textcolor{red}{c} & d \\
\end{bmatrix}
\end{equation}
\end{document}