Recentemente fui indicadoDestaque de texto legal em LaTeXpara Tikz destacando-sublinhado.
Consegui modificar a resposta do Antal de acordo com minhas necessidades, mas não consigo o seguinte: gostaria que o destaque fosse desenhado no fundo do texto e não sobre ele, como está agora.
Preparei um MWE para explicar melhor o que quero dizer:
\documentclass{minimal}
\usepackage{soul}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing}
\makeatletter
\newcommand{\defhighlighter}[3][]{%
\tikzset{every highlighter/.style={color=#2, fill opacity=#3, #1}}%
}
\defhighlighter{yellow}{.5}
\newcommand{\highlight@DoHighlight}{
\fill [ decoration = {random steps, amplitude=1pt, segment length=15pt}
, outer sep = -15pt, inner sep = 0pt, decorate
, every highlighter, this highlighter ]
($(begin highlight)+(0,8pt)$) rectangle ($(end highlight)+(0,-3pt)$) ;
}
\newcommand{\highlight@BeginHighlight}{
\coordinate (begin highlight) at (0,0) ;
}
\newcommand{\highlight@EndHighlight}{
\coordinate (end highlight) at (0,0) ;
}
\newdimen\highlight@previous
\newdimen\highlight@current
\DeclareRobustCommand*\highlight[1][]{%
\tikzset{this highlighter/.style={#1}}%
\SOUL@setup
%
\def\SOUL@preamble{%
\begin{tikzpicture}[overlay, remember picture]
\highlight@BeginHighlight
\highlight@EndHighlight
\end{tikzpicture}%
}%
%
\def\SOUL@postamble{%
\begin{tikzpicture}[overlay, remember picture]
\highlight@EndHighlight
\highlight@DoHighlight
\end{tikzpicture}%
}%
%
\def\SOUL@everyhyphen{%
\discretionary{%
\SOUL@setkern\SOUL@hyphkern
\SOUL@sethyphenchar
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}{%
}{%
\SOUL@setkern\SOUL@charkern
}%
}%
%
\def\SOUL@everyexhyphen##1{%
\SOUL@setkern\SOUL@hyphkern
\hbox{##1}%
\discretionary{%
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}{%
}{%
\SOUL@setkern\SOUL@charkern
}%
}%
%
\def\SOUL@everysyllable{%
\begin{tikzpicture}[overlay, remember picture]
\path let \p0 = (begin highlight), \p1 = (0,0) in \pgfextra
\global\highlight@previous=\y0
\global\highlight@current =\y1
\endpgfextra (0,0) ;
\ifdim\highlight@current < \highlight@previous
\highlight@DoHighlight
\highlight@BeginHighlight
\fi
\end{tikzpicture}%
\the\SOUL@syllable
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}%
\SOUL@
}
\makeatother
\begin{document}
\highlight[yellow]{The highlight is drawn over the text}
\bigskip
\begin{tikzpicture}
\node[fill=yellow!50]{the highlight is drawn below text};
\end{tikzpicture}
\end{document}
É possível mover o destaque abaixo do texto como no preenchimento padrão para nós Tikz?
Responder1
Com esta solução, deixo a solução do OP no lugar e adiciono outra camada na forma de \Ohighlight
, na forma de
\newsavebox\tmpbox
\usepackage{tabto}
\newcommand\Ohighlight[2][]{%
\tabto*{0in}\edef\tmpx{\TabPrevPos}\tabto*{\tmpx}% SAVES THE CURRENT x POSITION
\savebox\tmpbox{% SETS THE TEXT, STARTING AT x, IN A SAVED MINIPAGE
\begin{minipage}[b]{\textwidth}
\tabto*{\tmpx}#2\strut%
\end{minipage}}%
{\color{\highlightcolor!0}\highlight[#1]{#2}}% STEP #1, BELOW
\vspace*{\dimexpr-\dp\tmpbox-\ht\tmpbox+\dp\strutbox}% STEP #2, BELOW
\tabto*{\tmpx}#2\unskip\ % STEP #3, BELOW
}
que tenta realizar o seguinte:
1) faça o original \highlight
, deixando o texto da mesma cor do destaque (também conhecido como invisível);
2) voltar ao local original (horizontalmente por meio de tabto
embalagem) e verticalmente por meio de \vspace
medição minipage
;
3) redigitar o texto, de forma clara, sobre o destaque anterior, o que deixa a posição da página onde deveria estar.
Esta solução foi EDITADA quando algumas diferenças de kerning foram observadas entre a saída \highlight
e o texto claro. O pré- \highlight
agora é feito em branco, para evitar a emissão de texto com traço duplo.
Essa abordagem não funcionará além dos limites da página. No MWE, funciona além dos limites dos parágrafos, mas imagino que a cola inserida em uma página poderia atrapalhar tudo, a menos que \raggedbottom
fosse usada.
O fato de terem sido observados alguns problemas de kerning que levaram a uma edição em meu código deixa aberta a possibilidade de que, em alguns casos, a \highlight
quebra de linha seja diferente do texto claro, o que obviamente representaria uma falha do método. Como o problema parecia relacionado a espaços em branco à direita, adicionar um \unskip\
ao texto final transparente (etapa 3) pareceu resolver o problema de kerning, mas não direi que ele não possa aparecer sob outro disfarce.
Se quiser verificar o problema de kerning, edite esta linha {\color{\highlightcolor!0}\highlight[#1]{#2}}%
para {\color{red}\highlight[#1]{#2}}%
, o que produzirá um traço duplo no texto. Se eles não corresponderem, você verá isso lá.
\documentclass{minimal}
\usepackage{soul}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing}
\makeatletter
\newcommand{\defhighlighter}[3][]{%
\tikzset{every highlighter/.style={color=#2, fill opacity=#3, #1}}%
}
\def\highlightcolor{yellow}
\defhighlighter{\highlightcolor}{.5}
\newcommand{\highlight@DoHighlight}{
\fill [ decoration = {random steps, amplitude=1pt, segment length=15pt}
, outer sep = -15pt, inner sep = 0pt, decorate
, every highlighter, this highlighter ]
($(begin highlight)+(0,8pt)$) rectangle ($(end highlight)+(0,-3pt)$) ;
}
\newcommand{\highlight@BeginHighlight}{
\coordinate (begin highlight) at (0,0) ;
}
\newcommand{\highlight@EndHighlight}{
\coordinate (end highlight) at (0,0) ;
}
\newdimen\highlight@previous
\newdimen\highlight@current
\DeclareRobustCommand*\highlight[1][]{%
\tikzset{this highlighter/.style={#1}}%
\SOUL@setup
%
\def\SOUL@preamble{%
\begin{tikzpicture}[overlay, remember picture]
\highlight@BeginHighlight
\highlight@EndHighlight
\end{tikzpicture}%
}%
%
\def\SOUL@postamble{%
\begin{tikzpicture}[overlay, remember picture]
\highlight@EndHighlight
\highlight@DoHighlight
\end{tikzpicture}%
}%
%
\def\SOUL@everyhyphen{%
\discretionary{%
\SOUL@setkern\SOUL@hyphkern
\SOUL@sethyphenchar
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}{%
}{%
\SOUL@setkern\SOUL@charkern
}%
}%
%
\def\SOUL@everyexhyphen##1{%
\SOUL@setkern\SOUL@hyphkern
\hbox{##1}%
\discretionary{%
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}{%
}{%
\SOUL@setkern\SOUL@charkern
}%
}%
%
\def\SOUL@everysyllable{%
\begin{tikzpicture}[overlay, remember picture]
\path let \p0 = (begin highlight), \p1 = (0,0) in \pgfextra
\global\highlight@previous=\y0
\global\highlight@current =\y1
\endpgfextra (0,0) ;
\ifdim\highlight@current < \highlight@previous
\highlight@DoHighlight
\highlight@BeginHighlight
\fi
\end{tikzpicture}%
\the\SOUL@syllable
\tikz[overlay, remember picture] \highlight@EndHighlight ;%
}%
\SOUL@
}
\makeatother
\newsavebox\tmpbox
\usepackage{tabto}
\newcommand\Ohighlight[2][]{%
\tabto*{0in}\edef\tmpx{\TabPrevPos}\tabto*{\tmpx}%
\savebox\tmpbox{%
\begin{minipage}[b]{\textwidth}
\tabto*{\tmpx}#2\strut%
\end{minipage}}%
{\color{\highlightcolor!0}\highlight[#1]{#2}}%
\vspace*{\dimexpr-\dp\tmpbox-\ht\tmpbox+\dp\strutbox}%
\tabto*{\tmpx}#2\unskip\ %
}
\textwidth=5in
\begin{document}
\highlight{The original highlight is drawn over the text.
The original definition works over...
Multi paragraphs, so my fix should try to as well.}
\bigskip
\begin{tikzpicture}
\node[fill=yellow!50]{with tikz, the highlight is drawn below text but not fancy};
\end{tikzpicture}
Now here is my fix. \Ohighlight{The highlight is drawn under the text}
Does it work multiline?
\Ohighlight[yellow]{The highlight is drawn under the text The highlight is drawn under the text The highlight is drawn under the text The highlight is drawn under the text
A new paragraph}
And more...
\Ohighlight{short}
\end{document}
A imagem abaixo mostra um zoom.