Skip to content

Project-Dragon-Fly/Dragon-Fly-Slides

Repository files navigation

DragonFly

B.Tech Project Slides

This repository houses the latex beamer template for creating presentation slides, reporting the works done in the project.

Compiling Latex document

  1. Move into the required directory using cd command
  2. Compile the main tex file into pdf using pdflatex.
pdflatex main.tex

If your project have bib files, you need a series of compilation

pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.tex

If you prefer to change the location of intermediate build files, use the following command to build and compile

pdflatex --output-directory=/tmp main.tex
  1. (Optional) Remove the build files using git. The git un-tracked files can be removed using the clean. Warning this removes all un-tracked files from the directory. Check the gitignore file.
git clean -xf