tagging
예를 들어, 필요한 언어에 따라 -package를 사용하여 CV를 구성하려고 합니다 . \tagged{}
내부 의 문제 \cventry
는 두 번째 및 여섯 번째 인수에서는 잘 작동하지만 세 번째, 4, 5번째 인수에서는 제대로 작동하지 않는다는 것입니다. 기이한.
첨부된 MWE에서 첫 번째는 cventry{2016}
제대로 작동하지만 두 번째는 {2015}
작동하지 않습니다. 누구든지 문제를 고안할 수 있나요? 감사합니다!
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\usepackage{tagging}
\firstname{John}
\familyname{Doe}
\title{MWE}
%-----------------------------------------------
\begin{document}
\makecvtitle
\usetag{EN} %Three possible tags: EN, DE, SP
\section{Education}
\cventry{2016}
{\tagged{EN}{Mathematics}\tagged{DE}{Mathematik}\tagged{SP}{Matem\'aticas}}
{University}
{USA}
{(unfinished)}
{\tagged{EN}{Research}\tagged{DE}{Forschung} \tagged{SP}{Investigaci\'on}}
\cventry{2015}
{Pilot}
{\tagged{EN}{Academy}\tagged{DE}{Pilotschule} \tagged{SP}{Academia}} %uncommenting THIS LINE causes error
{}
{}
{}
{}
\end{document}
답변1
입력을 처리할 수 없는 \cventry
용도 의 기본 정의는 다음과 같습니다.\ifthenelse
기본 정의
\renewcommand*{\cventry}[7][.25em]{%
\cvitem[#1]{#2}{%
{\bfseries#3}%
\ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}%
\ifthenelse{\equal{#5}{}}{}{, #5}%
\ifthenelse{\equal{#6}{}}{}{, #6}%
.\strut%
\ifx&%
\else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}\fi}}
대신 사용 \ifx
하면 작동합니다.
\makeatletter
\renewcommand*{\cventry}[7][.25em]{%
\cvitem[#1]{#2}{%
{\bfseries#3}%
\ifx&\else{, {\slshape#4}}\fi%
\ifx&\else{, #5}\fi%
\ifx&\else{, #6}\fi%
.\strut%
\ifx&%
\else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}\fi%
}%
}
\makeatother
전체 코드:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\usepackage{tagging}
\makeatletter
\renewcommand*{\cventry}[7][.25em]{%
\cvitem[#1]{#2}{%
{\bfseries#3}%
\ifx&\else{, {\slshape#4}}\fi%
\ifx&\else{, #5}\fi%
\ifx&\else{, #6}\fi%
.\strut%
\ifx&%
\else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}\fi%
}%
}
\makeatother
\firstname{John}
\familyname{Doe}
\title{MWE}
%-----------------------------------------------
\begin{document}
\makecvtitle
\usetag{EN} %Three possible tags: EN, DE, SP
\section{Education}
\cventry{2016}
{\tagged{EN}{Mathematics}\tagged{DE}{Mathematik}\tagged{SP}{Matem\'aticas}}
{University}
{USA}
{(unfinished)}
{\tagged{EN}{Research}\tagged{DE}{Forschung} \tagged{SP}{Investigaci\'on}}
\cventry{2015}
{Pilot}
{\tagged{EN}{Academy}\tagged{DE}{Pilotschule} \tagged{SP}{Academia}} %uncommenting THIS LINE causes error
{}
{}
{}
{}
\end{document}