在 LaTeX 中使用带有 Moderncv 类的脚注

发布于 2024-09-24 19:23:18 字数 580 浏览 2 评论 0原文

我有以下问题:我想将脚注与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

注定孤独终老 2024-10-01 19:23:18

您可以尝试 footmisc包裹。即把开头改为

\documentclass[12pt, a4paper]{moderncv}
\usepackage{footmisc} % enabling footnotes.
\moderncvtheme[grey]{classic}
% ... rest the same.

You can try the footmisc package. I.e. change the beginning to

\documentclass[12pt, a4paper]{moderncv}
\usepackage{footmisc} % enabling footnotes.
\moderncvtheme[grey]{classic}
% ... rest the same.
诗酒趁年少 2024-10-01 19:23:18

要将脚注放在页面底部,您需要查看此主题:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文