Text Formatting ⇒ Bicolor character
Bicolor character
I would like to have a character 'w' that is half green, half red.
Has anybody a clue for this issue?
Bye!
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
Bicolor character
Code: Select all
\documentclass{scrartcl}
\usepackage{tikz}
\newcommand\grletter[1]{%
\tikz[baseline=(l.base),inner sep=0pt,outer sep=0pt]{
\node[green](l){\phantom{#1}};
\begin{scope}
\clip(l.south)rectangle(l.north west);\node[green]at(l){#1};
\end{scope}
\begin{scope}
\clip(l.south)rectangle(l.north east);\node[red]at(l){#1};
\end{scope}
}%
}
\begin{document}
Text \grletter{w} Text \grletter{p}
\end{document}