当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- (O) Analysis of service manager (1) BinderInternal.getContextObject
- Gopherchina 2020 Conference
- 实验
- 总结: 10月海外DeFi新项目,更多资管策略来了!
- Exercise 5
- Solution of DEV-C + + unable to debug in Windows Environment
- Learn to record and analyze
- read文件一个字节实际会发生多大的磁盘IO?
- RestfulApi 学习笔记——父子资源(四)
- IT industry salary has been far ahead! Ten years later, is the programmer still a high paying profession?
猜你喜欢
Simple process of reading pictures by QT program developed by Python
experiment
The birth of a new integrated memory and computing chip is conducive to the application of artificial intelligence~
学习记录并且简单分析
构建者模式(Builder pattern)
Flink's sink: a preliminary study
Simulink中封装子系统
I used Python to find out all the people who deleted my wechat and deleted them automatically
What are the necessary laws and regulations to know when entering the Internet?
关于adb连接手机offline的问题解决
随机推荐
Golang ICMP Protocol detects viable hosts
read文件一个字节实际会发生多大的磁盘IO?
Js中常见的内存泄漏场景
区块链周报:数字货币发展写入十四五规划;拜登邀请MIT数字货币计划高级顾问加入总统过渡团队;委内瑞拉推出国营加密交易所
实验
IT industry salary has been far ahead! Ten years later, is the programmer still a high paying profession?
(O)ServiceManager分析(一)之BinderInternal.getContextObject
AI周报:允许“员工自愿降薪”;公司回应:员工内心高兴满意;虎牙HR将员工抬出公司;瑞典禁用华为中兴5G设备
awk实现类sql的join操作
How to make a correct summary for 7 years?
vim-配置教程+源码
基于阿里云日志服务快速打造简版业务监控看板
Do these mistakes in your resume affect your annual salary of one million?
搭载固态硬盘的服务器究竟比机械硬盘快多少
Don't release resources in finally, unlock a new pose!
三、函数的参数
苏州游记
LeanCloud 十月变化
喜获蚂蚁offer,定级p7,面经分享,万字长文带你走完面试全过程
聊聊Go代码覆盖率技术与最佳实践