# LaTeX

LaTeX is a powerful typesetting system that renders books and has specific markup for mathematics

# Angle Brackets (Greater Than, Less Than) show as upside down question and exclaimation marks

This is an issue when &lt;&gt; render incorrectly, it can look very weird.

### Check your encoding

According to [this post](https://imathworks.com/tex/tex-latex-beramono-and-texttt-angle-brackets-show-as-inverted-exclamation-mark-and-inverted-question-mark-symbols-upside-down-signs-like-in-spanish/) ([mirror](https://archive.jamesravey.me/archive/1673198086.459024/singlefile.html)), it could be as simple as not using the correct encoding and can be remedied with the correct package being included in the document:

```latex
\usepackage[T1]{fontenc}
```