Last active
May 3, 2020 07:33
-
-
Save andrewfowlie/dc3fd7f84f36b990a1b54cc91e809b20 to your computer and use it in GitHub Desktop.
LaTeX package for highlighting text that looks like a hand-drawn highlighter pen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\NeedsTeXFormat{LaTeX2e}[1994/06/01] | |
\ProvidesPackage{highlight}[2017/09/13 Highlight] | |
% All credit to https://tex.stackexchange.com/a/6029/35729 | |
\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@ | |
} | |
\endinput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment