Others ⇒ change colors in SW
change colors in SW
I have a question about handling colors (in the pdf document generated) in SW.
1 - How can I change the default black color
2 - how can I only change the color of a sentence leaving the remaining part as default (black)
thank you
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
change colors in SW

if not, a very simple way is to load the "color" package, then enter a latex field with the colour you want. The colour of the text will stay like that until you invoke another colour, e.g
Code: Select all
\color{red}
this text is red
\color{black}
goes back to black
\color{green}
and now turns green
Hope this helps
p