Introduction

Le traitement de texte, c'est non seulement faire une page imprimée, mais il y a d'autres contraintes: Il y a essentiellement deux types:

Démonstrations en Wysiwyg

What You See Is What You get
ouvrir un document Word, StarOffice
comment centrer, mettre des tabulations, taper en gras
comment corriger
comment sauver son fichier, choisir le format
comment ré-ouvrir un document
taper des maths, des accents
imprimer

Les formats ASCII

Principe: on tape un texte avec du balisage (Markup). Voici un exemple:
	<html>				\documentclass{report}
	<title>Le titre</title>		\usepackage{a4,french}
	<body>				\begin{document}
					\title{Mon beau titre}
					\author{J.Beigbeder}
					\maketitle
	<h1>1. Debut</h1>		\section{D\'ebut}
	Du texte.			Du texte.
	<h2>1.1. Sous-debut</h2>	\subsection{Sous-d\'ebut}
	</body>				\end{document}
        </html>

Ensuite

... sauver sous toto.tex
$ latex toto			 # compiler
$ xdvi toto			# voir a l'ecran
$ dvips toto			# faire du PS
$ ghostview toto.ps		# autrement facon de voir
$ lpr toto.ps			# imprimer
$ ispell -d francais -T list -t toto.tex # orthographe

Un fichier simple

Un fichier compliqué

Ici une doc. sympa