3

I'm using the package marvosym and the triangle symbol \Rewind with \marginpar. To draw attention to the symbol, I would like to have it be in red. How do I do this?

Rico
  • 6,097

1 Answers1

3

Load the xcolor package, and use \textcolor{red}{\Rewind}. For more information, [here] is a good reference.

Code

\documentclass{article}

\usepackage{marvosym}
\usepackage{xcolor}

\begin{document}

\textcolor{red}{\Rewind}

\end{document}

Result

enter image description here