I am using the following:
Code: Select all
Some black text
\textcolor{red}{some red text}
Some more black text
I have observed this using the "color" package with document class of "article" and "report".
Any help is much appreciated.
Code: Select all
Some black text
\textcolor{red}{some red text}
Some more black text
NEW: TikZ book now 40% off at Amazon.com for a short time.
Perhaps you should use the xcolor package instead. The code below works flawlessly on a TeX Live 2010 system.bioalb wrote:[…] I have observed this using the "color" package with document class of "article" and "report". […]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{blindtext}
\usepackage[x11names]{xcolor}
\begin{document}
\blindtext[4]
\textcolor{red}{\blindtext[2]}
\blindtext[4]
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.