https://github.com/argentum11/latex
https://github.com/argentum11/latex
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/argentum11/latex
- Owner: Argentum11
- Created: 2024-02-06T13:45:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-20T03:48:34.000Z (about 1 year ago)
- Last Synced: 2024-02-20T04:29:53.818Z (about 1 year ago)
- Language: TeX
- Size: 1.89 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Latex
## paper size
To change paper size, use
```tex
\documentclass[10pt, letterpaper]
```- letterpaper
- 8.5 x 11 inches
- a4paper## macro
### \def and \setcommand
- \def
- \setcommand
- checks whether or not the command already exists
- allows you to define an optional argument
## commentTo comment a line of command, use %, for example
```tex
%$$x=\frac{1}{4}$$
```