
Scientific Slides
Generate Beamer LaTeX slide decks for conferences and lab talks with Madrid theme, citations, and figure-ready structure from your coding agent.
Install
npx skills add https://github.com/k-dense-ai/scientific-agent-skills --skill scientific-slidesWhat is this skill?
- Complete beamer documentclass scaffold with 16:9 aspect ratio and 11pt base
- Madrid theme with beaver colortheme and customizable primary blue / secondary orange palette
- biblatex authoryear citations with biber backend and references.bib hookup
- Graphicx booktabs and amsmath packages with ./figures/ graphicspath
- Footer frame numbers, optional logo slot, and plain title slide frame pattern
Adoption & trust: 636 installs on skills.sh; 27.6k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Journey fit
Scientific slide authoring is a documentation deliverable produced while building credibility for the product or research narrative, before wider launch distribution. The skill is a full .tex template with title, outline, biblatex, and figure paths—classic docs-phase output for builders presenting technical work.
Common Questions / FAQ
Is Scientific Slides safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Scientific Slides
\documentclass[aspectratio=169,11pt]{beamer} % Encoding \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} % Theme and colors \usetheme{Madrid} \usecolortheme{beaver} % Remove navigation symbols \setbeamertemplate{navigation symbols}{} % Page numbers in footer \setbeamertemplate{footline}[frame number] % Graphics \usepackage{graphicx} \graphicspath{{./figures/}} % Math \usepackage{amsmath, amssymb} % Tables \usepackage{booktabs} % Citations \usepackage[style=authoryear,maxcitenames=2,backend=biber]{biblatex} \addbibresource{references.bib} \renewcommand*{\bibfont}{\tiny} % Colors (customize these) \definecolor{primaryblue}{RGB}{0,90,156} \definecolor{secondaryorange}{RGB}{228,108,10} % Custom colors for theme elements \setbeamercolor{structure}{fg=primaryblue} \setbeamercolor{title}{fg=primaryblue} \setbeamercolor{frametitle}{fg=primaryblue} \setbeamercolor{block title}{fg=white,bg=primaryblue} % Title page information \title[Short Title]{Full Presentation Title:\\Descriptive and Specific} \subtitle{Optional Subtitle} \author[Author Name]{Author Name\inst{1}} \institute[Institution]{ \inst{1} Department of XYZ\\ University Name\\ \vspace{0.2cm} \texttt{email@university.edu} } \date{Conference Name\\Month Day, Year} % Optional: Logo % \logo{\includegraphics[height=0.8cm]{logo.png}} \begin{document} % Title slide \begin{frame}[plain] \titlepage \end{frame} % Outline (optional for conference talks) % \begin{frame}{Outline} % \tableofcontents % \end{frame} %============================================== % INTRODUCTION %============================================== \section{Introduction} \begin{frame}{The Problem} \begin{itemize} \item<1-> Start with a compelling hook or problem statement \item<2-> Establish why this research matters \item<3-> Set up the knowledge gap \item<4-> Preview your contribution \end{itemize} \vfill \uncover<4->{ \begin{block}{Research Question} State your specific research question or hypothesis clearly \end{block} } \end{frame} \begin{frame}{Background and Context} \begin{columns}[T] \begin{column}{0.5\textwidth} \textbf{Prior Work:} \begin{itemize} \item Key finding 1 \cite{reference1} \item Key finding 2 \cite{reference2} \item Knowledge gap identified \end{itemize} \end{column} \begin{column}{0.5\textwidth} % Example figure \begin{figure} \centering % \includegraphics[width=\textwidth]{context_figure.pdf} \framebox[0.9\textwidth][c]{[Figure: Context or Prior Work]} \caption{Illustration of the problem} \end{figure} \end{column} \end{columns} \end{frame} %============================================== % METHODS %============================================== \section{Methods} \begin{frame}{Study Design} \begin{columns}[T] \begin{column}{0.6\textwidth} \textbf{Approach:} \begin{itemize} \item Study type/design \item Participants/sample (n = X) \item Key procedures \item Analysis strategy \end{itemize} \vspace{0.5cm} \begin{alertblock}{Key Innovation} Highlight what makes your approach novel or improved \end{alertblock} \end{column} \begin{column}{0.4\textwidth} \begin{figure} \centering % \includegraphics[width=\textwidth]{methods_schematic.pdf} \framebox[0.9\textwidth][c]{[Methods Diagram]} \caption{Experimental design} \end{figure} \end{column} \end{columns} \end{frame} \begin{frame}{Analysis Overview} \begin{itemize} \item \textbf{Primary outcome:} What you measured \item \textbf{Statistical approach:} Tests used \item \textbf{Sample size justification:} Power analysis (if applicable) \item \textbf{Software:} Tools and versions used \end{itemize} \vspace{0.5cm} % Optional: Show key equation \beg