如何在 R markdown(二十秒格式)中在名字和姓氏之间添加空格?

如何在 R markdown(二十秒格式)中在名字和姓氏之间添加空格?

我使用 Vitae 包中的 R markdown 模板 Twenty Seconds Format 制作了一份简历。但是我无法在名字和姓氏之间添加空格,因此它们会连在一起。我是一个真正的初学者,这是我第一次使用 r markdown。有人知道如何添加空格吗?或者如果做不到这一点,如何编辑姓氏的位置以将其稍微向右移动?谢谢!

name: Marie
surname: Curie

我也尝试过这个,但没有效果:

name: "Marie "
surname: "Curie"

输出 PDF

答案1

我查看了你提到的 R markdown 模板的代码,其中有一个错误。

% Path to file on GitHub: https://github.com/mitchelloharawild/vitae/blob/master/inst/rmarkdown/templates/twentyseconds/resources/twentysecondstemplate.tex

% Incorrect code (line number 72):
\cvname{$name$$if(surname)$$surname$$endif$} % Your name

% Corrected version with an extra space:
\cvname{$name$$if(surname)$ $surname$$endif$} % Your name

在您的计算机中搜索文件twentysecondstemplate.tex,并更改该行,然后重新编译应该可以解决问题。

注意:同一个文件的简历页脚中也有这段代码,那里有作者所需的空间。

如果这对您有用,请向该模板/包的作者提交错误报告。

最后,Twenty Seconds Resume 的类似实现可以在 overleaf 上找到,并且是仅使用 latex 实现的!如果您无法(出于某种原因)找到并修复 R markdown 模板,那么这是另一个选择:

% Path to overleaf: https://www.overleaf.com/latex/templates/twenty-seconds-curriculum-vitae/kfgsngtymkfj

相关内容