Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 652 Bytes

File metadata and controls

29 lines (22 loc) · 652 Bytes

Writings

Environment Setup

Create a conda environment:

conda env create -f environment.yml
conda activate writings

Install the Latex Workshop VS Code extension: james-yu.latex-workshop

Add the following to the VS Code User Settings JSON:

    "[latex]": {
        "editor.formatOnSave": true
    },
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "latex-workshop.formatting.latex": "tex-fmt",
    "latex-workshop.formatting.tex-fmt.args": [
        "--nowrap",
        "--tabsize",
        "4",
    ],