Latex学习记录
目录
编译产生带书签的pdf(PDF with bookmark)(2022-01-11)
参考:How do I create bookmarks with pdfLaTeX?
VScode+SumatraPDF配置:【综合下来还是专事专干,使用TexWorks好,已放弃】
SumatraPDF download: Sumatra PDF reader
参考:
https://zhuanlan.zhihu.com/p/38178015
https://github.com/James-Yu/LaTeX-Workshop/wiki/View#internal-pdf-viewer
TexWorks 自定义排版脚本-Typesetting script:pdfLaTex-BibTex-2pdfLaTex
参考资料:
AdvancedTypesettingTools · TeXworks/texworks Wiki
Step1:书写自定义脚本
filename: jackie-pdfLaTex-BibTex-2pdfLaTex_0.bat (更快些)
content:
@pdflatex "%1.tex" && bibtex "%1" && pdflatex "%1.tex" && pdflatex -synctex=1 "%1.tex"
filename: jackie-pdfLaTex-BibTex-2pdfLaTex_1.bat (稍慢些)
content:
@pdflatex -synctex=1 "%1.tex" && bibtex "%1" && pdflatex -synctex=1 "%1.tex" && pdflatex -synctex=1 "%1.tex"
Step2:配置自定义脚本