├── .gitignore ├── README.md ├── android-studio-longtable.tex ├── android-studio-shortcuts.tex ├── cheat-sheet.cls ├── dist └── android-studio-shortcuts.pdf ├── fontawesome.sty ├── fonts ├── FontAwesome.ttf ├── Lato-Bold.ttf ├── Lato-BoldItalic.ttf ├── Lato-Italic.ttf ├── Lato-Regular.ttf ├── Roboto-Bold.ttf ├── Roboto-BoldItalic.ttf ├── Roboto-Italic.ttf ├── Roboto-Regular.ttf ├── RobotoMono-Bold.ttf ├── RobotoMono-BoldItalic.ttf ├── RobotoMono-Italic.ttf └── RobotoMono-Regular.ttf ├── make-android-shortcuts.py ├── screenshots └── android-studio-keyboard-shortcut.png └── table-shortcuts.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/README.md -------------------------------------------------------------------------------- /android-studio-longtable.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/android-studio-longtable.tex -------------------------------------------------------------------------------- /android-studio-shortcuts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/android-studio-shortcuts.tex -------------------------------------------------------------------------------- /cheat-sheet.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/cheat-sheet.cls -------------------------------------------------------------------------------- /dist/android-studio-shortcuts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/dist/android-studio-shortcuts.pdf -------------------------------------------------------------------------------- /fontawesome.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fontawesome.sty -------------------------------------------------------------------------------- /fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /make-android-shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/make-android-shortcuts.py -------------------------------------------------------------------------------- /screenshots/android-studio-keyboard-shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/screenshots/android-studio-keyboard-shortcut.png -------------------------------------------------------------------------------- /table-shortcuts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedol/tex-cheat-sheet/HEAD/table-shortcuts.tex --------------------------------------------------------------------------------