Whenever I build my output, I always get the font of the text similar to black, but not exactly black, more like gray. I am not changing any default property for color.
Attached you can see a comparison, the left "L" I created it by using the package color, and the right "L" is the default output. As you can see, the right "L" look more like gray in comparison with the left hand.
Any idea why?. I would like that always the text is generated in black like the left "L". Is there a way to set the default font color to black?, since it looks like gray.
This is what I am using (I am using Texniccenter):
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage{color}
\begin{document}
\textcolor[rgb]{0,0,0}{L}
L\\
\textcolor[rgb]{0,0,0}{THIS IS BLACK} \\
THIS IS GRAY
\end{document}