Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

isislab-unisa/template

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

17 Commits
17 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

ISISLab logo ย ย ย  University of Salerno logo ย ย ย  Department of Computer Science logo

๐ŸŽ“ ISISLab ยท UNISA LaTeX Templates

Official presentation and thesis templates for ISISLab students and researchers.

MIT License Last commit pdfLaTeX Overleaf ready English and Italian Made for ALL

๐Ÿ–ฅ๏ธ Slides ยท ๐Ÿ“˜ Thesis ยท โฌ‡๏ธ Download ZIP


โœจ About

This repository provides two ready-to-use LaTeX templates for the ISISLab community at the Department of Computer Science, University of Salerno.

Template Best for Main features
Slides Thesis defenses, seminars and research talks Beamer, 16:9 layout, English/Italian labels, reusable visual components
Thesis Bachelor and Master theses English/Italian content, configurable metadata, appendix, writing guide and reproducibility checklist

Tip

Use Overleaf for the easiest setup. No custom compiler command or shell escape is required.


๐Ÿš€ Quick start

Clone the repository

git clone https://github.com/isislab-unisa/template.git
cd template

Use Overleaf

  1. Download this repository as a ZIP.
  2. Choose either the slides or thesis folder.
  3. Create a ZIP containing that folder's files.
  4. In Overleaf, select New Project โ†’ Upload Project.
  5. Keep main.tex as the main document.
  6. Select pdfLaTeX and click Recompile.

Compile locally

Install a recent TeX Live or MiKTeX distribution with latexmk.

cd slides   # or: cd thesis
latexmk -pdf main.tex

๐Ÿ–ฅ๏ธ Presentation template

๐Ÿ“„ English demo PDF ยท ๐Ÿ“„ Italian demo PDF ยท ๐Ÿ“– Slides notes

The slide template is a modern Beamer theme for clear scientific storytelling.

Build a presentation

cd slides

# English demo
latexmk -pdf main.tex

# Italian demo
latexmk -pdf main_ita.tex

Edit the presentation

Open slides/main.tex and change:

\title{Your Presentation Title}
\subtitle{A clear and short subtitle}
\author{Your Name}
\institute{Department of Computer Science, Universitร  degli Studi di Salerno}
\date{\today}

For Italian fixed labels, load the theme with:

\usepackage[italian]{isislabtheme}

Accepted Italian aliases are italian, italiano and ita.

Reusable components

Command Purpose
\ISISSectionIntro Full-screen section divider
\ISISCard Styled content card
\ISISMetricCard Highlight an important number
\ISISBadge Small colored label
\ISISVisualList Numbered visual list
\ISISPipeline Process or method pipeline
\ISISBarChart Lightweight bar chart
\ISISLineChart Lightweight line chart

The theme automatically includes ISISLab and Department branding from slides/assets/.


๐Ÿ“˜ Thesis template

๐Ÿ“„ Demo PDF ยท ๐Ÿ“– Full thesis notes ยท โšก Start here

The thesis project supports:

  • ๐ŸŽ“ Bachelor and Master theses
  • ๐Ÿ‡ฌ๐Ÿ‡ง English and ๐Ÿ‡ฎ๐Ÿ‡น Italian
  • ๐Ÿ“ Configurable student and thesis metadata
  • ๐Ÿ“š Standard BibTeX with ACM-Reference-Format
  • ๐Ÿ“Ž Optional technical appendix
  • โœ… Optional reproducibility checklist
  • โœ๏ธ Optional bilingual research-writing guide
  • ๐Ÿงฉ Fixed preview files for every degree/language combination

1. Select degree and language

Edit thesis/configuration.tex:

\providecommand{\ISISDegreeChoice}{bachelor}  % bachelor | master
\providecommand{\ISISLanguageChoice}{italian} % english  | italian

2. Select optional content

\providecommand{\ISISResearchWritingGuideChoice}{disabled}
\providecommand{\ISISAppendixChoice}{enabled}
\providecommand{\ISISReproducibilityChecklistChoice}{enabled}

Important

The research-writing guide is teaching material. Disable it before preparing the final thesis.

Available accent colors:

\thesisaccent{ISISBlue}

Options: ISISBlue, ISISLightBlue, ISISDeepBlue, ISISCyan, ISISRed.

3. Edit your information

Open thesis/metadata.tex and set:

  • thesis title and subtitle;
  • student name and ID;
  • degree course and department;
  • supervisor and co-supervisor;
  • academic year and keywords;
  • ISISLab name and website.

4. Replace the example content

Content Folder
Bachelor chapters thesis/content/bachelor/
Master chapters thesis/content/master/
Front matter degree folder inside thesis/content/
Writing guide thesis/content/writing-guide/
Appendix thesis/content/appendix/
Reproducibility checklist thesis/content/reproducibility/

The selected language automatically loads the matching English or Italian files.

5. Add references

Add BibTeX entries to thesis/references.bib and cite them normally:

\cite{yourReferenceKey}

Fixed build variants

You can also compile a specific configuration directly:

latexmk -pdf variant-bachelor-english.tex
latexmk -pdf variant-bachelor-italian.tex
latexmk -pdf variant-master-english.tex
latexmk -pdf variant-master-italian.tex

๐Ÿ—‚๏ธ Repository structure

template/
โ”œโ”€โ”€ slides/
โ”‚   โ”œโ”€โ”€ assets/
โ”‚   โ”œโ”€โ”€ isislabtheme.sty
โ”‚   โ”œโ”€โ”€ main.tex
โ”‚   โ”œโ”€โ”€ main_ita.tex
โ”‚   โ””โ”€โ”€ README.md
โ”œโ”€โ”€ thesis/
โ”‚   โ”œโ”€โ”€ assets/
โ”‚   โ”œโ”€โ”€ content/
โ”‚   โ”œโ”€โ”€ configuration.tex
โ”‚   โ”œโ”€โ”€ metadata.tex
โ”‚   โ”œโ”€โ”€ isislab-thesis.sty
โ”‚   โ”œโ”€โ”€ references.bib
โ”‚   โ”œโ”€โ”€ variant-*.tex
โ”‚   โ””โ”€โ”€ main.tex
โ”œโ”€โ”€ LICENSE
โ””โ”€โ”€ README.md

โœ… Before submission

Please verify the current rules of your degree programme, including:

  • official cover wording;
  • degree-course and department names;
  • supervisor roles;
  • declarations;
  • required thesis structure and formatting.

University rules always take priority over this template.


๐Ÿค Contributing

Improvements, bug reports and documentation fixes are welcome.

  1. Fork the repository.
  2. Create a branch.
  3. Make and test your changes.
  4. Open a pull request with a clear description.

For problems or suggestions, open an issue.


โš–๏ธ License and branding

The source code is released under the MIT License.

University, Department and ISISLab names and logos remain the property of their respective owners. Use them only for appropriate academic and institutional purposes.


Made with โค๏ธ for the ISISLab and UNISA student community.

About

Official presentation and thesis templates for the ISISLab community๐ŸŽ“๐Ÿš€

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.