Antwort1
Wenn Sie diesen Prozess für eine ganze Spalte automatisieren möchten, benötigen Sie Zugriff auf die Spaltenspezifikation. Dies ist nicht möglich überamsmath
'S*matrix
UmgebungenVerwenden Sie stattdessenarray
und fügen Sie \color{red}
vor jedem Eintrag mit der >{<prefix>}
Angabe ein:
\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}
Antwort2
Ein bisschen einfacher!
\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}
Antwort3
Bezogen aufWie färbt man mathematische Symbole?oderGibt es eine einfachere Möglichkeit, Gleichungen im Mathematikmodus Farbe hinzuzufügen?(Ich habe gegoogelt "Mathe Farbe Latex").
\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}