https://github.com/shevonkuan/the-summary-of-linear-algebra-and-the-analytic-geometry
[暂时停更]华南理工大学线性代数与解析几何笔记
https://github.com/shevonkuan/the-summary-of-linear-algebra-and-the-analytic-geometry
Last synced: 2 months ago
JSON representation
[暂时停更]华南理工大学线性代数与解析几何笔记
- Host: GitHub
- URL: https://github.com/shevonkuan/the-summary-of-linear-algebra-and-the-analytic-geometry
- Owner: ShevonKuan
- License: gpl-3.0
- Created: 2020-06-28T04:35:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T04:53:30.000Z (almost 5 years ago)
- Last Synced: 2025-01-16T04:10:34.011Z (4 months ago)
- Language: TeX
- Homepage:
- Size: 3.51 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 线性代数与解析几何笔记
#### Shevon Kuan
## 简介这是我基于 Latex2$\varepsilon$ 的数学笔记,它是一个系列并将使用一致的模板(目前仅部分开源),将来我可能会对该模板作独立开源处理.这个笔记基于华南理工大学的线性代数课本进行总结.目前由于期末考前只完成了笔者最需要复习的部分,剩余部分仍未完工,并且目前暂不考虑完工,有意加入并希望帮忙完善的的请发邮件[联系我][contact]
[contact]: mailto:[email protected]
**Demo:**
----
## 编译介绍
```Latex``` 编译链```XeLaTex -> bibtex -> makeindex -> texindy -> xeLaTex重复编译```对应```VS Code```设置如下:
```json
"latex-workshop.latex.recipes": [
{
"name": "完整编译链",
"tools": [
"xelatex",
"bibtex",
"makeindex",
"texindy",
"xelatex",
"xelatex"
]
},
]
```
各命令具体配置如下:
```json
"latex-workshop.latex.tools": [
{
// 编译工具和命令
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
},
{
"name": "texindy",
"command": "texindy",
"args": [
"%DOCFILE%.idx"
]
},
{
"name": "makeindex",
"command": "makeindex",
"args": [
"%DOCFILE%.nlo",
"-s",
"nomencl.ist",
"-o",
"%DOCFILE%.nls"
]
}
],
```
----
## TODO:
目前不打算继续完善.