Add LaTeX model from virli course
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
917a307d25
commit
313597aede
1
tutorial/adlin-section.sty
Normal file
1
tutorial/adlin-section.sty
Normal file
@ -0,0 +1 @@
|
|||||||
|
\renewcommand\section{\@startsection{section}{1}{\z@}{\z@}{5mm}{\section@box}}
|
42
tutorial/adlin.sty
Normal file
42
tutorial/adlin.sty
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
\tcbuselibrary{skins,breakable}
|
||||||
|
\newtcbox{\section@box}{tile,before=\noindent,after=,
|
||||||
|
fontupper=\normalfont\Large\bfseries,capture=minipage,colback=ForestGreen!80,coltext=white,
|
||||||
|
boxsep=0mm,top=4mm,bottom=4mm,left=\oddsidemargin+1in,right=\oddsidemargin+1in,
|
||||||
|
spread sidewards,fuzzy halo=1mm with ForestGreen!50!black}
|
||||||
|
|
||||||
|
\newtcolorbox{alertbox}[1][]{breakable,enhanced,
|
||||||
|
before skip balanced=2mm,after skip balanced=3mm,
|
||||||
|
tile,left=11mm,right=2mm,top=1mm,bottom=1mm,
|
||||||
|
colback=white!0,
|
||||||
|
sharp corners,
|
||||||
|
underlay={%
|
||||||
|
\path[fill=OrangeRed!80!black,draw=none] (interior.south west) rectangle node[white]{\Huge\bfseries !} ([xshift=10mm]interior.north west);
|
||||||
|
},#1}
|
||||||
|
|
||||||
|
\newtcolorbox{codebox}[1][]{breakable,enhanced,
|
||||||
|
before skip balanced=2mm,after skip balanced=3mm,
|
||||||
|
tile,left=11mm,right=2mm,top=1mm,bottom=1mm,
|
||||||
|
colback=white!0,
|
||||||
|
sharp corners,
|
||||||
|
underlay={%
|
||||||
|
\path[fill=black,draw=none] (interior.south west) rectangle node[white]{\huge\bfseries\texttt >\_} ([xshift=10mm]interior.north west);
|
||||||
|
},#1}
|
||||||
|
|
||||||
|
\newtcolorbox{questionbox}[1][]{breakable,enhanced,
|
||||||
|
before skip balanced=2mm,after skip balanced=3mm,
|
||||||
|
tile,left=11mm,right=2mm,top=1mm,bottom=1mm,
|
||||||
|
colback=white!0,
|
||||||
|
sharp corners,
|
||||||
|
underlay={%
|
||||||
|
\path[fill=MidnightBlue!85!gray,draw=none] (interior.south west) rectangle node[white]{\Huge\bfseries ?} ([xshift=10mm]interior.north west);
|
||||||
|
},#1}
|
||||||
|
|
||||||
|
\newtcolorbox{morebox}[1][]{breakable,enhanced,
|
||||||
|
before skip balanced=2mm,after skip balanced=3mm,
|
||||||
|
tile,left=7mm,right=7mm,top=1mm,bottom=1mm,
|
||||||
|
colback=white!0,
|
||||||
|
sharp corners,
|
||||||
|
underlay={%
|
||||||
|
\path[fill=ForestGreen!50!white,draw=none] (interior.south west) rectangle node[white]{\Huge\bfseries (} ([xshift=6mm]interior.north west);
|
||||||
|
\path[fill=ForestGreen!50!white,draw=none] (interior.south east) rectangle node[white]{\Huge\bfseries )} ([xshift=-6mm]interior.north east);
|
||||||
|
},#1}
|
47
tutorial/colored-blocks.lua
Normal file
47
tutorial/colored-blocks.lua
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
function Div(el)
|
||||||
|
if el.classes[1] == "warning"
|
||||||
|
then
|
||||||
|
-- insert element in front
|
||||||
|
table.insert(
|
||||||
|
el.content, 1,
|
||||||
|
pandoc.RawBlock("latex", "\\noindent\\begin{alertbox}"))
|
||||||
|
-- insert element at the back
|
||||||
|
table.insert(
|
||||||
|
el.content,
|
||||||
|
pandoc.RawBlock("latex", "\\end{alertbox}"))
|
||||||
|
|
||||||
|
elseif el.classes[1] == "code"
|
||||||
|
then
|
||||||
|
-- insert element in front
|
||||||
|
table.insert(
|
||||||
|
el.content, 1,
|
||||||
|
pandoc.RawBlock("latex", "\\noindent\\begin{codebox}"))
|
||||||
|
-- insert element at the back
|
||||||
|
table.insert(
|
||||||
|
el.content,
|
||||||
|
pandoc.RawBlock("latex", "\\end{codebox}"))
|
||||||
|
|
||||||
|
elseif el.classes[1] == "question"
|
||||||
|
then
|
||||||
|
-- insert element in front
|
||||||
|
table.insert(
|
||||||
|
el.content, 1,
|
||||||
|
pandoc.RawBlock("latex", "\\noindent\\begin{questionbox}"))
|
||||||
|
-- insert element at the back
|
||||||
|
table.insert(
|
||||||
|
el.content,
|
||||||
|
pandoc.RawBlock("latex", "\\end{questionbox}"))
|
||||||
|
|
||||||
|
elseif el.classes[1] == "more"
|
||||||
|
then
|
||||||
|
-- insert element in front
|
||||||
|
table.insert(
|
||||||
|
el.content, 1,
|
||||||
|
pandoc.RawBlock("latex", "\\begin{morebox}"))
|
||||||
|
-- insert element at the back
|
||||||
|
table.insert(
|
||||||
|
el.content,
|
||||||
|
pandoc.RawBlock("latex", "\\end{morebox}"))
|
||||||
|
end
|
||||||
|
return el
|
||||||
|
end
|
@ -22,3 +22,14 @@
|
|||||||
|
|
||||||
% In french, list item starts with dash, not bullet
|
% In french, list item starts with dash, not bullet
|
||||||
\renewcommand\labelitemi{---}
|
\renewcommand\labelitemi{---}
|
||||||
|
|
||||||
|
\usepackage{etoolbox}
|
||||||
|
|
||||||
|
\usepackage{tcolorbox}
|
||||||
|
\usepackage{../adlin}
|
||||||
|
\usepackage{../adlin-section}
|
||||||
|
|
||||||
|
\makeatletter
|
||||||
|
\pretocmd{\subsection}{\addtocontents{toc}{\protect\addvspace{-5\p@}}}{}{}
|
||||||
|
\pretocmd{\subsubsection}{\addtocontents{toc}{\protect\addvspace{-6\p@}}}{}{}
|
||||||
|
\makeatother
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
PANDOCOPTS = --pdf-engine=xelatex \
|
PANDOCOPTS = --pdf-engine=lualatex \
|
||||||
--standalone \
|
--standalone \
|
||||||
--number-sections \
|
--number-sections \
|
||||||
--toc \
|
--toc \
|
||||||
-f markdown+smart \
|
-f markdown+smart \
|
||||||
-M fontsize=12pt \
|
-M fontsize=12pt \
|
||||||
-M papersize=a4paper \
|
-M papersize=a4 \
|
||||||
-M mainfont="Linux Libertine O" \
|
-M mainfont="Linux Libertine" \
|
||||||
-M monofont="FantasqueSansMono-Regular" \
|
-M monofont="FantasqueSansMono" \
|
||||||
-M sansfont="Linux Biolinum O" \
|
-M sansfont="Linux Biolinum" \
|
||||||
-M colorlinks=true \
|
-M colorlinks=true \
|
||||||
-M linkcolor="black" \
|
-M linkcolor="black" \
|
||||||
-M urlcolor="ForestGreen" \
|
-M urlcolor="ForestGreen" \
|
||||||
-M indent=true \
|
-M indent=true \
|
||||||
-V toc-title="Sommaire" \
|
-V toc-title="Sommaire" \
|
||||||
|
-V pdfa \
|
||||||
|
--lua-filter=../colored-blocks.lua \
|
||||||
--include-in-header=../../tutorial/header.tex
|
--include-in-header=../../tutorial/header.tex
|
||||||
|
Reference in New Issue
Block a user