Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
KJ-Falloutlast committed Dec 11, 2022
1 parent 8c3c05c commit 42f8a9a
Show file tree
Hide file tree
Showing 17 changed files with 1,195 additions and 44 deletions.
73 changes: 71 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,74 @@
{
"files.associations": {
"new": "cpp"
// Latex workshop

"latex-workshop.latex.recipes": [
{
"name": "texify", //放在最前面为默认编译方案, 适用于MikTex
"tools": [
"texify"
]
},
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
}
],

"latex-workshop.latex.tools": [
{
"name": "texify",
"command": "texify",
"args": [
"--synctex",
"--pdf",
"--tex-option=\"-interaction=nonstopmode\"",
"--tex-option=\"-file-line-error\"",
"%DOC%.tex"
]
},
{
// 编译工具和命令
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],





}
Binary file removed Journal/latex.pdf
Binary file not shown.
Binary file removed Journal/latex.synctex.gz
Binary file not shown.
15 changes: 0 additions & 15 deletions Journal/latex.tex

This file was deleted.

Loading

0 comments on commit 42f8a9a

Please sign in to comment.