texlive[73454] Master/texmf-dist: beamertheme-simpledarkblue
commits+karl at tug.org
commits+karl at tug.org
Tue Jan 14 21:46:25 CET 2025
Revision: 73454
https://tug.org/svn/texlive?view=revision&revision=73454
Author: karl
Date: 2025-01-14 21:46:25 +0100 (Tue, 14 Jan 2025)
Log Message:
-----------
beamertheme-simpledarkblue (14jan25)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/README.md
trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.pdf
trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex
trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty
trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty
trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerthemeSimpleDarkBlue.sty
Added Paths:
-----------
trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib
trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty
Modified: trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/README.md 2025-01-14 20:46:11 UTC (rev 73453)
+++ trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/README.md 2025-01-14 20:46:25 UTC (rev 73454)
@@ -1,20 +1,17 @@
-# Simple Beamer Theme
+# 🫐 SimpleDarkBlue Beamer Theme
-A simple and clear beamer template.
+SimpleDarkBlue Beamer Theme provides a simple and clear LaTeX template for creating professional presentations. Featuring dark blue as its primary color, the theme prioritizes clarity and readability, making it an excellent choice for researchers, educators, and students.
-**Website:**
+> If you like this theme, you may also be interested in my other beamer theme, [🍃SimplePlus](https://github.com/pm25/SimplePlus-BeamerTheme).
-https://github.com/PM25/SimpleDarkBlue-BeamerTheme
+## Links
-**Lead author:**
+Explore or download the SimpleDarkBlue Beamer Theme:
-Pin-Yen Huang (pyhuang97 at gmail.com)
+- **[Overleaf](https://www.overleaf.com/latex/templates/simple-beamer-theme/cyjyxkdttqzs)** – Use it instantly with a web-based LaTeX editor.
+- **[CTAN](https://ctan.org/pkg/beamertheme-simpledarkblue)** – Download and integrate it into your local LaTeX setup.
+- **[Github](https://github.com/pm25/SimpleDarkBlue-BeamerTheme)** – View the source code.
-**Compiled sample document:**
-
-beamertheme-simpledarkblue-sample.pdf
-
## License
-This is free and unencumbered software released into the public domain.
-For more information, please see the file `LICENSE` or refer to <http://unlicense.org>.
+This project is released under the **Unlicense License**, granting you complete freedom to use, modify, and distribute the template. For more details, see the [LICENSE](./LICENSE) file.
Modified: trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex 2025-01-14 20:46:11 UTC (rev 73453)
+++ trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex 2025-01-14 20:46:25 UTC (rev 73454)
@@ -1,5 +1,5 @@
%----------------------------------------------------------------------------------------
-% PACKAGES AND THEMES
+% PACKAGES AND THEMES
%----------------------------------------------------------------------------------------
\documentclass[aspectratio=169,xcolor=dvipsnames]{beamer}
@@ -10,25 +10,23 @@
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
%----------------------------------------------------------------------------------------
-% TITLE PAGE
+% TITLE PAGE
%----------------------------------------------------------------------------------------
-\title[short title]{Simple Dark Blue Theme} % The short title appears at the bottom of every slide, the full title is only on the title page
+\title{SimpleDarkBlue Beamer Theme}
\subtitle{Subtitle}
-\author[Pin-Yen] {Pin-Yen Huang}
+\author{Pin-Yen Huang}
-\institute[NTU] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
+\institute
{
Department of Computer Science and Information Engineering \\
National Taiwan University % Your institution for the title page
- \vskip 3pt
}
-\date{July 25, 2021} % Date, can be changed to a custom date
+\date{\today} % Date, can be changed to a custom date
-
%----------------------------------------------------------------------------------------
-% PRESENTATION SLIDES
+% PRESENTATION SLIDES
%----------------------------------------------------------------------------------------
\begin{document}
@@ -88,7 +86,7 @@
\item Example
\end{enumerate}
- \column{.5\textwidth} % Right column and width
+ \column{.45\textwidth} % Right column and width
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor.
\end{columns}
@@ -142,20 +140,15 @@
%------------------------------------------------
\begin{frame}{References}
- % Beamer does not support BibTeX so references must be inserted manually as below
- \footnotesize{
- \begin{thebibliography}{99}
- \bibitem[Smith, 2012]{p1} John Smith (2012)
- \newblock Title of the publication
- \newblock \emph{Journal Name} 12(3), 45 -- 678.
- \end{thebibliography}
- }
+ \footnotesize
+ \bibliography{reference.bib}
+ \bibliographystyle{apalike}
\end{frame}
%------------------------------------------------
\begin{frame}
- \Huge{\centerline{The End}}
+ \Huge{\centerline{\textbf{The End}}}
\end{frame}
%----------------------------------------------------------------------------------------
Added: trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib 2025-01-14 20:46:25 UTC (rev 73454)
@@ -0,0 +1,9 @@
+ at article{p1,
+ author = {John Smith},
+ title = {Title of the publication},
+ journal = {Journal Name},
+ year = {2012},
+ volume = {12},
+ number = {3},
+ pages = {45--678}
+}
\ No newline at end of file
Property changes on: trunk/Master/texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty 2025-01-14 20:46:11 UTC (rev 73453)
+++ trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty 2025-01-14 20:46:25 UTC (rev 73454)
@@ -1,34 +1,39 @@
-% !TEX TS-program = xelatex
-% !TEX encoding = UTF-8 Unicode
+%-------------------------------------------------------------
+% Package: beamertheme-SimpleDarkBlue
+% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
+% Version: 1.1, 2025-01-12
+% Link: https://github.com/pm25/SimpleDarkBlue-BeamerTheme
+% This is free and unencumbered software released into the
+% public domain; see <http://unlicense.org> for details.
+%-------------------------------------------------------------
-%----------------------------------------------------------------------------------------
-% File: beamercolorthemeSimpleDarkBlue.sty
-% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
-% link: https://github.com/PM25/SimpleDarkBlue-BeamerTheme
-% This is free and unencumbered software released into the
-% public domain; see <http://unlicense.org> for details.
-%----------------------------------------------------------------------------------------
+%--------------------------------------
+% Color Settings
+%--------------------------------------
-\definecolor{InvisibleRed}{rgb}{0.92, 0.9, 0.9}
-\definecolor{InvisibleGreen}{rgb}{0.9, 0.92, 0.9}
-\definecolor{InvisibleBlue}{rgb}{0.9, 0.9, 0.92}
+% define custom colors
+\definecolor{MutedRed}{rgb}{0.97, 0.92, 0.92}
+\definecolor{MutedGreen}{rgb}{0.92, 0.97, 0.92}
+\definecolor{MutedBlue}{rgb}{0.92, 0.92, 0.97}
+\definecolor{MutedBlack}{rgb}{0.95, 0.95, 0.95}
-\definecolor{LightBlue}{rgb}{0.4, 0.55, 0.65}
+\definecolor{MediumRed}{rgb}{0.925, 0.345, 0.345}
+\definecolor{MediumGreen}{rgb}{0.37, 0.7, 0.66}
+\definecolor{MediumBlue}{rgb}{0.015, 0.315, 0.45}
+\definecolor{MediumBlack}{rgb}{0.219, 0.259, 0.349}
-\definecolor{MediumRed}{rgb}{0.92549, 0.34509, 0.34509}
-\definecolor{MediumGreen}{rgb}{0.36862, 0.66666, 0.65882}
-\definecolor{MediumBlue}{rgb}{0.01176, 0.31372, 0.43529}
+\definecolor{DarkBlue}{rgb}{0.05, 0.15, 0.35}
-\definecolor{DarkBlue}{rgb}{0.05, 0.15, 0.3}
-
+% set beamer color themes
\usecolortheme[named=DarkBlue]{structure}
-\setbeamercolor{palette primary}{bg=DarkBlue,fg=white}
-\setbeamercolor{palette secondary}{bg=MediumBlue,fg=white}
-\setbeamercolor{palette tertiary}{bg=LightBlue,fg=white}
-\setbeamercolor{block title}{bg=MediumBlue}
-\setbeamercolor{block body}{bg=InvisibleBlue}
-\setbeamercolor{block title example}{bg=MediumGreen}
-\setbeamercolor{block body example}{bg=InvisibleGreen}
-\setbeamercolor{block title alerted}{bg=MediumRed}
-\setbeamercolor{block body alerted}{bg=InvisibleRed}
\ No newline at end of file
+% customize colors for elements
+\setbeamercolor{title}{bg=DarkBlue,fg=white}
+\setbeamercolor{frametitle}{bg=DarkBlue,fg=white}
+
+\setbeamercolor{block title}{fg=white,bg=MediumBlue}
+\setbeamercolor{block body}{fg=black,bg=MutedBlue}
+\setbeamercolor{block title example}{fg=white,bg=MediumGreen}
+\setbeamercolor{block body example}{fg=black,bg=MutedGreen}
+\setbeamercolor{block title alerted}{fg=white,bg=MediumRed}
+\setbeamercolor{block body alerted}{fg=black,bg=MutedRed}
\ No newline at end of file
Modified: trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty 2025-01-14 20:46:11 UTC (rev 73453)
+++ trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty 2025-01-14 20:46:25 UTC (rev 73454)
@@ -1,16 +1,16 @@
-% !TEX TS-program = xelatex
-% !TEX encoding = UTF-8 Unicode
+%-------------------------------------------------------------
+% Package: beamertheme-SimpleDarkBlue
+% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
+% Version: 1.1, 2025-01-12
+% Link: https://github.com/pm25/SimpleDarkBlue-BeamerTheme
+% This is free and unencumbered software released into the
+% public domain; see <http://unlicense.org> for details.
+%-------------------------------------------------------------
-%----------------------------------------------------------------------------------------
-% File: beamerfontthemeSimpleDarkBlue.sty
-% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
-% link: https://github.com/PM25/SimpleDarkBlue-BeamerTheme
-% This is free and unencumbered software released into the
-% public domain; see <http://unlicense.org> for details.
-%----------------------------------------------------------------------------------------
+%--------------------------------------
+% Font Settings
+%--------------------------------------
-\mode<presentation>
-
\setbeamerfont{structure}{family=\sffamily,series=\mdseries}
\setbeamerfont{title}{size=\LARGE,parent=structure}
@@ -17,19 +17,16 @@
\setbeamerfont{subtitle}{size=\normalsize,parent=title}
\setbeamerfont{date}{size=\scriptsize,series=\mdseries,parent=structure}
-\setbeamerfont{author}{size=\Large,series=\mdseries,parent=structure}
+\setbeamerfont{author}{size=\large,series=\mdseries,parent=structure}
\setbeamerfont{institute}{size=\scriptsize,series=\mdseries,parent=structure}
-\setbeamerfont{section in toc}{size=\Large,parent=structure}
+\setbeamerfont{section in toc}{size=\large,parent=structure}
\setbeamerfont{section in head/foot}{size=\tiny,parent=structure}
-\setbeamerfont{subsection in toc}{size=\large,parent={section in toc}}
+\setbeamerfont{subsection in toc}{size=\small,parent={section in toc}}
-\setbeamerfont{frametitle}{parent=structure,size=\LARGE}
-\setbeamerfont{framesubtitle}{parent=frametitle,size=\Large}
+\setbeamerfont{frametitle}{size=\Large,parent=structure}
+\setbeamerfont{framesubtitle}{parent=frametitle,size=\large}
\setbeamerfont{caption}{size=\footnotesize}
\setbeamerfont{item}{parent=structure,series=\mdseries}
-\setbeamerfont{block title}{size=\large,series=\mdseries,parent={structure,block body}}
-
-\mode
-<all>
+\setbeamerfont{block title}{size=\large,series=\mdseries,parent={structure,block body}}
\ No newline at end of file
Added: trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty (rev 0)
+++ trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty 2025-01-14 20:46:25 UTC (rev 73454)
@@ -0,0 +1,70 @@
+%-------------------------------------------------------------
+% Package: beamertheme-SimpleDarkBlue
+% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
+% Version: 1.1, 2025-01-12
+% Link: https://github.com/pm25/SimpleDarkBlue-BeamerTheme
+% This is free and unencumbered software released into the
+% public domain; see <http://unlicense.org> for details.
+%-------------------------------------------------------------
+
+%--------------------------------------
+% Inner Theme Settings
+%--------------------------------------
+
+\pgfdeclareverticalshading[lower.bg,upper.bg]{bmb at transition}{200cm}{%
+color(0pt)=(lower.bg); color(2pt)=(lower.bg); color(4pt)=(lower.bg)}
+
+\setbeamersize{text margin left=2em,text margin right=2em}
+
+\setbeamertemplate{footline}[frame number]
+\setbeamertemplate{navigation symbols}{}
+
+\setbeamertemplate{blocks}[rounded][shadow=true]
+
+\setbeamertemplate{enumerate items}[default]
+\setbeamertemplate{enumerate subitem}[default]
+\setbeamertemplate{itemize items}[circle]
+\setbeamertemplate{itemize subitem}[circle]
+
+% table of contents (overview) settings
+\setbeamertemplate{section in toc}[sections numbered]
+\setbeamertemplate{subsection in toc}{%
+ \leavevmode
+ \leftskip=3.2em
+ \rlap{\hskip-2em\inserttocsectionnumber.\inserttocsubsectionnumber}
+ \inserttocsubsection\par
+}
+
+% title page customization
+\setbeamertemplate{title page}{%
+ \vspace{6em}
+ \begingroup
+ \centering
+ % ------------------------
+ \begin{beamercolorbox}[sep=10pt,center,shadow=true,rounded=true]{title}
+ \usebeamerfont{title}\inserttitle\par%
+ \ifx\insertsubtitle\@empty%
+ \else%
+ \vskip0.25em%
+ {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
+ \fi%
+ \end{beamercolorbox}%
+ \vskip0.5em\par
+ % ------------------------
+ \begin{beamercolorbox}[sep=8pt,center]{author}
+ \usebeamerfont{author}\insertauthor
+ \end{beamercolorbox}
+ \vskip-1em
+ % ------------------------
+ \begin{beamercolorbox}[sep=8pt,center]{institute}
+ \usebeamerfont{institute}\insertinstitute
+ \end{beamercolorbox}
+ % ------------------------
+ \begin{beamercolorbox}[sep=8pt,center]{date}
+ \usebeamerfont{date}\insertdate
+ \end{beamercolorbox}\vskip0.5em
+ % ------------------------
+ {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
+ \endgroup
+ \vfill
+}
\ No newline at end of file
Property changes on: trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerthemeSimpleDarkBlue.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerthemeSimpleDarkBlue.sty 2025-01-14 20:46:11 UTC (rev 73453)
+++ trunk/Master/texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerthemeSimpleDarkBlue.sty 2025-01-14 20:46:25 UTC (rev 73454)
@@ -1,31 +1,20 @@
-% !TEX TS-program = xelatex
-% !TEX encoding = UTF-8 Unicode
+%-------------------------------------------------------------
+% Package: beamertheme-SimpleDarkBlue
+% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
+% Version: 1.1, 2025-01-12
+% Link: https://github.com/pm25/SimpleDarkBlue-BeamerTheme
+% This is free and unencumbered software released into the
+% public domain; see <http://unlicense.org> for details.
+%-------------------------------------------------------------
-%----------------------------------------------------------------------------------------
-% File: beamerthemeSimpleDarkBlue.sty
-% Author: Pin-Yen Huang (pyhuang97 at gmail.com)
-% link: https://github.com/PM25/SimpleDarkBlue-BeamerTheme
-% This is free and unencumbered software released into the
-% public domain; see <http://unlicense.org> for details.
-%----------------------------------------------------------------------------------------
+%--------------------------------------
+% Beamer Settings
+%--------------------------------------
\mode<presentation>
-% Settings
-\usetheme{Madrid}
-\useinnertheme{circles}
-% \useoutertheme{simpleinfo}
-% \useoutertheme{miniframes} % Alternatively: miniframes, infolines, split
\usefonttheme{SimpleDarkBlue}
\usecolortheme{SimpleDarkBlue}
+\useinnertheme{SimpleDarkBlue}
-% \setbeamertemplate{footline} % To remove the footer line in all slides uncomment this line
-\setbeamertemplate{footline}[page number] % To replace the footer line in all slides with a simple slide count uncomment this line
-\setbeamertemplate{navigation symbols}{} % To remove the navigation symbols from the bottom of all slides uncomment this line
-\setbeamertemplate{blocks}[rounded][shadow=true]
-\setbeamertemplate{enumerate items}[default]
-% table of contents (overview)
-\setbeamertemplate{section in toc}[sections numbered]
-\setbeamertemplate{subsection in toc}[default]
-
\mode<all>
\ No newline at end of file
More information about the tex-live-commits
mailing list.