Pourquoi vous devriez éviter d’utiliser `\it` et `\bf` dans LaTeX/Overleaf: La bonne manière de mettre le texte en gras/italique

Cette page n'est actuellement pas disponible en français, elle est donc présentée en anglais. Nous soutiendriez-vous en aidant à traduire cette page? Traduire cette page

In the world of LaTeX, one of the most popular typesetting systems, there are several commands that have become outdated over the years. Two such commands are \\it and \\bf. While you might find these commands in older documents, there are compelling reasons to avoid them in modern LaTeX documents.

Vous avez besoin d'une solution simple pour gérer vos entrées BibTeX? Découvrez CiteDrive!

  • Gestion de références moderne et basée sur le web
  • Collaborez et partagez avec d'autres chercheurs
  • Intégration avec Overleaf
  • Support complet de BibTeX/BibLaTeX
  • Enregistrez des articles et des sites web directement depuis votre navigateur
  • Recherchez de nouveaux articles dans une base de données de dizaines de millions de références
Essayez CiteDrive

1. They Overwrite Each Other

One of the primary reasons to avoid using \\it and \\bf is that they don’t nest as one might expect. This means that if you attempt to set text in both italic and bold by using both commands, only the last command specified will be applied.

Example:

\\it\bf My Text

This won’t display the text in both italic and bold as one might expect. Instead, only the bold command will be applied because \\bf overwrites the \\it command.

2. Modern Alternatives are Available

Fortunately, there are modern alternatives that don’t have this issue. The commands \textit{} and \textbf{} can be combined seamlessly to achieve the desired effect.

Example:

\textit{\textbf{My Text}}

This will display the text in both italic and bold, just as expected.