word中对mathtype的公式进行交叉引用
https://zhidao.baidu.com/question/1606664018955501987.html主要参考这个
大概的原理就是,插入一个叫 ( 的题注,然后输入数字,最后用上文中alt+ctrl+enter的方式插入样式分隔符
latex公式如何变窄
https://blog.csdn.net/weixin_43658047/article/details/107758820
vscode配置latex
在http://mirrors.ustc.edu.cn/ctex/legacy/2.9/中下载CTeX_2.9.2.164_Full.exe安装包,安装好后打开VSCode,根据图中的步骤,安装LaTex Workshop。其次,在VSCode界面,按快捷键:ctrl + Shift + p,召唤出搜索,并输入Preferences: Open Settings(JSON)
最后,在setting中添加如下代码。注意,熟悉VSCode的人都知道,这是用户改变配置的地方,是JSON格式的。所以,{}一开始就存在,里面可能还有你之前的配置,那么你只要在你自己修改的配置后面,加入下面{}中LaTex相关的代码即可。如果要用那个中文的文档,默认把pdflatex放到xelatex前面,那么按ctrl+s就是默认用pdflatex编译器了
{
"latex-workshop.latex.recipes": [
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "xelatex",
"tools": [
"xelatex"
]
}
],
"latex-workshop.latex.tools": [{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
}, {
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}],
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.ist",
"*.fls",
"*.log",
"*.fdb_latexmk"
],
"latex-workshop.view.pdf.viewer": "external",
"latex-workshop.view.pdf.external.command": {
"command": "D:/Software/ctex/CTEX/ctex/bin/SumatraPDF.exe", //SumatraPDF.exe的实际路径
"args": [
"%PDF%"
]
}
}
vscode配置好latex后要使用SumatraPDF预览编译好的PDF文件
打开配置文件的命令是 ctrl+shift+P, Open Settings(JSON)
A: 配置文件中加入如下内容:
"latex-workshop.view.pdf.viewer": "external",
"latex-workshop.view.pdf.external.command": {
"command": "E:/Programs/SumatraPDF/SumatraPDF.exe", //SumatraPDF.exe的实际路径
"args": [
"%PDF%"
]
},
SumatraPDF设置->选项->设置反向搜索命令(直接打开SumatraPDF会说便捷模式不能改变默认pdf阅读器,得在VSCODE里点后上角的view latex pdf file)
对于notepad++
"D:\software\Notepad++\notepad++.exe" -n%l "%f"
对于VSCODE
"E:\software\Microsoft VS Code\Code.exe" "E:\software\Microsoft VS Code\resources\app\out\cli.js" -g "%f":"%l"
ppf里用latex公式(https://blog.csdn.net/qq_41365597/article/details/85252853),iguanatex;excel表格转latex:excel2latex.xla
「 LaTex 」解决参考文献中的“期刊”出现下划线方法浅讲
https://blog.csdn.net/Robot_Starscream/article/details/105689676