如何在moderncv中的cvitem中放置一个持续函数“\foocontinued”?

如何在moderncv中的cvitem中放置一个持续函数“\foocontinued”?

我有一个 moderncv 格式的函数,需要超过 9 个参数。如果我使用“\foocontinued”如何定义接受超过 9 个参数的命令我有以下问题。

  1. 如果我将其放置\foocontinued在项目内部,\cvitem{}{\foocontinued}则会收到以下错误:“\foocontinued 的参数有一个额外的 }”

  2. 如果我将其放在\foocontinuedcvitem 之外但在命令 foo 之内,则第十个参数会出现在一行上,如下面的 MWE 所示。

\documentclass[letterpaper]{moderncv}

\moderncvstyle{classic} 
\usepackage[maxbibnames=99,backend=biber,defernumbers=true,sorting=ydnt,url = false]{biblatex}
\firstname{Author}
\familyname{}
\title{Curriculum Vitae}

\newcommand\foo[9]{%
    \cvitem{[#1]}{
    #2
    #3
    #4
    #5
    #6
    #7
    #8
    #9 .The end of the normal function. Item 10 should follow this but instead in on a new line.    } \foocontinued   } 
\newcommand\foocontinued[1]{
    This is item #1  
}

% build the document 
\begin{document}
\makecvtitle

\foo{1}{2}{3}{4}{5}{6}{7}{8}{9}{10}

\end{document}

如何在 cvitem 中获取第 10 个参数?

答案1

即兴发挥,但它应该可以工作:

\newcommand\foo[9]{\foocontinued{#1}{#2 #3 #4 #5 #6 #7 #8 #9}}
\newcommand\foocontinued[3]{\cvitem{[#1]}{#2 This is item #3}}

相关内容