ThesisTemplate
No description available.
File Explorer
- CODEOWNERS
- 0_abstract.tex
- 0_acknowledgments.tex
- 0_resume.tex
- 1_introduction.tex
- X_appendix_X.tex
- X_chapter.tex
- X_conclusion.tex
- 1_Memento_thesesPUN_Ciaco.pdf
- 2_Thesis_BondeCommande_SubmissionForm.xlsx
- 3_TheseCouverture.xlsx
- cs_faculty_logo.png
- droit-color.svg
- droit-gray.svg
- eco-color.svg
- eco-gray.svg
- info-color.svg
- info-gray.svg
- med-color.svg
- med-gray.svg
- philo-color.svg
- philo-gray.svg
- sciences-color.svg
- sciences-gray.svg
- unamur-black.svg
- unamur-color.svg
- unamur-gray.svg
- bibliography.bib
- citation.tex
- glossary.tex
- presse_universitaire_namur.tex
- index.ist
- umemoir.cls
- return_color_pages.py
- .gitignore
- main.tex
- Makefile
- Preview.pdf
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
latex
View Details ▼
latex
Compile a DVI document from LaTeX source files.
latex {{source.tex}}
Compile a DVI document:
latex -output-directory={{path/to/directory}} {{source.tex}}
Compile a DVI document, specifying an output directory:
latex -halt-on-error {{source.tex}}
Compile a DVI document, exiting on each error:
pdflatex
View Details ▼
pdflatex
Compile a PDF document from LaTeX source files.
pdflatex {{source.tex}}
Compile a PDF document:
pdflatex -output-directory={{path/to/directory}} {{source.tex}}
Compile a PDF document specifying an output directory:
pdflatex -halt-on-error {{source.tex}}
Compile a PDF document, exiting on each error:
