我想定制一下这在 Overleaf 上找到了很棒的简历模板,但我之前从未使用过 LaTeX,现在我很挣扎。
我想重新创建模板中用于插入记录的基本函数“cvitem”,但使用项目符号列表,并且不采用大缩进。以下是我所做的,基于这在 StackExchange 上找到了漂亮的解决方案:
\newcommand{\cviteml}[7]{%
\parbox[t]{0.175\textwidth}{\raggedright #1} %
\parbox[t]{0.475\textwidth}{\raggedright \textbf{#2}} %
\parbox[t]{0.35\textwidth}{\raggedleft \footnotesize #3, \textit{#4}}\\
\midrule
\hspace{0.02 cm} \tabitem #5 \\
\hspace{0.02 cm} \tabitem #6 \\
\hspace{0.02 cm} \tabitem #7 \\
}
对于我来说它几乎是完美的,除了我希望能够通过换行符使其合理,如下所示:
我希望这不是一个太愚蠢的问题,我已经尝试了很多正确的方法但到目前为止没有任何效果^^'提前谢谢!
答案1
最后,我发现在 \parbox 中添加那些 \tabitem 就可以完美地完成工作!
编辑:抱歉,我也不太习惯 StackEchange。以下是我的解决方案及其结果:
\newcommand{\cviteml}[7]{%
\parbox[t]{0.175\textwidth}{\raggedright #1} %
\parbox[t]{0.475\textwidth}{\raggedright \textbf{#2}} %
\parbox[t]{0.35\textwidth}{\raggedleft \footnotesize #3, \textit{#4}}\\
\midrule
\tabitem \parbox[t]{0.975\textwidth}{#5} \\
\tabitem \parbox[t]{0.975\textwidth}{#6} \\
\tabitem \parbox[t]{0.975\textwidth}{#7} \\}
}