Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kardwen/tex
My TeX setup
https://github.com/kardwen/tex
Last synced: 1 day ago
JSON representation
My TeX setup
- Host: GitHub
- URL: https://github.com/kardwen/tex
- Owner: kardwen
- License: unlicense
- Created: 2024-07-18T20:55:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-19T07:07:19.000Z (4 months ago)
- Last Synced: 2024-07-20T07:32:53.304Z (4 months ago)
- Language: TeX
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My TeX setup
Documentation for my TeX setup, results may vary
## TeX editor
Visual Studio Code with the LaTeX-Workshop ([GitHub repository](https://github.com/James-Yu/LaTeX-Workshop)) extension works pretty well and lets you set up version control.
Additionally, you can install the [LTeX](https://github.com/valentjn/vscode-ltex) extension for spell checking.VS Code extensions:
* [LaTeX-Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop)
* [LTeX](https://marketplace.visualstudio.com/items?itemName=valentjn.vscode-ltex)## TeX distribution
The LaTeX-Workshop [installation instructions](https://github.com/James-Yu/LaTeX-Workshop/wiki/Install#installation-and-basic-settings) recommend installing TeXLive as the TeX distribution. I opted for [TinyTeX](https://yihui.org/tinytex) instead, which is faster to install and takes up less space, but has the disadvantage that packages have to be installed manually.
### TinyTeX
Follow the [installation notes](https://yihui.org/tinytex/#installation) for TinyTeX, binary packages are available on [GitHub](https://github.com/rstudio/tinytex-releases/releases).
Install additional packages by typing ``tlmgr install `` in your terminal emulator, below are the commands for the packages I have installed:
```sh
tlmgr update --selftlmgr install babel-english
tlmgr install babel-german
tlmgr install hyphen-german
tlmgr install csquotes
tlmgr install biblatex
tlmgr install biblatex-ieee
tlmgr install biber
tlmgr install fancyhdr
```For BibLaTeX, ``biber`` may have to be installed and added to PATH, e.g. in ``~/.bashrc``:
```sh
export PATH=$PATH:~/.TinyTeX/bin/x86_64-linux
```## Templates
You can find a simple example of an article in the ``templates`` directory.