diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/beamerthemecelestia')
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.pdf | bin | 0 -> 237306 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.tex | 202 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.pdf | bin | 0 -> 188917 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.tex | 197 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/README.md | 17 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.pdf | bin | 0 -> 106076 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.tex | 156 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.pdf | bin | 0 -> 103429 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.tex | 156 |
9 files changed, 728 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.pdf b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.pdf Binary files differnew file mode 100644 index 00000000000..046414445fa --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.pdf diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.tex b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.tex new file mode 100644 index 00000000000..bd094ec6987 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.tex @@ -0,0 +1,202 @@ +\documentclass[% + 10pt, + french, + aspectratio=1610, + xcolor=svgnames +]{beamer} + +\usetheme[ + decorative, + nocodebox, + frametitle=plain, + margin=3em, + soberblock +]{Celestia} + +\title{Le thème Celestia} +\subtitle{v1.0.0} +\author{Razik Ikhlef} +\date{\today} + +\begin{document} + +\begin{frame}[plain] + \titlepage +\end{frame} + +\begin{frame}[fragile]{Polices} + \begin{description}[mainfaceoptions] + \item[mainface] Police principale pour le texte et les titres (\alert{Literata} par défaut) + \item[mainfaceoptions] Options directement passées à \alert{fontspec} pour la police principale + \item[sansface] Police sans empattements pour les éléments structurels (\alert{Inter} par défaut) + \item[sansfaceoptions] Options passées à \alert{fontspec} pour la police sans empattements + \item[monoface] Police à chasse fixe pour le code (\alert{Roboto Mono} par défaut) + \item[monofaceoptions] Options passées à \alert{fontspec} pour la police à chasse fixe + \item[allserif] Utilise la police principale avec empattements pour les mathématiques + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + mainface=EB Garamond, + mainfaceoptions={Scale=1.1}, + sansface=Montserrat, + monoface=Fira Code, + allserif +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Couleurs} + \begin{description}[codebackgroundcolor] + \item[maincolor] Couleur principale utilisée pour les titres et accents (code \alert{\LaTeX} svgname ou \alert{HTML} hexadécimal) + \item[accentcolor] Couleur secondaire pour les éléments spéciaux + \item[backgroundcolor] Couleur de fond des diapositives (\alert{F7F9FC} par défaut) + \item[codebackgroundcolor] Couleur de fond des blocs de code (\alert{F1F3F6} par défaut) + \item[mainblue] Couleur des blocs standards (\alert{045549} par défaut) + \item[maingreen] Couleur des blocs exemple (\alert{054924} par défaut) + \item[mainred] Couleur des blocs alerte (\alert{490445} par défaut) + \item[unicolor] Utilise la couleur principale pour tout le texte + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + maincolor=045549, + accentcolor=E63946, + backgroundcolor=FAFAFA, + codebackgroundcolor=F5F5F5 +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Mise en page} + \begin{description}[centeredtitle] + \item[margin] Marge du contenu (\alert{2em} par défaut) + \item[frametitle] Style du titre (\alert{elegant}, \alert{plain}, \alert{centered}) + \item[decorative] Active les éléments décoratifs + \item[nodecorative] Désactive les éléments décoratifs + \item[centeredtitle] Centre le titre sur la page de titre + \item[titleright] Aligne le titre à droite + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + margin=1.5em, + frametitle=centered, + decorative, + centeredtitle +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{En-têtes} + \begin{description}[headweight] + \item[headstyle] Famille de police pour les titres : \alert{rmfamily} (avec empattements) ou \alert{sffamily} (sans empattements) + \item[headshape] Style des caractères : \alert{sc} (petites capitales), \alert{it} (italique), \alert{normal} + \item[headweight] Graisse des titres : \alert{bfseries} (gras) ou \alert{mdseries} (normal) + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + headstyle=sffamily, + headshape=sc, + headweight=bfseries +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Code} + \begin{description}[nocodeframe] + \item[codebox] Active l'encadrement du code avec \alert{tcolorbox} (\alert{true} par défaut) + \item[nocodebox] Désactive complètement l'encadrement \alert{tcolorbox} du code + \item[nocodeframe] Conserve \alert{tcolorbox} mais sans bordure visible + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + nocodebox, + nocodeframe +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Pied de page} + \begin{description}[quartercirclefooter] + \item[nofooter] Supprime entièrement le pied de page, sauf le numéro de diapositive + \item[quartercirclefooter] Affiche uniquement le numéro dans un quart de cercle en bas à droite + \item[fullbarfooter] Crée une barre complète avec auteur/titre/date et numéro dans un cercle + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + quartercirclefooter +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Table des matières} + \begin{description}[twocolumntoc] + \item[compacttoc] Réduit l'espacement vertical entre les entrées de la table + \item[twocolumntoc] Répartit automatiquement les sections sur deux colonnes équilibrées + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + compacttoc, + twocolumntoc +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}{Blocs} + \begin{description}[exampleblock] + \item[block] Bloc standard pour le contenu normal + \item[exampleblock] Bloc pour les exemples + \item[alertblock] Bloc pour les alertes + \end{description} + + \begin{block}{Bloc standard}Contenu d'un bloc standard\end{block} + \begin{exampleblock}{Bloc exemple}Contenu d'un bloc exemple\end{exampleblock} + \begin{alertblock}{Bloc alerte}Contenu d'un bloc alerte\end{alertblock} +\end{frame} + +\begin{frame}[fragile]{Style des blocs} + \begin{description}[soberblock] + \item[soberblock] Le titre adopte la couleur principale du bloc (mainblue/maingreen/mainred) sur le fond général du document, tandis que le corps garde un fond légèrement teinté (10\%) + \item[softblock] Le titre et le corps partagent le même fond légèrement teinté (10\%), avec le titre dans la couleur principale correspondante + \end{description} + + \begin{exampleblock}{Exemple} + \begin{lstlisting}[style=latex] +\usetheme[ + soberblock % Titre coloré sur fond document +]{Celestia} + +% ou + +\usetheme[ + softblock % Titre coloré sur fond 10% +]{Celestia} + \end{lstlisting} + \end{exampleblock} + +\end{frame} + +\begin{frame}[standout]{Pages d'emphase} + L'option \emph{standout} transforme une diapositive en page d'emphase, idéale pour les moments clés de la présentation : citations marquantes, chiffres essentiels, messages à retenir +\end{frame} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.pdf b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.pdf Binary files differnew file mode 100644 index 00000000000..a5c29347990 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.pdf diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.tex b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.tex new file mode 100644 index 00000000000..40c658d8c72 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/Celestia.tex @@ -0,0 +1,197 @@ +\documentclass[10pt,english,aspectratio=1610,xcolor=svgnames]{beamer} + +\usetheme[ + decorative, + nocodebox, + frametitle=plain, + margin=3em, + soberblock +]{Celestia} + +\title{The Celestia Theme} +\subtitle{v1.0.0} +\author{Razik Ikhlef} +\date{\today} + +\begin{document} + +\begin{frame}[plain] + \titlepage +\end{frame} + +\begin{frame}[fragile]{Fonts} + \begin{description}[mainfaceoptions] + \item[mainface] Main font for text and titles (\alert{Literata} by default) + \item[mainfaceoptions] Options directly passed to \alert{fontspec} for the main font + \item[sansface] Sans-serif font for structural elements (\alert{Inter} by default) + \item[sansfaceoptions] Options passed to \alert{fontspec} for the sans-serif font + \item[monoface] Monospace font for code (\alert{Roboto Mono} by default) + \item[monofaceoptions] Options passed to \alert{fontspec} for the monospace font + \item[allserif] Uses the main serif font for mathematics + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + mainface=EB Garamond, + mainfaceoptions={Scale=1.1}, + sansface=Montserrat, + monoface=Fira Code, + allserif +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Colors} + \begin{description}[codebackgroundcolor] + \item[maincolor] Main color used for titles and accents (\alert{\LaTeX} svgname or \alert{HTML} hexadecimal code) + \item[accentcolor] Secondary color for special elements + \item[backgroundcolor] Slide background color (\alert{F7F9FC} by default) + \item[codebackgroundcolor] Code block background color (\alert{F1F3F6} by default) + \item[mainblue] Standard block color (\alert{045549} by default) + \item[maingreen] Example block color (\alert{054924} by default) + \item[mainred] Alert block color (\alert{490445} by default) + \item[unicolor] Uses the main color for all text + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + maincolor=045549, + accentcolor=E63946, + backgroundcolor=FAFAFA, + codebackgroundcolor=F5F5F5 +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Layout} + \begin{description}[centeredtitle] + \item[margin] Content margin (\alert{2em} by default) + \item[frametitle] Title style (\alert{elegant}, \alert{plain}, \alert{centered}) + \item[decorative] Enables decorative elements + \item[nodecorative] Disables decorative elements + \item[centeredtitle] Centers the title on the title page + \item[titleright] Right-aligns the title + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + margin=1.5em, + frametitle=centered, + decorative, + centeredtitle +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Headers} + \begin{description}[headweight] + \item[headstyle] Font family for titles: \alert{rmfamily} (serif) or \alert{sffamily} (sans-serif) + \item[headshape] Character style: \alert{sc} (small caps), \alert{it} (italic), \alert{normal} + \item[headweight] Title weight: \alert{bfseries} (bold) or \alert{mdseries} (normal) + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + headstyle=sffamily, + headshape=sc, + headweight=bfseries +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Code} + \begin{description}[nocodeframe] + \item[codebox] Enables code framing with \alert{tcolorbox} (\alert{true} by default) + \item[nocodebox] Completely disables \alert{tcolorbox} code framing + \item[nocodeframe] Keeps \alert{tcolorbox} but without visible border + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + nocodebox, + nocodeframe +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Footer} + \begin{description}[quartercirclefooter] + \item[nofooter] Completely removes the footer, except for the slide number + \item[quartercirclefooter] Displays only the number in a quarter circle at the bottom right + \item[fullbarfooter] Creates a complete bar with author/title/date and number in a circle + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + quartercirclefooter +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}[fragile]{Table of Contents} + \begin{description}[twocolumntoc] + \item[compacttoc] Reduces vertical spacing between table of contents entries + \item[twocolumntoc] Automatically distributes sections across two balanced columns + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + compacttoc, + twocolumntoc +]{Celestia} + \end{lstlisting} + \end{exampleblock} +\end{frame} + +\begin{frame}{Blocks} + \begin{description}[exampleblock] + \item[block] Standard block for normal content + \item[exampleblock] Block for examples + \item[alertblock] Block for alerts + \end{description} + + \begin{block}{Standard block}Standard block content\end{block} + \begin{exampleblock}{Example block}Example block content\end{exampleblock} + \begin{alertblock}{Alert block}Alert block content\end{alertblock} +\end{frame} + +\begin{frame}[fragile]{Block Styles} + \begin{description}[soberblock] + \item[soberblock] The title adopts the main block color (mainblue/maingreen/mainred) on the document's general background, while the body keeps a slightly tinted background (10%) + \item[softblock] The title and body share the same slightly tinted background (10%), with the title in the corresponding main color + \end{description} + + \begin{exampleblock}{Example} + \begin{lstlisting}[style=latex] +\usetheme[ + soberblock % Colored title on document background +]{Celestia} + +% or + +\usetheme[ + softblock % Colored title on 10% background +]{Celestia} + \end{lstlisting} + \end{exampleblock} + +\end{frame} + +\begin{frame}[standout]{Standout Pages} + The \texttt{standout} option transforms a slide into a standout page, ideal for key moments in the presentation: striking quotes, essential figures, take-away messages +\end{frame} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/README.md b/Master/texmf-dist/doc/latex/beamerthemecelestia/README.md new file mode 100644 index 00000000000..f8d3d0be1c2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/README.md @@ -0,0 +1,17 @@ +# Celestia Beamer Theme + +## Description + +Celestia is a modern and elegant Beamer theme designed for academic and professional presentations. It offers a clean aesthetic with carefully chosen colors, typography, and layouts. + +## License + +Copyright 2025 Razik Ikhlef + +This work may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3c +of this license or (at your option) any later version. +The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.3c or later is part of all distributions of LaTeX +version 2005/12/01 or later. diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.pdf b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.pdf Binary files differnew file mode 100644 index 00000000000..bbea23cdd0f --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.pdf diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.tex b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.tex new file mode 100644 index 00000000000..97ae22ad6c4 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.tex @@ -0,0 +1,156 @@ +\documentclass[french]{neoschool} + +\title{Le thème Celestia} +\subtitle{v1.0.0} +\author{Razik Ikhlef} +\date{\today} + +\begin{document} + +\maketitle + +\section{Polices} +\begin{description} +\item[mainface] Police principale pour le texte et les titres (\textcolor{titleColor}{Literata} par défaut) +\item[mainfaceoptions] Options directement passées à \textcolor{titleColor}{fontspec} pour la police principale +\item[sansface] Police sans empattements pour les éléments structurels (\textcolor{titleColor}{Inter} par défaut) +\item[sansfaceoptions] Options passées à \textcolor{titleColor}{fontspec} pour la police sans empattements +\item[monoface] Police à chasse fixe pour le code (\textcolor{titleColor}{Roboto Mono} par défaut) +\item[monofaceoptions] Options passées à \textcolor{titleColor}{fontspec} pour la police à chasse fixe +\item[allserif] Utilise la police principale avec empattements pour les mathématiques +\end{description} + +\begin{code}{latex} +\usetheme[ + mainface=EB Garamond, + mainfaceoptions={Scale=1.1}, + sansface=Montserrat, + monoface=Fira Code, + allserif +]{Celestia} +\end{code} + +\section{Couleurs} +\begin{description} +\item[maincolor] Couleur principale utilisée pour les titres et accents (code \textcolor{titleColor}{LaTeX} svgname ou \textcolor{titleColor}{HTML} hexadécimal) +\item[accentcolor] Couleur secondaire pour les éléments spéciaux +\item[backgroundcolor] Couleur de fond des diapositives (\textcolor{titleColor}{F7F9FC} par défaut) +\item[codebackgroundcolor] Couleur de fond des blocs de code (\textcolor{titleColor}{F1F3F6} par défaut) +\item[mainblue] Couleur des blocs standards (\textcolor{titleColor}{045549} par défaut) +\item[maingreen] Couleur des blocs exemple (\textcolor{titleColor}{054924} par défaut) +\item[mainred] Couleur des blocs alerte (\textcolor{titleColor}{490445} par défaut) +\item[unicolor] Utilise la couleur principale pour tout le texte +\end{description} + +\begin{code}{latex} +\usetheme[ + maincolor=045549, + accentcolor=E63946, + backgroundcolor=FAFAFA, + codebackgroundcolor=F5F5F5 +]{Celestia} +\end{code} + +\section{Mise en page} +\begin{description} +\item[margin] Marge du contenu (\textcolor{titleColor}{2em} par défaut) +\item[frametitle] Style du titre (\textcolor{titleColor}{elegant}, \textcolor{titleColor}{plain}, \textcolor{titleColor}{centered}) +\item[decorative] Active les éléments décoratifs +\item[nodecorative] Désactive les éléments décoratifs +\item[centeredtitle] Centre le titre sur la page de titre +\item[titleright] Aligne le titre à droite +\end{description} + +\begin{code}{latex} +\usetheme[ + margin=1.5em, + frametitle=centered, + decorative, + centeredtitle +]{Celestia} +\end{code} + +\section{En-têtes} +\begin{description} +\item[headstyle] Famille de police pour les titres : \textcolor{titleColor}{rmfamily} (avec empattements) ou \textcolor{titleColor}{sffamily} (sans empattements) +\item[headshape] Style des caractères : \textcolor{titleColor}{sc} (petites capitales), \textcolor{titleColor}{it} (italique), \textcolor{titleColor}{normal} +\item[headweight] Graisse des titres : \textcolor{titleColor}{bfseries} (gras) ou \textcolor{titleColor}{mdseries} (normal) +\end{description} + +\begin{code}{latex} +\usetheme[ + headstyle=sffamily, + headshape=sc, + headweight=bfseries +]{Celestia} +\end{code} + +\section{Code} +\begin{description} +\item[codebox] Active l'encadrement du code avec \textcolor{titleColor}{tcolorbox} (\textcolor{titleColor}{true} par défaut) +\item[nocodebox] Désactive complètement l'encadrement \textcolor{titleColor}{tcolorbox} du code +\item[nocodeframe] Conserve \textcolor{titleColor}{tcolorbox} mais sans bordure visible +\end{description} + +\begin{code}{latex} +\usetheme[ + nocodebox, + nocodeframe +]{Celestia} +\end{code} + +\section{Pied de page} +\begin{description} +\item[nofooter] Supprime entièrement le pied de page, sauf le numéro de diapositive +\item[quartercirclefooter] Affiche uniquement le numéro dans un quart de cercle en bas à droite +\item[fullbarfooter] Crée une barre complète avec auteur/titre/date et numéro dans un cercle +\end{description} + +\begin{code}{latex} +\usetheme[ + quartercirclefooter +]{Celestia} +\end{code} + +\section{Table des matières} +\begin{description} +\item[compacttoc] Réduit l'espacement vertical entre les entrées de la table +\item[twocolumntoc] Répartit automatiquement les sections sur deux colonnes équilibrées +\end{description} + +\begin{code}{latex} +\usetheme[ + compacttoc, + twocolumntoc +]{Celestia} +\end{code} + +\section{Blocs} +\begin{description} +\item[block] Bloc standard pour le contenu normal +\item[exampleblock] Bloc pour les exemples +\item[alertblock] Bloc pour les alertes +\end{description} + +\section{Style des blocs} +\begin{description} +\item[soberblock] Le titre adopte la couleur principale du bloc (mainblue/maingreen/mainred) sur le fond général du document, tandis que le corps garde un fond légèrement teinté (10\%) +\item[softblock] Le titre et le corps partagent le même fond légèrement teinté (10\%), avec le titre dans la couleur principale correspondante +\end{description} + +\begin{code}{latex} +\usetheme[ + soberblock +]{Celestia} + +% ou + +\usetheme[ + softblock +]{Celestia} +\end{code} + +\section{Pages d'emphase} +L'option \texttt{standout} transforme une diapositive en page d'emphase, idéale pour les moments clés de la présentation~: citations marquantes, chiffres essentiels, messages à retenir. + +\end{document} diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.pdf b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.pdf Binary files differnew file mode 100644 index 00000000000..91857b9638a --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.pdf diff --git a/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.tex b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.tex new file mode 100644 index 00000000000..c6edfe64558 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.tex @@ -0,0 +1,156 @@ +\documentclass[english]{neoschool} + +\title{The Celestia Theme} +\subtitle{v1.0.0} +\author{Razik Ikhlef} +\date{\today} + +\begin{document} + +\maketitle + +\section{Fonts} +\begin{description} +\item[mainface] Main font for text and titles (\textcolor{titleColor}{Literata} by default) +\item[mainfaceoptions] Options directly passed to \textcolor{titleColor}{fontspec} for the main font +\item[sansface] Sans-serif font for structural elements (\textcolor{titleColor}{Inter} by default) +\item[sansfaceoptions] Options passed to \textcolor{titleColor}{fontspec} for the sans-serif font +\item[monoface] Monospace font for code (\textcolor{titleColor}{Roboto Mono} by default) +\item[monofaceoptions] Options passed to \textcolor{titleColor}{fontspec} for the monospace font +\item[allserif] Uses the main serif font for mathematics +\end{description} + +\begin{code}{latex} +\usetheme[ + mainface=EB Garamond, + mainfaceoptions={Scale=1.1}, + sansface=Montserrat, + monoface=Fira Code, + allserif +]{Celestia} +\end{code} + +\section{Colors} +\begin{description} +\item[maincolor] Main color used for titles and accents (\textcolor{titleColor}{LaTeX} svgname or \textcolor{titleColor}{HTML} hexadecimal code) +\item[accentcolor] Secondary color for special elements +\item[backgroundcolor] Slide background color (\textcolor{titleColor}{F7F9FC} by default) +\item[codebackgroundcolor] Code block background color (\textcolor{titleColor}{F1F3F6} by default) +\item[mainblue] Standard block color (\textcolor{titleColor}{045549} by default) +\item[maingreen] Example block color (\textcolor{titleColor}{054924} by default) +\item[mainred] Alert block color (\textcolor{titleColor}{490445} by default) +\item[unicolor] Uses the main color for all text +\end{description} + +\begin{code}{latex} +\usetheme[ + maincolor=045549, + accentcolor=E63946, + backgroundcolor=FAFAFA, + codebackgroundcolor=F5F5F5 +]{Celestia} +\end{code} + +\section{Layout} +\begin{description} +\item[margin] Content margin (\textcolor{titleColor}{2em} by default) +\item[frametitle] Title style (\textcolor{titleColor}{elegant}, \textcolor{titleColor}{plain}, \textcolor{titleColor}{centered}) +\item[decorative] Enables decorative elements +\item[nodecorative] Disables decorative elements +\item[centeredtitle] Centers the title on the title page +\item[titleright] Right-aligns the title +\end{description} + +\begin{code}{latex} +\usetheme[ + margin=1.5em, + frametitle=centered, + decorative, + centeredtitle +]{Celestia} +\end{code} + +\section{Headers} +\begin{description} +\item[headstyle] Font family for titles: \textcolor{titleColor}{rmfamily} (serif) or \textcolor{titleColor}{sffamily} (sans-serif) +\item[headshape] Character style: \textcolor{titleColor}{sc} (small caps), \textcolor{titleColor}{it} (italic), \textcolor{titleColor}{normal} +\item[headweight] Title weight: \textcolor{titleColor}{bfseries} (bold) or \textcolor{titleColor}{mdseries} (normal) +\end{description} + +\begin{code}{latex} +\usetheme[ + headstyle=sffamily, + headshape=sc, + headweight=bfseries +]{Celestia} +\end{code} + +\section{Code} +\begin{description} +\item[codebox] Enables code framing with \textcolor{titleColor}{tcolorbox} (\textcolor{titleColor}{true} by default) +\item[nocodebox] Completely disables \textcolor{titleColor}{tcolorbox} code framing +\item[nocodeframe] Keeps \textcolor{titleColor}{tcolorbox} but without visible border +\end{description} + +\begin{code}{latex} +\usetheme[ + nocodebox, + nocodeframe +]{Celestia} +\end{code} + +\section{Footer} +\begin{description} +\item[nofooter] Completely removes the footer, except for the slide number +\item[quartercirclefooter] Displays only the number in a quarter circle at the bottom right +\item[fullbarfooter] Creates a complete bar with author/title/date and number in a circle +\end{description} + +\begin{code}{latex} +\usetheme[ + quartercirclefooter +]{Celestia} +\end{code} + +\section{Table of Contents} +\begin{description} +\item[compacttoc] Reduces vertical spacing between table of contents entries +\item[twocolumntoc] Automatically distributes sections across two balanced columns +\end{description} + +\begin{code}{latex} +\usetheme[ + compacttoc, + twocolumntoc +]{Celestia} +\end{code} + +\section{Blocks} +\begin{description} +\item[block] Standard block for normal content +\item[exampleblock] Block for examples +\item[alertblock] Block for alerts +\end{description} + +\section{Block Styles} +\begin{description} +\item[soberblock] The title adopts the main block color on the document's general background, while the body keeps a slightly tinted background (10\%) +\item[softblock] The title and body share the same slightly tinted background (10\%), with the title in the corresponding main color +\end{description} + +\begin{code}{latex} +\usetheme[ + soberblock +]{Celestia} + +% or + +\usetheme[ + softblock +]{Celestia} +\end{code} + +\section{Standout Pages} +La commande \texttt{standout} transforme une diapositive en page spéciale, idéale pour les moments clés de la présentation : citations marquantes, chiffres essentiels, messages à retenir. + +\end{document} |