summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-09-15 19:57:45 +0000
committerKarl Berry <karl@freefriends.org>2022-09-15 19:57:45 +0000
commit8a33cf80b49ed6e7bcd3c73cdaea6d45f41ab32a (patch)
tree3e8b803172b2775c8cfa48c691824849e0b205a0 /Master/texmf-dist
parent6503d03131756a0765a9692154b21c653999843c (diff)
ppt-slides (15sep22)
git-svn-id: svn://tug.org/texlive/trunk@64405 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdfbin227754 -> 229755 bytes
-rw-r--r--Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex16
-rw-r--r--Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty3
-rw-r--r--Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex14
4 files changed, 25 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdf b/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdf
index f845668cc9e..87d02b04322 100644
--- a/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdf
+++ b/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex b/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex
index 13b771cc754..d3ae36d0622 100644
--- a/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex
+++ b/Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex
@@ -29,7 +29,7 @@
\usepackage{textcomp}
\title{\LaTeX{} Package for Slide Decks \`a la PowerPoint\texttrademark}
\author{Yegor Bugayenko}
-\date{0.1.2 2022/09/12}
+\date{0.1.4 2022/09/15}
\pptLeft{\thetitle}
\pptRight{\href{https://github.com/yegor256}{@yegor256}}
@@ -158,6 +158,20 @@ If you don't use \ff{\char`\\pptLeft} or \ff{\char`\\pptRight}, nothing will
be printed at the bottom.
\clearpage
+\pptSection[Minutes]{Tracking Minutes}
+By default, if you render your slide deck in non-static mode (option \ff{static} for clicks package),
+there will be minutes tracking in the right top corner of each slide. You can turn this off
+by using \ff{nominutes} option of the package:
+\begin{ffcode*}{fontsize=\small}
+\documentclass{article}
+\usepackage{clicks}
+\usepackage[template,scheme=light,nominutes]{ppt-slides}
+\begin{document}
+...
+\end{document}
+\end{ffcode*}
+
+\clearpage
\pptSection[Wide]{Wide Slides}
Sometimes you need your slide content to take all visible horizontal space:
\begin{ffcode*}{fontsize=\scriptsize}
diff --git a/Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty b/Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty
index 026ee0abce0..37ef3f2adf0 100644
--- a/Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty
+++ b/Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty
@@ -21,7 +21,7 @@
% SOFTWARE.
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{ppt-slides}[2022/09/12 0.1.2 Slide Decks à la Power Point]
+\ProvidesPackage{ppt-slides}[2022/09/15 0.1.4 Slide Decks à la Power Point]
\RequirePackage{pgfopts}
\makeatletter
@@ -33,6 +33,7 @@
scheme/.estore in = \ppt@scheme,
directory/.estore in = \ppt@directory,
directory/.default = .,
+ nominutes/.estore in = \ppt@nominutes,
directory
}
\ProcessPgfOptions*
diff --git a/Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex b/Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex
index d80db063fda..3c7afa2bb20 100644
--- a/Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex
+++ b/Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex
@@ -74,13 +74,15 @@
\begin{textblock}{4}[1,0](15,1)%
{\ttfamily\normalsize {\thepage{}}{\footnotesize{\color{grey}/\pageref{LastPage}}}}
\end{textblock}%
- \ifcsname c@minutes\endcsname
- \ifnum\value{minutes}=0\else%
- \begin{textblock}{1}[1,0](15.8,0.2)%
- \tikz{\node[inner sep=2pt,circle,draw=grey]{\color{grey}\scriptsize\ttfamily\theminutes{}};}
- \end{textblock}%
+ \makeatletter\ifdefined\ppt@nominutes\else
+ \ifcsname c@minutes\endcsname
+ \ifnum\value{minutes}=0\else%
+ \begin{textblock}{1}[1,0](15.8,0.2)%
+ \tikz{\node[inner sep=2pt,circle,draw=grey]{\color{grey}\scriptsize\ttfamily\theminutes{}};}
+ \end{textblock}%
+ \fi
\fi
- \fi
+ \fi\makeatother
\fi
}