This repository has been archived on 2022-10-05. You can view files and clone it, but cannot push or open issues or pull requests.
lb-prez/dracula-beamer/INSTALL.md
2021-11-08 12:27:04 +01:00

890 B

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

  1. Add the beamercolorthemedracula.sty file to your projects root directory
  2. Add \usecolortheme{dracula} to your preamble
  3. 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"
---