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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p