Would you like to change the font in LaTeX? Then find out how it works here..
By default, a serif font of the largest 10pt is used in LaTeX. In this tipps + tips article, we will show you how you can change the font for the entire document and which fonts are available to you. We also explain how you can only adjust the font in sections.
You can customize all of the fonts in your document by importing the appropriate font package in the preamble. You should also enter \usepackage[T1]{fontenc} and beforehand \usepackage[utf8]{inputenc} so that special characters and umlauts are displayed correctly. Then use the command: " Font " is to be replaced with your desired font. Some options are for example: for Helvetica , for Latin Modern or for Times . For a full catalog of fonts, see The LaTeX Font Catalog official website. \usepackage{"Schriftart"} helvet lmodern mathptmx
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{"Schriftart"}
helvet
lmodern
mathptmx
You can also use additional commands to customize individual words. We list them for you below and then show the compiled output:
\textbf{Text}
\textit{Text}
\textsf{Text}
\texttt{Text}
\textsc{Text}
\textrm{Text}