summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-05-10 23:48:55 +0000
committerKarl Berry <karl@freefriends.org>2011-05-10 23:48:55 +0000
commitfe904c57c96720d2d04b79d627263d8d6d73aa67 (patch)
tree1cf3e92ef93b01d8c9f9c4523bbd115fde77e92b /Master/texmf-dist/source/latex
parent87d005a775d5f5e67bb789b6f652deaf5f1afd27 (diff)
spot (10may11)
git-svn-id: svn://tug.org/texlive/trunk@22408 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex')
-rw-r--r--Master/texmf-dist/source/latex/spot/spot.dtx17
1 files changed, 10 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/spot/spot.dtx b/Master/texmf-dist/source/latex/spot/spot.dtx
index fde06a0c21d..cd8d2af9638 100644
--- a/Master/texmf-dist/source/latex/spot/spot.dtx
+++ b/Master/texmf-dist/source/latex/spot/spot.dtx
@@ -27,7 +27,7 @@
%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<package>\ProvidesPackage{spot}
%<*package>
- [2010/09/21 v1.0 Spotlight highlighting]
+ [2011/05/09 v1.1 Spotlight highlighting]
%</package>
%
%<*driver>
@@ -45,7 +45,7 @@
%</driver>
% \fi
%
-% \CheckSum{359}
+% \CheckSum{360}
%
% \CharacterTable
% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
@@ -164,6 +164,8 @@
%
% For a complete understanding of possible \meta{node options},
% please see the PGF/\TikZ\ documentation.
+% Of particular note is that |path fading=none| will eliminate the fading,
+% causing the node to \spot*[path fading=none]{overlap} surrounding text.
% To change the default behavior for subsequent calls to |\spot|,
% the following commands are provided.
%
@@ -208,10 +210,8 @@
% \spot*{E}
% & |\setspotlightstyle{star points=7}| \\
% & |\spot{C} \quad| \\
-% & |\resetspotlightstyle| \\
-% & |\spot{D} \quad| \\
-% & |\resetspotlightcolor| \\
-% & |\spot{E}| \\
+% & |\resetspotlightstyle \spot{D} \quad| \\
+% & |\resetspotlightcolor \spot{E}| \\
% \end{tabular}
% \end{quote}
% \resetspotlightcolor
@@ -411,10 +411,13 @@
%
% In Beamer, we will need hooks for running code at the beginning and end of each frame.
% The commands |\AtEveryBeginFrame| and |\AtEveryEndFrame| store commands to be run in every frame,
+% \changes{v1.1}{2011/05/09}{Fixed bug with Beamer's title command}
% while the command |\AtEndFrame| applies only to the current frame.
+% We repeat the last token of |\beamer@frameslide|, namely |\beamer@checkframetitle|,
+% so that |\beamer@frameslide| can still detect the presence of a frame title.
% \begin{macrocode}
\ifspot@beamer
- \g@addto@macro\beamer@frameslide{\spot@everybeginframe@hook}
+ \g@addto@macro\beamer@frameslide{\spot@everybeginframe@hook\beamer@checkframetitle}
% \end{macrocode}
% Whereas |\g@addto@macro| makes it easy to add
% |\spot@everybeginframe@hook| to the end of the |\begin{beamer@frameslide}| code,