beamer template for Miktex 2.9
2,261
A quik'n'derty template can be generated in TeXstudio for example, utilizing the built-in wizards.
Prerequisites
- Install TeXstudio
- Familiarize with TeXstudio
- Start up TeXstudio
Actions
- After Start goto Menu -> Wizards -> Quick beamer presentation
- Select the theme you like the most.
- Select all the packages you need.
- Add title and author.
- Check for babel package and select your language.
- Check for graphicx package.
- Click OK
The template can now be used for any sort of presentation.
Result of above steps
You get and can use this quik'n'derty template:
\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usetheme{default}
\begin{document}
\author{Joanne Doe}
\title{A smexy title}
%\subtitle{}
%\logo{}
%\institute{}
%\date{}
%\subject{}
%\setbeamercovered{transparent}
%\setbeamertemplate{navigation symbols}{}
\frame[plain]{\maketitle}
\begin{frame}
\frametitle{}
\end{frame}
\end{document}
Related videos on Youtube

Author by
naphaneal
Updated on August 01, 2022Comments
-
naphaneal 10 months
I want a basic beamer-template that works straight with latest version of Miktex 2.9. I just want to be able to run it and have no error messages complaining about missing this and that. I have the packages
xcolor
andpgf
installed.-
Jesse almost 7 yearsWelcome to TeX.SX. Sorry, not quite understand your question. Have u searched the beamer tag in this site? There are plenty of examples to try out, then ask your concerns specifically.
-
Fran almost 7 years
\documentclass{beamer} \begin{document} \begin{frame}{Test} Hello \end{frame} \end{document}
-
samcarter_is_at_topanswers.xyz almost 7 yearsIt looks like you've got two separate accounts (tex.stackexchange.com/questions/316242/beamer-with-miktex-2-7 sounds like it would also be from you?). The Stack Exchange staff can merge them together for you.
-
samcarter_is_at_topanswers.xyz almost 7 yearsIf its just you being annoyed by the error messages, either set Miktex to automatically install missing packages or switch to a "complete" distribution like texlive, which comes with probably all packages you will ever need.
-