寄生虫模板?

寄生虫模板?

最近我想写一篇传记。因此,我从 Overleaf 中获取(只需复制粘贴)模板。然后,我意识到我在 texmaker 中编译和运行的每个存档 .tex 总是输出(pdf)我之前复制的传记模板。因此,如果我在我的电脑上运行每个存档,这肯定会很快“摧毁”我的所有文件。我还给你我的驱动器链接,以查看。日志文件,希望有人更了解并帮助我。谢谢。

关联:https://drive.google.com/open?id=1Glw9G99DH_h017V33ow1BCoIvMYorZb2

答案1

您的日志文件显示

(c:/texlive/2019/texmf-dist/tex/latex/marvosym/marvosym.sty

! LaTeX Error: Two \documentclass or \documentstyle commands.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.25 \documentclass[11pt,a4paper,sans]{
                                       moderncv} % Font sizes: 10, 11, or 12..

这似乎意味着你已经覆盖了文件

c:/texlive/2019/texmf-dist/tex/latex/marvosym/marvosym.sty

它应该是一个带有使用该类的文档的乳胶包文件moderncv

您需要恢复marvosym.sty

tlmgr --reinstall marvosym

可能就足够了,这取决于你之前覆盖了多少 texlive

相关内容