Templates

And Actions Example

Preview

And Actions Example

A minimal example of a Latex document, with a GitHub action to build the PDF automatically when the main branch is updated.

Category

Other

License

Free to use (MIT)

File

latex-example/latex_example.tex

latex_example.texRead-only preview
% Specify the document type, and some style parameters
\documentclass{article}

% Package to define margins, among other things
\usepackage[margin=3cm]{geometry}

% Package for figures
\usepackage{graphicx}

% Package to define colors
\usepackage[dvipsnames]{xcolor}

% This package activates the links inside the text
\usepackage{hyperref}
% Customization of hyperref
\hypersetup{
	colorlinks=true,
	linkcolor=Black
}

% Define document properties
\title{A \LaTeX{} example document}
\author{Mario Rossi, Luigi Bianchi}

\begin{document}

\maketitle
\tableofcontents

% Change links to blue after table of contents
\hypersetup{
	linkcolor=Blue
}

\clearpage

\input{chapters/introduction.tex}
\input{chapters/first_chapter.tex}

\end{document}
Preview
And Actions Example preview
And Actions Example LaTeX Template | Bibby | Bibby AI