Skip to content

Commit

Permalink
Merge pull request #8 from NathanielJS1541/initial_release
Browse files Browse the repository at this point in the history
Initial template release
  • Loading branch information
NathanielJS1541 authored Sep 13, 2024
2 parents 2ae7329 + 8b87c2c commit 57e8eef
Show file tree
Hide file tree
Showing 20 changed files with 1,078 additions and 2 deletions.
33 changes: 32 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# -------------------------------------------------------------------------------------------------
# TeX.gitignore
# From https://github.com/github/gitignore/blob/main/TeX.gitignore

## Core latex/pdflatex auxiliary files:
*.aux
*.lof
Expand Down Expand Up @@ -118,7 +122,7 @@ acs-*.bib
*.sls

# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist
*.ist

# gnuplot
*.gnuplot
Expand Down Expand Up @@ -304,3 +308,30 @@ TSWLatexianTemp*
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
# Uncomment the next line to have this generated file ignored.
#*Notes.bib

# The vc bundle (https://ctan.org/tex-archive/support/vc) updates a file called
# vc.tex based on the last commit in the repo. This shouldn't be committed, as
# it will cause it to be updated cyclically, and just create unecessary
# commits.
vc.tex

# -------------------------------------------------------------------------------------------------

# -------------------------------------------------------------------------------------------------
# VisualStudioCode.gitignore
# From https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

# -------------------------------------------------------------------------------------------------
12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"james-yu.latex-workshop",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"christian-kohler.path-intellisense",
"stkb.rewrap",
"esbenp.prettier-vscode",
"file-icons.file-icons",
"streetsidesoftware.code-spell-checker"
]
}
189 changes: 189 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
{
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "lualatexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-lualatex",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "xelatexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-xelatex",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "latexmk_rconly",
"command": "latexmk",
"args": [
"%DOC%"
],
"env": {}
},
{
"name": "makeglossaries",
"command": "makeglossaries",
"args": [
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
],
"env": {}
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
],
"env": {}
},
{
"name": "rnw2tex",
"command": "Rscript",
"args": [
"-e",
"knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')"
],
"env": {}
},
{
"name": "jnw2tex",
"command": "julia",
"args": [
"-e",
"using Weave; weave(\"%DOC_EXT%\", doctype=\"tex\")"
],
"env": {}
},
{
"name": "jnw2texminted",
"command": "julia",
"args": [
"-e",
"using Weave; weave(\"%DOC_EXT%\", doctype=\"texminted\")"
],
"env": {}
},
{
"name": "pnw2tex",
"command": "pweave",
"args": [
"-f",
"tex",
"%DOC_EXT%"
],
"env": {}
},
{
"name": "pnw2texminted",
"command": "pweave",
"args": [
"-f",
"texminted",
"%DOC_EXT%"
],
"env": {}
},
{
"name": "tectonic",
"command": "tectonic",
"args": [
"--synctex",
"--keep-logs",
"%DOC%.tex"
],
"env": {}
},
{
"name": "vc",
"command": "./preamble/vc.bat",
"args": [
"-m"
],
}
],
"latex-workshop.latex.recipes": [
{
"name": "pdflatex -> makeglossaries -> pdflatex * 2",
"tools": [
"pdflatex",
"makeglossaries",
"pdflatex",
"pdflatex"
]
},
{
"name": "vc",
"tools": [
"vc"
]
}
],
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 80,
"editor.rulers": [
80
],
"cSpell.language": "en-GB",
"cSpell.words": [
"aboveskip",
"altlist",
"altlisthypergroup",
"belowskip",
"fancyhdr",
"Fira",
"fleqn",
"graphicx",
"lastpage",
"leqno",
"letterpaper",
"listhypergroup",
"longtable",
"notitlepage",
"onecolumn",
"openany",
"openright",
"opensans",
"seealso",
"titletoc",
"ulem",
"vhistory",
"xcolor"
]
}
Loading

0 comments on commit 57e8eef

Please sign in to comment.