# 自然辩证法 **Repository Path**: lingr7/dialectics_of_nature ## Basic Information - **Project Name**: 自然辩证法 - **Description**: 课程论文 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Dialectics_of_Nature_Paper 使用BibLatex的方法,再配合标准的2015文件 https://github.com/hushidong/biblatex-gb7714-2015 [CTeX-org/gbt7714-bibtex-style: GB/T 7714-2015 BibTeX Style](https://github.com/CTeX-org/gbt7714-bibtex-style) 特别的编译序列,需要在vscode插件Latexsworkshop中如下设置。 "xelatex -> biber -> xelatex*2" ```json { "latex-workshop.latex.recipes": [ { "name": "xelatex", "tools": [ "xelatex" ] }, { "name": "xelatex -> bibtex -> xelatex*2", "tools": [ "xelatex", "bibtex", "xelatex", "xelatex" ] }, { "name": "xelatex -> biber -> xelatex*2", "tools": [ "xelatex", "biber", "xelatex", "xelatex" ] } ], "latex-workshop.latex.tools": [ { "name": "latexmk", "command": "latexmk", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "-pdf", "%DOC%" ] }, { "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%" ] }, { "name": "biber", "command": "biber", "args": [ "%DOCFILE%" ] } ], "latex-preview.command": "xelatex", "latex-workshop.latex.autoBuild.run": "never", "python.pythonPath": "C:\\Users\\lin\\Anaconda3\\python.exe", "latex-workshop.view.pdf.viewer": "external", "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", // 关于打开文件的字符集编码问题 "[plaintext]": { "files.encoding": "gbk" }, "[log]": { "files.encoding": "gbk" }, "[java]": { "files.encoding": "gbk" }, "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe", "files.exclude": { "**/.classpath": true, "**/.project": true, "**/.settings": true, "**/.factorypath": true }, "leetcode.endpoint": "leetcode-cn", "python.jediEnabled": false, "window.zoomLevel": 4 } ```