当前位置:   article > 正文

VSCode+Latex编译报错:“I found no \bibdata commandI found no \bibstyle command”的解决方式_i found no bibdata

i found no bibdata

在使用VSCode进行Latex的编译的时候报错:

  1. I found no \bibdata command
  2. I found no \bibstyle command

搜索了一些资料,怀疑是编译链存在问题;

再回想起来之前参照基于Visual Studio Code的 LaTeX环境配置及使用示例(超详细)_vs code可以用哪些看latex的外部pdf阅读器-CSDN博客安装TeXLive的过程中觉得这个编译器太大了,于是终止了安装,改用MiKTeX(在此之前我已经按照这个教程中的后面步骤配置了settings.json),配置好MiKTeX之后发生的报错。

解决方法:

检查自己文件的编译链设置,用以下内容覆盖(怀疑安装MiKTeX时没有自动更新配置内容)

  1. "latex-workshop.latex.recipes": [
  2. {
  3. "name": "latexmk",
  4. "tools": [
  5. "latexmk"
  6. ]
  7. },
  8. {
  9. "name": "latexmk (latexmkrc)",
  10. "tools": [
  11. "latexmk_rconly"
  12. ]
  13. },
  14. {
  15. "name": "latexmk (lualatex)",
  16. "tools": [
  17. "lualatexmk"
  18. ]
  19. },
  20. {
  21. "name": "latexmk (xelatex)",
  22. "tools": [
  23. "xelatexmk"
  24. ]
  25. },
  26. {
  27. "name": "pdflatex -> bibtex -> pdflatex * 2",
  28. "tools": [
  29. "pdflatex",
  30. "bibtex",
  31. "pdflatex",
  32. "pdflatex"
  33. ]
  34. },
  35. {
  36. "name": "Compile Rnw files",
  37. "tools": [
  38. "rnw2tex",
  39. "latexmk"
  40. ]
  41. },
  42. {
  43. "name": "Compile Jnw files",
  44. "tools": [
  45. "jnw2tex",
  46. "latexmk"
  47. ]
  48. },
  49. {
  50. "name": "Compile Pnw files",
  51. "tools": [
  52. "pnw2tex",
  53. "latexmk"
  54. ]
  55. },
  56. {
  57. "name": "tectonic",
  58. "tools": [
  59. "tectonic"
  60. ]
  61. }
  62. ],

如果还没有解决,可以联系我把整个json文件分享给你,然后用这个文件覆盖你原来的json文件试试。

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

闽ICP备14008679号