March 2011
Beginner
336 pages
7h 42m
English
We could enhance our texts further by colors. We didn't deal with it yet, because most people use LaTeX for writing serious books and articles, or letters where too much color may harm the appearance. But why not try something fancy? For instance, diagrams and tables in presentations are often colorful.
We just need to load the color package:
\usepackage{color}From now on, we have to use a command to set the text color:
\color{name} is a declaration that switches to the color name. Just try \color{blue}.\textcolor{name}{text} is the corresponding command form, coloring just text. That's like {\color{name}}, not new for you.The package offers the command \definecolor
. Use this to mix your own colors. You may read it in the ...
Read now
Unlock full access