If you see this, something is wrong
First published on Thursday, Aug 14, 2025 and last modified on Wednesday, Dec 10, 2025 by François Chaplais.
Plain text in LaTeX is just plain text as you can use every where. However, if you want to go beyong that, you will have to use LaTeX commands. LateX Commands are distinguished from ordinary text by the fact that they begin with a backslash \ character.
Beyond this, you will have to use LaTeX commands. A LaTex command is built with the following contiguous components:
{mandatory parameter}
[optional parameter]. Since these parameters are optional, they can be omitted in the command.
As a summary, here is pseudo-code that represents a valid LaTeX command structure:
\name[optional]{mandatory}Environments are delimited by an opening statement and a closing statement. The structure is the following.
\begin{environment name}
content ....
\end{environment name}For instance, to create a quote, the following construction is used.
\begin{quote}
The quote itself.
\end{quote}The result is
The quote itself.
Summary 1
LaTeX commands are single words that begin with a backslash \ character. Simple commands are applied directely to the command parameters. The \begin and \end commands delimit a LaTeX environment, which may include a mix of ordinary text and LaTeX commands.