Skip to content

Commit

Permalink
Format changes (b5, small margin) to reference manual
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuncak committed Dec 28, 2023
1 parent 84fc1ed commit 7c50c57
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ silex/*
scallion/*

# caching of theorems
cache
cache

# emacs backup files
*~
8 changes: 8 additions & 0 deletions refman/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
lisa.aux
lisa.bbl
lisa.blg
lisa.fdb_latexmk
lisa.fls
lisa.log
lisa.out
lisa.toc
11 changes: 11 additions & 0 deletions refman/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Makefile for compiling lisa.tex using latexmk

# Default target
all: lisa.pdf

lisa.pdf: lisa.tex kernel.tex lisa.tex macro.tex prooflib.tex quickguide.tex shortcuts.tex theory.tex theorytopics.tex
latexmk lisa.tex

# Clean target
clean:
latexmk -c lisa.tex
Binary file modified refman/lisa.pdf
Binary file not shown.
33 changes: 24 additions & 9 deletions refman/lisa.tex
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
% !TEX program = xelatex
\documentclass[11pt,a4paper]{book}

\input{macro}
% Page size:
\documentclass[11pt,b5paper,fullpage]{book}
% Reduce margins whatever the original text area size was.
\edef\mtht{\the\textheight}
\edef\mtwd{\the\textwidth}
\usepackage[paperwidth=\dimexpr\mtwd+0.8cm\relax,
paperheight=\dimexpr\mtht+1.8cm\relax,
text={\mtwd,\mtht},
left=0.4cm,
top=1.3cm]{geometry}

\input{macro} % also imports
\input{shortcuts}

\title{LISA Reference Manual (WIP)}
Expand All @@ -13,7 +23,7 @@
%\newfontfamily\titlefont{Arial}

\begin{titlepage}
%\titlefont
\sf
%\fontfamily{\sfdefault}\selectfont

\begin{center}
Expand All @@ -29,21 +39,26 @@

\vspace{1.5cm}

{\Large Laboratory for Automated Reasoning and Analysis\\ EPFL, Switzerland}
{\Large Laboratory for Automated Reasoning and Analysis \\ \ \\ EPFL, Switzerland}

\vspace{1.5cm}

\date{}

\end{center}
\vspace*{10em}
\begin{flushright}\huge
\begin{tabular}{l}
Contributors: \hspace*{2em} \\[1em]

\vfill

\begin{flushright}
\begin{minipage}{15em}
\Large
Contributors: \\[1ex]
\hspace*{3em} \begin{tabular}{l}
Simon Guilloud\\
Sankalp Gambhir
\end{tabular}
\end{flushright}
\end{minipage}
\end{flushright}

\end{titlepage}
\chapter*{Introduction}
Expand Down
4 changes: 2 additions & 2 deletions refman/macro.tex
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
\usepackage[T1]{fontenc}
\usepackage{newunicodechar} %To map unicode in listings to a different font than Fira Code
\renewcommand\sfdefault{ua1}

\sloppy % better (?) margin handling


Expand Down Expand Up @@ -54,8 +55,7 @@
linkcolor=blue,
filecolor=magenta,
urlcolor=blue,
pdftitle={LISA Reference Manual},
pdfpagemode=FullScreen,
pdftitle={LISA Reference Manual}
}
\urlstyle{same}

Expand Down

0 comments on commit 7c50c57

Please sign in to comment.