Add l'art d'argumenter
This commit is contained in:
parent
c3434b91af
commit
53c2af484c
3 changed files with 87 additions and 0 deletions
16
art-argumenter/Makefile
Normal file
16
art-argumenter/Makefile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
filename=$(shell basename $(shell pwd))
|
||||||
|
timestamp=$(shell date +%Y-%m-%d_%H:%M)
|
||||||
|
|
||||||
|
all: snapshot
|
||||||
|
|
||||||
|
snapshot: main.tex
|
||||||
|
@latexmk -pdf main.tex
|
||||||
|
@if ! cmp --silent build/main.pdf ${filename}_*.pdf; then \
|
||||||
|
touch ${filename}_tmp.pdf; \
|
||||||
|
rm ${filename}*.pdf; \
|
||||||
|
cp build/main.pdf ${filename}_${timestamp}.pdf; \
|
||||||
|
echo "Updated"; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -rf build 2>/dev/null
|
35
art-argumenter/exercices/texte1.tex
Normal file
35
art-argumenter/exercices/texte1.tex
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
\documentclass[a4paper,french]{article}
|
||||||
|
|
||||||
|
\title{Texte 1 --- L'Art d'Argumenter}
|
||||||
|
\author{}
|
||||||
|
\date{29 novembre 2021}
|
||||||
|
|
||||||
|
\usepackage{../../cours}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\begin{enumerate}
|
||||||
|
|
||||||
|
\item \textbf{Le thème}
|
||||||
|
|
||||||
|
La violence.
|
||||||
|
|
||||||
|
\item \textbf{Les connecteurs}
|
||||||
|
|
||||||
|
\item \textbf{Les champs lexicaux opposés}
|
||||||
|
|
||||||
|
\item \textbf{Les indices d'énonciation (termes valorisants, dévalorisants, etc.)}
|
||||||
|
|
||||||
|
\item \textbf{Les arguments}
|
||||||
|
|
||||||
|
\item \textbf{Les illustrations}
|
||||||
|
|
||||||
|
\item \textbf{Les deux thèses en présence, celle qui est réfutée et celle qui est défendue}
|
||||||
|
|
||||||
|
\item \textbf{Le type de plan choisi}
|
||||||
|
|
||||||
|
\end{enumerate}
|
||||||
|
|
||||||
|
\end{document}
|
36
art-argumenter/main.tex
Normal file
36
art-argumenter/main.tex
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
\documentclass[a4paper,french]{article}
|
||||||
|
|
||||||
|
\title{L'Art d'Argumenter}
|
||||||
|
\author{}
|
||||||
|
\date{Dernière compilation~: \today{} à \currenttime}
|
||||||
|
|
||||||
|
\usepackage{../cours}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
|
\clearpage
|
||||||
|
|
||||||
|
\section{Plan analytique}
|
||||||
|
|
||||||
|
\begin{enumerate}
|
||||||
|
|
||||||
|
\item Constat, observation, description
|
||||||
|
$\implies$ définir un phénomène ou des problèmes.
|
||||||
|
|
||||||
|
\item Causes, raisons, origines
|
||||||
|
|
||||||
|
\item Conséquences, effets
|
||||||
|
|
||||||
|
\item Solutions, issues, propositions, remèdes
|
||||||
|
|
||||||
|
\end{enumerate}
|
||||||
|
|
||||||
|
\section{Thème --- Thèse}
|
||||||
|
|
||||||
|
Un \emph{thème} est un sujet, aucun avis n'est donné.
|
||||||
|
Dès qu'on pose un jugement, un avis, on établit une \emph{thèse}.
|
||||||
|
|
||||||
|
\end{document}
|
Loading…
Reference in a new issue