Predefining colors for in-text coloring
Show older comments
Hi all
I am using the latex approach to coloring segments of e.g. a title. For example:
figure
plot(rand(10,1),'.')
title('{\color{red}this is red} and {\color{blue}this is blue}')
However, it appears that only 8 predefined colors are available automatically in Matlab. How do I expand this number, or ideally predefine color names using rgb codes myself?
Cheers
Jakob
Accepted Answer
More Answers (1)
Image Analyst
on 25 Jun 2014
Why don't you just try the 'Color' option and put in RGB colors inthe range 0-1
title('This is the title', 'Color', [0.1, 0.3, 0.5]);
1 Comment
Jakob Sievers
on 25 Jun 2014
Categories
Find more on Labels and Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!