在 LaTeX 中使用带有 Moderncv 类的脚注
我有以下问题:我想将脚注与 Moderncv 文档类一起使用。就我而言,如果我尝试编译以下示例,它会给我一个错误:
\documentclass[12pt, a4paper]{moderncv}
\moderncvtheme[grey]{classic}
\firstname{First}
\familyname{Last}
\begin{document}
\section{Start}
Hello\footnote{this is a footnote}
\end{document}
我收到以下错误:
!未定义的控制序列。 \H@@footnotetext ...color@begingroup \@makefntext {\rule \z@ \footnotesep \i... l.9 你好\脚注{这是脚注}
我不知道为什么,但显然,moderncv 文档类是造成此错误的原因,如果我将文档类更改为文章,它就可以工作。
我很感激任何帮助。
I have the following problem: I would like to use footnotes together with the moderncv documentclass. In my case it gives me an error if I try to compile the following example:
\documentclass[12pt, a4paper]{moderncv}
\moderncvtheme[grey]{classic}
\firstname{First}
\familyname{Last}
\begin{document}
\section{Start}
Hello\footnote{this is a footnote}
\end{document}
I get the following error:
! Undefined control sequence.
\H@@footnotetext ...color@begingroup \@makefntext
{\rule \z@ \footnotesep \i...
l.9 Hello\footnote{this is a footnote}
I am not sure why, but obviously the moderncv documentclass is to blame for this error, if I change the documentclass to article it works.
I appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试
footmisc
包裹。即把开头改为You can try the
footmisc
package. I.e. change the beginning to要将脚注放在页面底部,您需要查看此主题:
https://tex.stackexchange .com/questions/48500/footnote-in-moderncv
它解决了我关于脚注的问题。您应该使用 \footnotemark 和 \footnotetext{Some text} 而不是 \footnote
To put footnotes on the bottom of the page, you need to see this topic:
https://tex.stackexchange.com/questions/48500/footnote-in-moderncv
It solves my problem about footnotes. You should use \footnotemark and \footnotetext{Some text} instead of \footnote