B.Tech Project Slides
This repository houses the latex beamer template for creating presentation slides, reporting the works done in the project.
- Move into the required directory using
cdcommand - Compile the main tex file into pdf using pdflatex.
pdflatex main.texIf your project have bib files, you need a series of compilation
pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.texIf you prefer to change the location of intermediate build files, use the following command to build and compile
pdflatex --output-directory=/tmp main.tex- (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