§Beamer
§Install using Git
If you are a git user, you can install the theme and keep up to date by cloning the repo:
git clone https://github.com/dracula/beamer.git
§Install manually
Download using the GitHub .zip download option and unzip them.
§Activating theme
- Add the beamercolorthemedracula.styfile to your projects root directory
- Add \usecolortheme{dracula}to your preamble
- If you are using beamer with R Markdown , add colortheme: "dracula"to YAML header
---
title: "A Dracula Theme for Beamer Presentation"
subtitle: "Using R Markdown"
author: |
   | Your Name (Msc) 
   | example@gmail.com
institute: "Your instiution Name"
date: "1/16/2021"
output: 
  beamer_presentation:
    theme: "default"
    colortheme: "dracula"
---