Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(appunti): Advanced and Distributed Algorithms LaTex #53

Merged
merged 32 commits into from
Oct 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c153679
aggiunta latex
TommasoRomani Aug 8, 2023
c3beb26
fix: .devcontainer e template
ncvescera Aug 10, 2023
89776e4
fix: WISP
ncvescera Aug 10, 2023
29b9686
fix: SLS
ncvescera Aug 10, 2023
f9c43a3
fix: Knapsack
ncvescera Aug 10, 2023
d375d84
fix: RNA
ncvescera Aug 10, 2023
7bac983
fix: Pole Cutting
ncvescera Aug 10, 2023
dff0b18
fix: MCP
ncvescera Aug 10, 2023
c747661
fix: OBST
ncvescera Aug 11, 2023
8356f71
fix: SA
ncvescera Aug 11, 2023
b8c590d
fix: Ford Fulkerson
ncvescera Aug 11, 2023
91dedba
fix: FF Patological Example
ncvescera Aug 11, 2023
332fb4f
fix: Fat Flow
ncvescera Aug 11, 2023
8b44a89
fix: Delta Scaling
ncvescera Aug 11, 2023
2645780
fix: Preflow
ncvescera Aug 11, 2023
d66c409
fix: Matching Grafi Bipartiti
ncvescera Aug 11, 2023
4da722a
Aggiornato PDF
ncvescera Aug 11, 2023
d765598
fix: Typo
ncvescera Aug 11, 2023
bfd1f1e
fix: frontmatter
ncvescera Aug 11, 2023
3814c69
Aggiornato PDF
ncvescera Aug 11, 2023
e22a97e
fix: Impaginazione
ncvescera Aug 12, 2023
a09ba5e
fix: Impaginazione e Definizioni
ncvescera Aug 12, 2023
2f3b32e
fix: Impaginazione
ncvescera Aug 12, 2023
1a03c2f
Aggiornato PDF
ncvescera Aug 12, 2023
f2ebe90
Update main.tex
CristianCosci Aug 14, 2023
dc912f0
fix: quote
ncvescera Aug 16, 2023
bdbce4e
Aggiornato PDF
ncvescera Aug 16, 2023
18ca88a
fix: TODO
ncvescera Aug 17, 2023
3b29cd9
fix: TODO
ncvescera Aug 17, 2023
37cbee7
fix: TODO
ncvescera Aug 17, 2023
87fe59c
fix: TODO & Impaginazione
ncvescera Aug 17, 2023
04b2427
Aggiornato PDF
ncvescera Aug 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.dockerignore
devcontainer.json
docker-compose.yml
Dockerfile
README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM qmcgaw/latexdevcontainer

# update del package manager
RUN tlmgr update --self

# installo pacchetti necessari
RUN tlmgr install \
listings caption xcolor float wrapfig \
footmisc emoji fontspec emptypage pgf \
babel-italian etoolbox \
&& texhash

# installo font emoji
RUN apt install fonts-noto-color-emoji
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"name": "project-dev",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "vscode",
"runServices": [
"vscode"
],
"shutdownAction": "stopCompose",
"workspaceFolder": "/workspace",
"postCreateCommand": "if [ -f 'requirements.txt' ]; then tlmgr install `cat requirements.txt` && texhash; fi",

"customizations": {
"vscode": {
"extensions": [
"james-yu.latex-workshop",
// Git
"eamodio.gitlens",
// Other helpers
"shardulm94.trailing-spaces",
"stkb.rewrap", // rewrap comments after n characters on one line
// Other
"vscode-icons-team.vscode-icons",
// spell checker
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-italian"
],
"settings": {
// General settings
"files.eol": "\n",
// vscode
"editor.rulers": [
80,
120
],
// Latex settings
"latex-workshop.chktex.enabled": true,
"latex-workshop.latex.recipe.default": "latexmk (lualatex)",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"editor.formatOnSave": true,
"files.associations": {
"*.tex": "latex"
},
"latex-workshop.latexindent.path": "latexindent",
"latex-workshop.latexindent.args": [
"-c",
"%DIR%/",
"%TMPFILE%",
"-y=defaultIndent: '%INDENT%'"
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: "3.2"

services:
vscode:
build: .
image: latexdevcontainer
volumes:
- ../:/workspace
# Docker socket to access Docker server
- /var/run/docker.sock:/var/run/docker.sock
# SSH directory
# - ~/.ssh:/root/.ssh
# For Windows without WSL, a copy will be made
# from /tmp/.ssh to ~/.ssh to fix permissions
# - ~/.ssh:/tmp/.ssh:ro
# Shell history persistence
# - ~/.zsh_history:/root/.zsh_history:z
# Git config
- ~/.gitconfig:/root/.gitconfig
environment:
- TZ=
entrypoint: ["zsh", "-c", "while sleep 1000; do :; done"]

Original file line number Diff line number Diff line change
@@ -0,0 +1,276 @@
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb

## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf

## Generated if empty string is given at "Please type another file name for output:"
main.pdf

## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml

## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync

## Build tool directories for auxiliary files
# latexrun
latex.out/

## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa

# achemso
acs-*.bib

# amsthm
*.thm

# beamer
*.nav
*.pre
*.snm
*.vrb

# changes
*.soc

# comment
*.cut

# cprotect
*.cpt

# elsarticle (documentclass of Elsevier journals)
*.spl

# endnotes
*.ent

# fixme
*.lox

# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm

#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R

# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
*.lzo
*.lzs

# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist

# gnuplottex
*-gnuplottex-*

# gregoriotex
*.gaux
*.gtex

# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref

# hyperref
*.brf

# knitr
*-concordance.tex
# TODO Comment the next line if you want to keep your tikz graphics files
*.tikz
*-tikzDictionary

# listings
*.lol

# luatexja-ruby
*.ltjruby

# makeidx
*.idx
*.ilg
*.ind

# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*

# minted
_minted*
*.pyg

# morewrites
*.mw

# nomencl
*.nlg
*.nlo
*.nls

# pax
*.pax

# pdfpcnotes
*.pdfpc

# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd

# scrwfile
*.wrt

# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/

# pdfcomment
*.upa
*.upb

# pythontex
*.pytxcode
pythontex-files-*/

# tcolorbox
*.listing

# thmtools
*.loe

# TikZ & PGF
*.dpth
*.md5
*.auxlock

# todonotes
*.tdo

# vhistory
*.hst
*.ver

# easy-todo
*.lod

# xcolor
*.xcp

# xmpincl
*.xmpi

# xindy
*.xdy

# xypic precompiled matrices and outlines
*.xyc
*.xyd

# endfloat
*.ttt
*.fff

# Latexian
TSWLatexianTemp*

## Editors:
# WinEdt
*.bak
*.sav

# Texpad
.texpadtmp

# LyX
*.lyx~

# Kile
*.backup

# gummi
.*.swp

# KBibTeX
*~[0-9]*

# TeXnicCenter
*.tps

# auto folder when using emacs and auctex
./auto/*
*.el

# expex forward references with \gathertags
*-tags.tex

# standalone packages
*.sta

# Makeindex log files
*.lpz
Loading
Loading