当前位置:   article > 正文

在vscode中配置latex。_vscode配置latex

vscode配置latex

vscode中配置latex。

1、搜索插件 ”latex workshop“并安装,安装好后重启vscode,此时vscode左侧菜单栏出现TEX选项,点击后会出现commands列表,其中build LaTeX project即是编译tex文本的工具,View LaTeX PDF是将tex文本生成pdf的工具。

2、配置文件如下:

在文件-->首选项-->设置-->用户-->扩展-->json-->schemas中添加如下代码:

即可实现效果!

  1. {
  2. "editor.mouseWheelZoom": true,
  3. "latex-workshop.latex.tools": [
  4. {
  5. "name": "xelatex",
  6. "command": "xelatex",
  7. "args": [
  8. "-synctex=1",
  9. "-interaction=nonstopmode",
  10. "-file-line-error",
  11. "-pdf",
  12. "%DOCFILE%"
  13. ]
  14. },
  15. {
  16. "name": "pdflatex",
  17. "command": "pdflatex",
  18. "args": [
  19. "-synctex=1",
  20. "-interaction=nonstopmode",
  21. "-file-line-error",
  22. "%DOCFILE%"
  23. ]
  24. },
  25. {
  26. "name": "bibtex",
  27. "command": "bibtex",
  28. "args": [
  29. "%DOCFILE%"
  30. ]
  31. }
  32. ],
  33. "latex-workshop.latex.recipes": [
  34. {
  35. "name": "xelatex",
  36. "tools": [
  37. "xelatex"
  38. ],
  39. },
  40. {
  41. "name": "pdflatex",
  42. "tools": [
  43. "pdflatex"
  44. ]
  45. },
  46. {
  47. "name": "xe->bib->xe->xe",
  48. "tools": [
  49. "xelatex",
  50. "bibtex",
  51. "xelatex",
  52. "xelatex"
  53. ]
  54. },
  55. {
  56. "name": "pdf->bib->pdf->pdf",
  57. "tools": [
  58. "pdflatex",
  59. "bibtex",
  60. "pdflatex",
  61. "pdflatex"
  62. ]
  63. }
  64. ],
  65. }


3、完成以上步骤,就可以在vscode中新建tex、编写、编译、输出pdf了。texlive和vscode中的latex插件还有更多其他方便的高级功能,但以上基本可以满足我的需求了,就不往下探索了。


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/213645
推荐阅读
相关标签
  

闽ICP备14008679号