Currently, I have:
I would like that:adress
etc
object
opening
etc
closing
name
It is probably really simple, but I have not found the solution.name
adress
etc
object
opening
etc
closing
name
That is my current code:
Code: Select all
\documentclass[11pt]{lettre}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[francais]{babel}
% pour enlever le trait de pliage
\makeatletter
\newcommand*{\NoRule}{\renewcommand*{\rule@length}{0}}
\makeatother
\begin{document}
\begin{letter}{
Recipient\\ % I also would like to comment that line but I apparently can not!
%Adresse\\
%Phone
}
% pas de trait de pliage
\NoRule
\name{My name}
\address{Street, CP City, Country}
\lieu{City}
\telephone{00 00 00 00 00}
\nofax
\email{rydroid@latex.help}
\conc{Object}
\opening{Madame, Monsieur,}
etc
\closing{Cordialement,}
\end{letter}
\end{document}
Thanks.