如何在表格单元格中添加颜色箭头?

如何在表格单元格中添加颜色箭头?

我想在我的表格中分别用绿色和红色箭头替换每个 + 和 - ,如下表所示:

在此处输入图片描述

我的表格代码:

\begin{center}
\begin{tabular}{ |c|c|c| } 
 \hline
 50 & 30.5 & +19.50 \\ 
 10 & 20 & -10.00 \\ 
 33 & 11 & +20.00 \\ 
 \hline
\end{tabular}
\end{center}

提前谢谢你的帮助。

答案1

像这样?

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{xcolor}

\newcommand{\greenup}{\textcolor{green}{$\uparrow$}}
\newcommand{\reddown}{\textcolor{red}{$\downarrow$}}
\begin{document}


\begin{center}
\begin{tabular}{ |c|c|c| } 
 \hline
 50 & 30.5 & \greenup 19.50 \\ 
 10 & 20 & \reddown  10.00 \\ 
 33 & 11 & \greenup 20.00 \\ 
 \hline
\end{tabular}
\end{center}

\end{document}

或使用fontawesome图标:

在此处输入图片描述

\documentclass{article}
\usepackage{fontawesome}
\usepackage{xcolor}

\newcommand{\greenup}{\textcolor{green}{\faArrowUp}}
\newcommand{\reddown}{\textcolor{red}{\faArrowDown}}
\begin{document}


\begin{center}
\begin{tabular}{ |c|c|c| } 
 \hline
 50 & 30.5 & \greenup 19.50 \\ 
 10 & 20 & \reddown  10.00 \\ 
 33 & 11 & \greenup 20.00 \\ 
 \hline
\end{tabular}
\end{center}

\end{document}

相关内容