当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢

Function classification big PK! How to use sigmoid and softmax respectively?

GopherChina 2020大会

When to write disk IO after one byte of write file

第二章编程练习

Is there no way out for older programmers?

Development of uni app imitating wechat app

Interpretation of deepmind's latest paper: the causal reasoning algorithm in discrete probability tree is proposed for the first time

(O) Analysis of service manager (1) BinderInternal.getContextObject

Comics: looking for the best time to buy and sell stocks

Liteos message queuing
随机推荐
SQL quick query
On DSA of OpenGL
TypeScript(1-2-2)
Your random IO hard disk
.NET 大数据量并发解决方案
Golang 系统ping程序探测存活主机(任意权限)
Chapter 5 programming
Chapter 2 programming exercises
阿里云的MaxCompute数加(原ODPS)用的怎样?
刚刚好,才是最理想的状态
Don't release resources in finally, unlock a new pose!
Talking about, check the history of which famous computer viruses, 80% of the people do not know!
搭载固态硬盘的服务器究竟比机械硬盘快多少
Python 列表的11个重要操作
Tips and skills of CSP examination
IT industry salary has been far ahead! Ten years later, is the programmer still a high paying profession?
PHP generates unique strings
【Elasticsearch 技术分享】—— 十张图带大家看懂 ES 原理 !明白为什么说:ES 是准实时的!
(O) Analysis of service manager (1) BinderInternal.getContextObject
Design by contract (DBC) and its application in C language