当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢
LiteOS-消息队列
Examples of unconventional aggregation
API生命周期的5个阶段
C + + things: from rice cookers to rockets, C + + is everywhere
习题五
Welcome to offer, grade P7, face-to-face sharing, 10000 words long text to take you through the interview process
函数分类大pk!sigmoid和softmax,到底分别怎么用?
markdown使用
Python 列表的11个重要操作
How to make a correct summary for 7 years?
随机推荐
AI周报:允许“员工自愿降薪”;公司回应:员工内心高兴满意;虎牙HR将员工抬出公司;瑞典禁用华为中兴5G设备
experiment
Your random IO hard disk
C + + things: from rice cookers to rockets, C + + is everywhere
Builder pattern
契约式设计(Dbc)以及其在C语言中的应用
On DSA of OpenGL
Learn to record and analyze
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
Framework - SPI four modes + general device driver implementation - source code
AI香水来了,你会买吗?
聊聊Go代码覆盖率技术与最佳实践
laravel8更新之维护模式改进
腾讯:阿里的大中台虽好,但也不是万能的!
How to make a correct summary for 7 years?
Don't release resources in finally, unlock a new pose!
总结: 10月海外DeFi新项目,更多资管策略来了!
AI weekly: employees are allowed to voluntarily reduce salary; company response: employees are happy and satisfied; tiger tooth HR takes employees out of the company; Sweden forbids Huawei ZTE 5g equi
刚刚好,才是最理想的状态
10 common software architecture patterns