Custom Beamer template that follows UTN BHI (Universidad Tecnológica Nacional - Bahía Blanca) design guidelines.
- Modern LaTeX Best Practices: Uses
pdflatexwith proper font encoding and typography - Professional Styling: Includes enhanced code highlighting, tables with
booktabs, and mathematical expressions - Clean Build Process: All compilation output goes to the
output/directory - UTN BHI Branding: Custom colors, logos, and visual elements following university guidelines
- Ready-to-Use Examples: Includes slides for figures, tables, code, math, and references
├── main.tex # Main LaTeX document (start here)
├── beamerthemeUTN-BHI.sty # Custom Beamer theme
├── references.bib # Bibliography file
├── run.sh # Compilation script
├── theme/ # Theme assets (logos, backgrounds)
├── output/ # Compiled files (auto-generated)
└── README.md # This file
- LaTeX distribution with
pdflatex - Required packages:
beamer,graphicx,booktabs,listings,xcolor,amsmath - Linux/Unix environment with bash
The file main.tex is the starting point. To compile the presentation:
sh run.sh- Creates an
output/directory for all compilation files - Runs
pdflatexthree times to resolve citations and cross-references - Processes bibliography with
bibtex - Generates the final PDF in
output/main.pdf
If you prefer manual control:
mkdir -p output
pdflatex -output-directory=output main.tex
bibtex output/main
pdflatex -output-directory=output main.tex
pdflatex -output-directory=output main.texAfter successful compilation, you'll find:
output/main.pdf- The final presentationoutput/main.log- Compilation log (useful for debugging)- Other auxiliary files in the
output/directory
The file example.pdf shows a typical output of the template.
- Content: Edit
main.texto add your slides and content - Bibliography: Add references to
references.bib - Theme Colors: Modify
beamerthemeUTN-BHI.styto change colors or styling - Language: Uncomment
\usepackage[spanish]{babel}for Spanish support
- Section slides: Automatic section dividers
- Code highlighting: Enhanced syntax highlighting for multiple languages
- Professional tables: Using
booktabspackage - Mathematical expressions: Full
amsmathsupport - Figure handling: Optimized for PNG/JPG images
- Clean typography: Modern font encoding and microtype
- If compilation fails, check
output/main.logfor errors - Ensure all required LaTeX packages are installed
- Verify that image files exist in the
theme/directory - The script uses non-interactive mode to prevent hanging on errors
Javier Iparraguirre
Universidad Tecnológica Nacional - Bahía Blanca
jiparraguirre@frbb.utn.edu.ar
