vimwiki/tech/latex.wiki

18 lines
491 B
Plaintext
Raw Normal View History

2022-02-02 04:15:01 +00:00
= latex =
LaTeX is a powerful typesetting tool.
== Document classes ==
| Type | string |
| standard paper | article |
| APA | apa6 with params `a4paper, man, british` |
== Images ==
Add images by including `\usepackage{graphicx}`. Then add the
`\graphicspath( {./path/to/images} )` string. To include an image, call
2022-02-02 04:30:01 +00:00
`\includegraphics{file_name_without_extension}`, and the image will be
included.
2022-02-02 04:15:01 +00:00