Skip to content

Commit

Permalink
Added TeX engine settings
Browse files Browse the repository at this point in the history
  • Loading branch information
GillesC authored Oct 26, 2023
1 parent c42d50a commit 08ace4a
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,27 @@
<!-- END doctoc generated TOC please keep comment here to allow auto update -->


## General

## TeX Engine Settings

Settings in VSCode with increased memory size (pgfplots) and shell escape:
```json
{
"name": "lualatexmk",
"command": "latexmk",
"args": [
"-shell-escape", // <---- added this line
"--extra-mem-bot=10000000", // <---- added this line
"--extra-mem-top=10000000", // <---- added this line
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-lualatex",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
}
```
## Meta

### Finding weird Unicode
Expand Down

0 comments on commit 08ace4a

Please sign in to comment.