diff options
-rw-r--r-- | Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.pdf | bin | 227754 -> 229755 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/ppt-slides/ppt-slides.tex | 16 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/ppt-slides/ppt-slides.sty | 3 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex | 14 |
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 Binary files differindex 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 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 } |