模板
使用信息学院制作的latex模板:xmu-thesis-grd
该模板可以在overleaf上使用,而学校官方给的模板是不行的。
注意:切换Compiler为XeLaTeX
VSCode配置
这里用VSCode编辑。
安装latex的插件之后,还要配置VSCode中的settings.json文件,写入以下信息:
{
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%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": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdf->bib->pdf->pdf",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
{
"name": "xelatex",
"tools": [
"xelatex"
],
},
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
]
}
VSCode默认是不会根据编辑器视窗大小自动折行的,需要在设置中开启:
引用文献格式
从ADS导出BibTeX,复制到reference文件夹下的.bib文件中
这里要注意,ADS默认导出的格式中
journal = {\apj}, %会报错,不能用/
%改成:
journal = {The Astrophysical Journal},
在ADS的设置中可以修改导出的journal格式