> For the complete documentation index, see [llms.txt](https://antonio-iuliano1993.gitbook.io/software-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://antonio-iuliano1993.gitbook.io/software-notes/other-software/latex-tricks.md).

# Latex tricks

I am tired of always googling them

## SI units

170 micron, etc. are always difficult to format. Luckily the package [siunitx](https://ctan.org/pkg/siunitx) does it for us:

```
\SI{1.55}{\micro\metre}
//the manual now recommends \qty, instead of \SI. It works similarly:
\qty{1.55}{\micro\metre}
```
