当前位置:网站首页>Introduction to latex
Introduction to latex
2020-11-08 16:57:00 【_Open】
Reference resources :
https://liam.page/2014/09/08/latex-introduction/#TeX_%E5%AE%B6%E6%97%8F
https://zhuanlan.zhihu.com/p/38178015
https://www.latexstudio.net/archives/12260.html
https://www.zhihu.com/question/23658979
1.TexLive It's a must tex engine ,VSCode The plug-in is only used to call texlive It's more convenient .
2.VSCode The default plug-in is pdflatex Build engine ,pdflatex I won't support it ctex perhaps xeCJK Compilation of ( chinese ), So it needs to be changed setting, use xelatex Compile : 
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "pdfLaTeX",
"tools": [
"pdflatex"
]
},
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "bibteX",
"tools": [
"bibtex"
]
},
{
"name": "xelatex -> bibtex -> xelatex × 2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex × 2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
3. Chinese needs :
\usepausepackage[UTF8]{ctex}
If the computer defaults to UTF8 Can be removed .
4.bibtex It is used to index references , Reference resources :https://www.zhihu.com/question/30344123
版权声明
本文为[_Open]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢
随机推荐
TypeScript(1-2-2)
RestfulApi 学习笔记——父子资源(四)
关于adb连接手机offline的问题解决
2020-11-05
Summary of rendering of water wave and caustics (etching) in webgl
RabbitMQ之Helloworld
Arduino IDE搭建ESP8266开发环境,文件下载过慢解决方法 | ESP-01制作WiFi开关教程,改造宿舍灯
How does Alibaba cloud's maxcompute add (original ODPs) work?
Summary: in October, more investment management strategies have come to the new overseas defi project!
浅谈,盘点历史上有哪些著名的电脑病毒,80%的人都不知道!
Using k3s to create local development cluster
Learn to record and analyze
契约式设计(Dbc)以及其在C语言中的应用
Do these mistakes in your resume affect your annual salary of one million?
Restfulapi learning notes -- father son resources (4)
关于update操作并发问题
11 important operations of Python list
Arduino ide build esp8266 development environment, slow file download solution | esp-01 make WiFi switch tutorial, transform dormitory lights
uni-app实战仿微信app开发
.NET 大数据量并发解决方案

![[开源] .Net 使用 ORM 访问 华为GaussDB数据库](/img/f8/50715c25a9d49b010cba2ff442c04e.jpg)

