Tagged Questions
7
votes
6answers
227 views
How can “execute at begin node” be used with special characters like curly braces? (or: how to raise node content)
I'd like to define the following style:
test/.style={
execute at begin node={\raisebox\{-0.2cm\}\{},
execute at end node={\}}
}
and use it like
\documentclass{article}
\usepackage{tikz}
...
10
votes
2answers
234 views
Place TikZ coordinate or \zlabel at every (base)line
I'm currently adjusting the code shown in Test if a paragraph has a page break in it?
to support underlining and highlighting using TikZ similar as shown in Cool Text Highlighting in LaTeX, but ...