diff options
author | Karl Berry <karl@freefriends.org> | 2021-08-01 20:36:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-08-01 20:36:34 +0000 |
commit | e7ffd7cea985cd4bb7789a935203c73843dcd804 (patch) | |
tree | 8809a6bb7ae863f581e1e09254441d361c3b318c /Master/texmf-dist/tex/latex | |
parent | 8f2803b5a6681b55f185f4054478fb584139c63a (diff) |
elpres (1aug21)
git-svn-id: svn://tug.org/texlive/trunk@60137 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex')
6 files changed, 122 insertions, 27 deletions
diff --git a/Master/texmf-dist/tex/latex/elpres/elpres.cls b/Master/texmf-dist/tex/latex/elpres/elpres.cls index 29f9df9a882..36aa7c71715 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpres.cls +++ b/Master/texmf-dist/tex/latex/elpres/elpres.cls @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesClass{elpres}[2021/02/28 class for plain electronic presentations] +\ProvidesClass{elpres}[2021/08/01 class for plain electronic presentations] % % 2004/06/19 v0.1 - initial version % @@ -32,7 +32,12 @@ % % 2021/02/28 v0.8 - bug in elpres...scheme.sty files fixed, manual updated % +% 2021/08/01 v0.9 - new class option `bulletsymb' added, elpres.tds.zip +% archive added to ctan.org upload % +% + + % Options: select fonts \newcommand{\fontna}{initialisiert} \DeclareOption{nofonts}{% @@ -70,13 +75,21 @@ \renewcommand{\screenformat}{scr16x10}% } - % Option: navigation symbols \newcommand{\navigation}{withoutnavigationsymb} \DeclareOption{navisymb}{% \renewcommand{\navigation}{withnavi}% } +% begin neu 1.8.21 +% Option: itemize symbols Option: select $\bullet$ instead of default +% itemize symbols +\newcommand{\itemize@elsymbols}{default@symbols} +\DeclareOption{bulletsymb}{% + \renewcommand{\itemize@elsymbols}{bullet@symbols}% +} +% end neu 1.8.21 + \DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}} \ProcessOptions\relax \LoadClass{article} @@ -223,6 +236,18 @@ \newcommand{\pagenrconst}{\addtocounter{page}{-1}} +%% begin geaendert 1.8.21 + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\ensuremath{\bullet}}% +\renewcommand{\labelitemii}{\ensuremath{\bullet}}% +\renewcommand{\labelitemiii}{\small\ensuremath{\bullet}}% +\renewcommand{\labelitemiv}{\footnotesize\ensuremath{\bullet}}% +}{} + +%% end geaendert 1.8.21 + + %% (External): Default colors for defined slide elements, they are modified in %% style files -- these color names may be used externally by authors of %% presentations diff --git a/Master/texmf-dist/tex/latex/elpres/elpresbluelightgrayscheme.sty b/Master/texmf-dist/tex/latex/elpres/elpresbluelightgrayscheme.sty index 719bcbd676d..daac18a4417 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpresbluelightgrayscheme.sty +++ b/Master/texmf-dist/tex/latex/elpres/elpresbluelightgrayscheme.sty @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{elpresbluelightgrayscheme}[2020/08/15 elpres layout scheme blue lightgray] +\ProvidesPackage{elpresbluelightgrayscheme}[2021/08/01 elpres layout scheme blue lightgray] \definecolor{epturquoise}{rgb}{0.1,0.83,0.8} \definecolor{eplistheadcolor}{rgb}{0.75,0.8,1} % color for list heads @@ -29,10 +29,22 @@ \definecolor{eptextcolor}{rgb}{0.7,0.7,0.75} % Ext: normal text color \color{eptextcolor} % Ext: normal text color -\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-01}} -\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-01}} -\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-01}} -\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-01}} +%% begin geaendert 1.8.21 +\ifthenelse{\equal{\itemize@elsymbols}{default@symbols}}{% +\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-01}}% +\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-01}}% +\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-01}}% +\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-01}}% +}{} + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemii}{\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiii}{\small\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiv}{\footnotesize\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +}{} +%% end geaendert 1.8.21 + \renewcommand{\labelenumi}{\textcolor{eplistheadcolor}{\textbf{\theenumi.}}} \renewcommand{\labelenumii}{\textcolor{eplistheadcolor}{\textbf{\theenumii.}}} @@ -43,3 +55,5 @@ \textcolor{eplistheadcolor}{\textbf{#1}}} \endinput + +% vim: syntax=tex tw=2048 ai diff --git a/Master/texmf-dist/tex/latex/elpres/elpresgrayscheme.sty b/Master/texmf-dist/tex/latex/elpres/elpresgrayscheme.sty index a33c41a7abc..42cf0191838 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpresgrayscheme.sty +++ b/Master/texmf-dist/tex/latex/elpres/elpresgrayscheme.sty @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{elpresgrayscheme}[2020/08/15 elpres layout scheme gray] +\ProvidesPackage{elpresgrayscheme}[2021/08/01 elpres layout scheme gray] \definecolor{epgreen}{rgb}{0.11,0.34,0.3} \definecolor{eplistheadcolor}{named}{epgreen} % color for list heads @@ -28,11 +28,23 @@ \definecolor{eptextcolor}{rgb}{0.16,0.16,0.16} % Ext: normal text color \color{eptextcolor} % Ext: normal text color +%% begin geaendert 1.8.21 +\ifthenelse{\equal{\itemize@elsymbols}{default@symbols}}{% +\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-03}}% +\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-03}}% +\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-03}}% +\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-03}}% +}{} + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemii}{\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiii}{\small\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiv}{\footnotesize\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +}{} +%% end geaendert 1.8.21 + -\renewcommand{\labelitemi}{\includegraphics[scale=0.065]{ep-ball-03}} -\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-03}} -\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-03}} -\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-03}} \renewcommand{\labelenumi}{\textcolor{eplistheadcolor}{\textbf{\theenumi.}}} \renewcommand{\labelenumii}{\textcolor{eplistheadcolor}{\textbf{\theenumii.}}} @@ -43,3 +55,5 @@ \textcolor{epgreen}{\textbf{#1}}} \endinput + +% vim: syntax=tex tw=2048 ai diff --git a/Master/texmf-dist/tex/latex/elpres/elpreswhitebluescheme.sty b/Master/texmf-dist/tex/latex/elpres/elpreswhitebluescheme.sty index 06449fd3d5a..f469c2ebc96 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpreswhitebluescheme.sty +++ b/Master/texmf-dist/tex/latex/elpres/elpreswhitebluescheme.sty @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{elpreswhitebluescheme}[2020/08/15 elpres layout scheme white blue] +\ProvidesPackage{elpreswhitebluescheme}[2021/08/01 elpres layout scheme white blue] \definecolor{epdarkblue}{rgb}{0.12,0.09,0.65} \definecolor{eplistheadcolor}{named}{epdarkblue} % color for list heads @@ -29,10 +29,22 @@ \definecolor{eptextcolor}{rgb}{0.2,0.16,0.16} % Ext: normal text color \color{eptextcolor} % Ext: normal text color -\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-05}} -\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-05}} -\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-05}} -\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-05}} +%% begin geaendert 1.8.21 +\ifthenelse{\equal{\itemize@elsymbols}{default@symbols}}{% +\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-05}}% +\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-05}}% +\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-05}}% +\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-05}}% +}{} + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemii}{\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiii}{\small\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiv}{\footnotesize\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +}{} +%% end geaendert 1.8.21 + \renewcommand{\labelenumi}{\textcolor{eplistheadcolor}{\textbf{\theenumi.}}} \renewcommand{\labelenumii}{\textcolor{eplistheadcolor}{\textbf{\theenumii.}}} @@ -46,3 +58,5 @@ \color{epverydarkblue} \endinput + +% vim: syntax=tex tw=2048 ai diff --git a/Master/texmf-dist/tex/latex/elpres/elpreswhiteredscheme.sty b/Master/texmf-dist/tex/latex/elpres/elpreswhiteredscheme.sty index 1c7255e668f..9860cec48bc 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpreswhiteredscheme.sty +++ b/Master/texmf-dist/tex/latex/elpres/elpreswhiteredscheme.sty @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{elpreswhiteredscheme}[2020/08/15 elpres layout white red] +\ProvidesPackage{elpreswhiteredscheme}[2021/08/01 elpres layout white red] \definecolor{epdarkred}{rgb}{0.6,0.09,0.1} \definecolor{eplistheadcolor}{named}{epdarkred} % color for list heads @@ -29,10 +29,21 @@ \definecolor{eptextcolor}{rgb}{0.2,0.16,0.16} % Ext: normal text color \color{eptextcolor} % Ext: normal text color -\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-02}} -\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-02}} -\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-02}} -\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-02}} +%% begin geaendert 1.8.21 +\ifthenelse{\equal{\itemize@elsymbols}{default@symbols}}{% +\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-02}}% +\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-02}}% +\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-02}}% +\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-02}}% +}{} + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemii}{\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiii}{\small\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiv}{\footnotesize\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +}{} +%% end geaendert 1.8.21 \renewcommand{\labelenumi}{\textcolor{eplistheadcolor}{\textbf{\theenumi.}}} \renewcommand{\labelenumii}{\textcolor{eplistheadcolor}{\textbf{\theenumii.}}} @@ -46,3 +57,5 @@ \color{epverydarkred} \endinput +% vim: syntax=tex tw=2048 ai + diff --git a/Master/texmf-dist/tex/latex/elpres/elpreswhitetealscheme.sty b/Master/texmf-dist/tex/latex/elpres/elpreswhitetealscheme.sty index ff71fb19359..9df8c25007e 100644 --- a/Master/texmf-dist/tex/latex/elpres/elpreswhitetealscheme.sty +++ b/Master/texmf-dist/tex/latex/elpres/elpreswhitetealscheme.sty @@ -1,5 +1,5 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{elpreswhitetealscheme}[2020/08/15 elpres layout scheme white teal] +\ProvidesPackage{elpreswhitetealscheme}[2021/08/01 elpres layout scheme white teal] \definecolor{epdarkteal}{rgb}{0.02,0.35,0.38} \definecolor{eplistheadcolor}{named}{epdarkteal} % color for list heads @@ -29,10 +29,22 @@ \definecolor{eptextcolor}{rgb}{0.2,0.16,0.16} % Ext: normal text color \color{eptextcolor} % Ext: normal text color -\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-04}} -\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-04}} -\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-04}} -\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-04}} + +%% begin geaendert 1.8.21 +\ifthenelse{\equal{\itemize@elsymbols}{default@symbols}}{% +\renewcommand{\labelitemi}{\includegraphics[scale=0.06]{ep-ball-04}}% +\renewcommand{\labelitemii}{\includegraphics[scale=0.055]{ep-ball-04}}% +\renewcommand{\labelitemiii}{\includegraphics[scale=0.05]{ep-ball-04}}% +\renewcommand{\labelitemiv}{\includegraphics[scale=0.045]{ep-ball-04}}% +}{} + +\ifthenelse{\equal{\itemize@elsymbols}{bullet@symbols}}{% +\renewcommand{\labelitemi}{\large\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemii}{\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiii}{\small\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +\renewcommand{\labelitemiv}{\footnotesize\textcolor{eplistheadcolor}{\ensuremath{\bullet}}}% +}{} +%% end geaendert 1.8.21 \renewcommand{\labelenumi}{\textcolor{eplistheadcolor}{\textbf{\theenumi.}}} \renewcommand{\labelenumii}{\textcolor{eplistheadcolor}{\textbf{\theenumii.}}} @@ -46,3 +58,6 @@ \color{epverydarkteal} \endinput + +% vim: syntax=tex tw=2048 ai + |