Compare commits

..

1 commit
main ... pdfx

Author SHA1 Message Date
704db26798
providing compliance with PDF/A instead of a tagged pdf 2024-03-25 09:50:38 +01:00
20 changed files with 79 additions and 466 deletions

View file

@ -1,7 +0,0 @@
VC = git
all:
clean:
@$(VC) clean -Xdf

View file

@ -3,12 +3,10 @@
- [C](#c)
- [C++](#c-1)
- [LaTeX](#latex)
- [Book](#book)
- [Document](#document)
- [Examen](#examen)
- [Presentation](#presentation)
- [OCaml](#ocaml)
- [Python](#python)
- [OCaml](#ocaml)
- [Rust](#rust)
- [Typescript](#typescript)
@ -18,8 +16,8 @@ Copy and paste [`c/`](./c/) directory, and you should be good to go!
- Remember to change executable's name and change std's target in
the [`Makefile`](./c/Makefile).
- **Run `make` to compile the program in release mode.**
- **Run `make debug` to compile the program in debug mode.**
- **Run `make` to compile the program.**
- **Run `make dev` to compile the program in debug mode.**
- **Run `make clean` to clean artifacts.**
## C++
@ -28,28 +26,14 @@ Copy and paste [`cpp/`](./cpp/) directory, and you should be good to go!
- Remember to change executable's name and change std's target in
the [`Makefile`](./cpp/Makefile).
- **Run `make` to compile the program in release mode.**
- **Run `make debug` to compile the program in debug mode.**
- **Run `make` to compile the program.**
- **Run `make dev` to compile the program in debug mode.**
- **Run `make clean` to clean artifacts.**
## LaTeX
### Book
This is for complex document.
Copy and paste [`latex/book`](./latex/book/) directory,
and you should be good to go!
- **Run `make` to compile the document.**
- **Run `make clean` to clean artifacts.**
> It is by default configured to output `book.pdf`.
### Document
This is for simple document.
Copy and paste [`latex/document`](./latex/document/) directory,
and you should be good to go!
@ -58,33 +42,30 @@ and you should be good to go!
> It is by default configured to output `document.pdf`.
### Examen
This is for simple test.
Copy and paste [`latex/exam`](./latex/exam/) directory,
and you should be good to go!
- **Run `make` to compile the document.**
- **Run `make clean` to clean artifacts.**
> It is by default configured to output `test.pdf`.
### Presentation
This is for presentations.
Copy and paste [`latex/presentation`](./latex/presentation/) directory,
and you should be good to go!
- **Run `make updatepackage` to download/update dependencie**
**([projektor](https://git.mylloon.fr/Anri/projektor)).**
- **Run `make updatepackage` to download/update dependencie (projektor).**
- **Run `make` to compile the document.**
- **Run `make clean` to clean artifacts.**
> It is by default configured to build `slides.tex` and output `slides.pdf`.
> There is a more advanced file with more examples named `slides_advanced.tex`.
## Python
Copy and paste [`python/`](./python/) directory, and you should be good to go!
- **Run `python main.py` to start the program.**
> It's recommended to use virtual environnement:
>
> - `virtualenv .` → create the virtual env in the current folder
> - `activate` → activate the virtual env
> - Now, it won't affect your other projects
## OCaml
Copy and paste [`ocaml/`](./ocaml/) directory, and you should be good to go!
@ -103,18 +84,6 @@ Copy and paste [`ocaml/`](./ocaml/) directory, and you should be good to go!
> It's recommended to have this one as a "working example", and still create
> new projects via `dune init proj`.
## Python
Copy and paste [`python/`](./python/) directory, and you should be good to go!
- **Run `python main.py` to start the program.**
> It's recommended to use virtual environnement:
>
> - `virtualenv .` → create the virtual env in the current folder
> - `activate` → activate the virtual env
> - Now, it won't affect your other projects
## Rust
Copy and paste [`rust/`](./rust/) directory, and you should be good to go!

View file

@ -2,9 +2,9 @@ CC = gcc
RM = rm
SOURCES = $(wildcard src/*.c)
OBJECTS = $(patsubst %.c,%.o,$(notdir $(SOURCES)))
OBJETS = $(patsubst %.c,%.o,$(notdir $(SOURCES)))
CFLAGS = -std=c17 -pedantic
CFLAGS = -std=c11 -pedantic
LDFLAGS =
EXE = example
@ -13,19 +13,19 @@ EXE_EXT = out
%.o: src/%.c
$(CC) -c $< -o $@ $(CFLAGS)
release: CFLAGS += -O3
release: compilation
compilation: $(OBJETS)
$(CC) -o $(EXE).$(EXE_EXT) $(OBJETS) $(LDFLAGS)
debug: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
debug: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
debug: LDFLAGS += -fsanitize=undefined -fsanitize=leak
debug: compilation
main: CFLAGS += -O3
main: compilation
compilation: $(OBJECTS)
$(CC) -o $(EXE).$(EXE_EXT) $(OBJECTS) $(LDFLAGS)
dev: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
dev: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
dev: LDFLAGS += -fsanitize=undefined
dev: compilation
all:
release
main
clean:
$(RM) $(OBJECTS) $(EXE).$(EXE_EXT)
$(RM) $(OBJETS) $(EXE).$(EXE_EXT)

View file

@ -2,9 +2,9 @@ CXX = g++
RM = rm
SOURCES = $(wildcard src/*.cpp)
OBJECTS = $(patsubst %.cpp,%.o,$(notdir $(SOURCES)))
OBJETS = $(patsubst %.cpp,%.o,$(notdir $(SOURCES)))
CXXFLAGS = -std=c++17 -pedantic
CXXFLAGS = --std=c++11
EXE = example
EXE_EXT = out
@ -12,18 +12,18 @@ EXE_EXT = out
%.o: src/%.cpp
$(CXX) -c -o $@ $< $(CXXFLAGS)
release: CXXFLAGS += -O3
release: compilation
compilation: $(OBJETS)
$(CXX) -o $(EXE).$(EXE_EXT) $(OBJETS)
debug: CXXFLAGS += -Wall -Wextra -Wshadow -Wnon-virtual-dtor -g
debug: CXXFLAGS += -Wold-style-cast -Wsign-conversion
debug: compilation
main: CXXFLAGS += -O3
main: compilation
compilation: $(OBJECTS)
$(CXX) -o $(EXE).$(EXE_EXT) $(OBJECTS)
dev: CXXFLAGS += -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g
dev: CXXFLAGS += -Wold-style-cast -Wsign-conversion
dev: compilation
all:
release
main
clean:
$(RM) $(OBJECTS) $(EXE).$(EXE_EXT)
$(RM) $(OBJETS) $(EXE).$(EXE_EXT)

View file

@ -1,8 +0,0 @@
*
!.gitignore
!Makefile
!*.tex
!*.bib
!sections/

View file

@ -1,19 +0,0 @@
NAME = book
PDF = $(NAME).pdf
TEXMK = latexmk -lualatex -shell-escape -interaction=nonstopmode
QPDF = qpdf --linearize --replace-input
RM = rm -rf
.PHONY: $(PDF)
all: $(PDF)
$(PDF): %.pdf: %.tex
$(TEXMK) $<
@$(QPDF) $@ 2>/dev/null |:
EXTS = aux fdb_latexmk fls log nav out snm synctex.gz toc bbl blg sta
clean:
$(RM) $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext))

View file

@ -1,81 +0,0 @@
\DocumentMetadata{testphase = {phase-II,sec,toc,graphic,minipage,float,text}}
\documentclass[a4paper]{article}
% Files
\usepackage[subpreambles=true]{standalone}
\usepackage{import}
% Font
\usepackage[T1]{fontenc}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[nopatch=footnote]{microtype}
% Languages
\usepackage[french]{babel}
\frenchsetup{SmallCapsFigTabCaptions=false}
\usepackage{csquotes}
\MakeOuterQuote{"}
% Add \extra info to title
\makeatletter
\providecommand{\extra}[1]{
\apptocmd{\@author}{
\end{tabular}
\par\vspace*{0.7em}
\begin{tabular}[t]{c}
#1}{}{}
}
\makeatother
% Change page dimensions
%\usepackage[
% a4paper,
% left=20mm,
% top=20mm,
%]{geometry}
% Bibliography
\bibliographystyle{unsrt}
\nocite{*}
% Metadatas
\def\docTitle{TITLE}
\def\docAuthor{YOU}
\def\authorMail{mailto:place@holder.com}
\def\docSubject{SUBJECT}
\def\docLocation{LOCATION}
% Dependencies
\usepackage[
pdfauthor={\docAuthor}, % author metadata
pdftitle={\docTitle}, % title metadata
pdfsubject={\docSubject}, % subject metadata
hidelinks, % clickable links in table of contents
]{hyperref}
\title{\docTitle}
\author{\docAuthor}
\extra{\docSubject~$\cdot$ \docLocation}
\date{}
\begin{document}
\maketitle
\flushbottom
\tableofcontents
\clearpage
\section{First section}
\import{sections/}{section1}
\section{Second section}
\import{sections/}{section2}
\section{Third section}
\import{sections/}{section3}
\clearpage
\appendix
\bibliography{sources}
\end{document}

View file

@ -1,12 +0,0 @@
\documentclass[class=article]{standalone}
% Code integration
%\usepackage{minted}
%\usemintedstyle{emacs}
\begin{document}
Here is the first section.
\end{document}

View file

@ -1,12 +0,0 @@
\documentclass[class=article]{standalone}
% Code integration
%\usepackage{minted}
%\usemintedstyle{emacs}
\begin{document}
Here is the second section.
\end{document}

View file

@ -1,12 +0,0 @@
\documentclass[class=article]{standalone}
% Code integration
%\usepackage{minted}
%\usemintedstyle{emacs}
\begin{document}
Here is the third section.
\end{document}

View file

@ -1,4 +0,0 @@
@misc{example,
author = {John Doe},
howpublished = {\url{https://example.com}}
}

View file

@ -1,17 +1,16 @@
NAME = document
PDF = $(NAME).pdf
TEX = $(NAME).tex
SRC = $(TEX)
PDF = $(TEX:.tex=.pdf)
TEXMK = latexmk -lualatex -shell-escape -interaction=nonstopmode
QPDF = qpdf --linearize --replace-input
RM = rm -rf
all: $(PDF)
$(PDF): %.pdf: %.tex
$(TEXMK) $<
@$(QPDF) $@ 2>/dev/null |:
EXTS = aux fdb_latexmk fls log nav out snm synctex.gz toc
EXTS = aux fdb_latexmk fls log nav out snm synctex.gz toc xmpdata
clean:
$(RM) $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext))
rm -rf $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext)) pdfa.xmpi

View file

@ -1,60 +1,38 @@
\DocumentMetadata{testphase = {phase-III,math,firstaid}}
\documentclass[a4paper]{article}
\newcommand{\settitle}{TITLE}
\newcommand{\setauthor}{YOU}
\newcommand{\setsubject}{SUBJECT}
\newcommand{\setlocation}{LOCATION}
\newcommand{\setmail}{mailto:place@holder.com}
% Font
\usepackage[T1]{fontenc}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[nopatch=footnote]{microtype}
\begin{filecontents*}{\jobname.xmpdata}
\Title{\settitle}
\Author{\setauthor}
\Subject{\setsubject}
\end{filecontents*}
\documentclass{article}
% Code integration
%\usepackage{minted}
%\setminted{autogobble,breaklines}
%\usemintedstyle{emacs}
\usepackage[T1]{fontenc} % encoding
\renewcommand{\familydefault}{\sfdefault} % sans-serif font
% Languages
\usepackage[french]{babel}
\usepackage[french]{babel} % langages
\frenchsetup{SmallCapsFigTabCaptions=false}
\usepackage{csquotes}
\MakeOuterQuote{"}
% Add \extra info to title
\makeatletter
\providecommand{\extra}[1]{
\apptocmd{\@author}{
\end{tabular}
\par\vspace*{0.7em}
\begin{tabular}[t]{c}
#1}{}{}
}
\makeatother
% Change page dimensions
%\usepackage[
% \usepackage[ % change page dimensions
% a4paper,
% left=20mm,
% top=20mm,
% ]{geometry}
% Metadatas
\def\docTitle{TITLE}
\def\docAuthor{YOU}
\def\authorMail{mailto:place@holder.com}
\def\docSubject{SUBJECT}
\def\docLocation{LOCATION}
% \usepackage{minted} % code integration
% \usemintedstyle{emacs}
\usepackage[
pdfauthor={\docAuthor}, % author metadata
pdftitle={\docTitle}, % title metadata
pdfsubject={\docSubject}, % subject metadata
hidelinks, % clickable links in table of contents
]{hyperref}
\usepackage[a-3u]{pdfx}
\hypersetup{hidelinks} % clickable links in table of contents
\title{\docTitle}
\author{\href{\authorMail}{\docAuthor}}
\extra{\docSubject~$\cdot$ \docLocation}
\title{\settitle}
\author{\href{\setmail}{\setauthor}\\\setsubject~$\cdot$ \setlocation}
\date{}
\begin{document}
\maketitle
\flushbottom

View file

@ -1,5 +0,0 @@
*
!.gitignore
!Makefile
!*.tex

View file

@ -1,17 +0,0 @@
NAME = test
PDF = $(NAME).pdf
TEXMK = latexmk -lualatex -shell-escape -interaction=nonstopmode
QPDF = qpdf --linearize --replace-input
RM = rm -rf
all: $(PDF)
$(PDF): %.pdf: %.tex
$(TEXMK) $<
@$(QPDF) $@ 2>/dev/null |:
EXTS = aux fdb_latexmk fls log nav out snm synctex.gz toc
clean:
$(RM) $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext))

View file

@ -1,146 +0,0 @@
\documentclass[a4paper,12pt,addpoints]{exam}
% Font
\usepackage[T1]{fontenc}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{microtype}
% Code integration
%\usepackage{minted}
%\setminted{autogobble,breaklines}
%\usemintedstyle{emacs}
% Languages
\usepackage[french]{babel}
\frenchsetup{SmallCapsFigTabCaptions=false}
\usepackage{csquotes}
\MakeOuterQuote{"}
% Change page dimensions
%\usepackage[
% a4paper,
% left=20mm,
% top=20mm,
%]{geometry}
% Metadatas
\def\docTitle{TITLE}
\def\docSubject{SUBJECT}
\def\docLocation{LOCATION}
\def\docTimeAllocated{1 heure 30 minutes}
\usepackage[
pdfauthor={\docLocation}, % author metadata
pdftitle={\docTitle}, % title metadata
pdfsubject={\docSubject}, % subject metadata
pdfkeywords={examen, test, \docSubject},
]{hyperref}
% Style marks
\pointsinrightmargin
%\usepackage{color}
%\colorsolutionboxes
% Style head an foot
\pagestyle{headandfoot}
\runningheadrule
\firstpageheader{\docSubject}{}{\docLocation}
\runningheader{\docSubject}{\docTitle}{\docLocation}
\cfoot{\thepage}
% Style question
\renewcommand\questionlabel{\textbf{Exercice \Roman{question}.}}
%\renewcommand\questionshook{\setlength{\labelwidth}{1in}} % realign points
\renewcommand\partlabel{\arabic{partno}.}
\renewcommand\subpartlabel{\alph{subpart}.}
\renewcommand\subsubpartlabel{\greeknum{subsubpart}.}
% Show answers
%\printanswers
\begin{document}
% \definecolor{SolutionBoxColor}{gray}{1} % invisible answer area outline
\begin{center}
{\LARGE\bfseries\docTitle} \\
\docTimeAllocated~-- /\numpoints~\points
\end{center}
\begin{center}
\parbox{14cm}{\centering
\textbf{Tout document autorisé.
Tout dispositif de communication est interdit. } \\
Sauf indication contraire, toute assertion doit être démontrée. \\
Le sujet est composé de \totalnumpages~pages.}
\end{center}
\begin{tabular}{r@{}p{0.8\textwidth}}
Nom & ~: \hrulefill \\[0.5em]
Prénom & ~: \hrulefill
\end{tabular}
% Additional information
%\vspace{1cm}
%\parbox{14cm}{Nota :
% \begin{itemize}
% \item Les exercices sont indépendants.
% \item Toute réponse hors du cadre sera ignorée.
% \end{itemize}}
\vspace{1cm}
\begin{questions}
\question
ÉNONCÉ DE L'EXERCICE 1
\begin{parts}
\part[6]
ÉNONCÉ DE LA QUESTION 1
\begin{solutionorbox}[3cm]
RÉPONSE DE LA QUESTION 1
\end{solutionorbox}
\part[2]
ÉNONCÉ DE LA QUESTION 2
\begin{solutionorbox}[3cm]
RÉPONSE DE LA QUESTION 2
\end{solutionorbox}
\end{parts}
\question
ÉNONCÉ DE L'EXERCICE 2
\begin{parts}
\part[3]
ÉNONCÉ DE LA QUESTION 1
\begin{solutionorbox}[4cm]
RÉPONSE DE LA QUESTION 1
\end{solutionorbox}
\part[2]
ÉNONCÉ DE LA QUESTION 2
\begin{solutionorbox}[4cm]
RÉPONSE DE LA QUESTION 2
\end{solutionorbox}
\end{parts}
\question
ÉNONCÉ DE L'EXERCICE 3
\begin{parts}
\part[3]
ÉNONCÉ DE LA QUESTION 1
\begin{solutionorbox}[3cm]
RÉPONSE DE LA QUESTION 1
\end{solutionorbox}
\part[4]
ÉNONCÉ DE LA QUESTION 2
\begin{solutionorbox}[3cm]
RÉPONSE DE LA QUESTION 2
\end{solutionorbox}
\end{parts}
\end{questions}
\begin{center}
Fin de l'examen.
\end{center}
\end{document}

View file

@ -1,12 +1,12 @@
NAME = slides
TEX = $(NAME).tex
SRC = $(TEX)
PDF = $(TEX:.tex=.pdf)
PKG = projektor.sty
PDF = $(NAME).pdf
TEXMK = latexmk -lualatex -shell-escape -interaction=nonstopmode
QPDF = qpdf --linearize --replace-input
WGET = wget -q --show-progress
RM = rm -rf
all: $(PDF)
@ -14,18 +14,13 @@ all: $(PDF)
$(PDF): %.pdf: %.tex
ifneq (,$(wildcard $(PKG)))
@$(TEXMK) $<
@$(QPDF) $@ 2>/dev/null |:
else
@$(MAKE) updatepackage
@$(MAKE) $@
@echo "Can't proceed, $(PKG) missing."
endif
EXTS = aux fdb_latexmk fls log nav out snm synctex.gz toc vrb
clean:
$(RM) $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext))
full-clean: clean
$(RM) $(PKG)
rm -rf $(PDF) _minted-$(NAME)/ $(foreach ext,$(EXTS),$(NAME).$(ext))
updatepackage:
@$(WGET) https://git.mylloon.fr/Anri/projektor/raw/branch/main/projektor.sty \

View file

@ -6,15 +6,14 @@
\author{YOU}
\date{}
\begin{document}
\maketitle
\begin{frame}[t,plain]{\contentsname}
\tableofcontents
\end{frame}
\section{SECTION}
\begin{frame}{TITLE}
Hello, world!
@ -26,4 +25,5 @@
\end{center}
\end{frame}
\end{document}

View file

@ -7,8 +7,8 @@
\institute{SUBJECT $\cdot$ LOCATION}
\date{}
\begin{document}
\maketitle
\section[FIRST SECTION]{SECTION} % title and subtitle reversed
@ -37,7 +37,6 @@
\end{center}
\end{frame}
\appendix
\begin{frame}{Sources}
\begin{itemize}\begin{multicols}{2}

View file

@ -8,7 +8,3 @@ license = "AGPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[lints.clippy]
pedantic = "warn"