如何减少二十秒简历上的空白

如何减少二十秒简历上的空白

我只是好奇是否有任何方法可以减少此处的“二十秒简历”格式中灰色矩形部分(使用 tikz 绘制)和右侧文本之间的空白量:https://www.overleaf.com/latex/templates/twenty-seconds-resume-slash-cv/mhyfwrmwjkbc

我喜欢这种格式,但我想在每行中多塞一点文字。附上一张图片来表明我想删除(或减少)的内容 在此处输入图片描述

答案1

注意:你被一个常见的误解所欺骗。互联网上所谓的“LaTeX 模板”实际上是其他人的文件适合他们的具体的需求。因此它接近无法进行任何修改对这些进行调整,而不会破坏整个内容。它们实际上只是为了与您的内容进行交换。任何其他调整都超出了范围。

转至twentysecondcv.cls第 112 行并编辑:

    \node [rectangle, fill=sidecolor, anchor=north, minimum width=9cm, minimum height=\paperheight+1cm] (box) at (-5cm,0.5cm){};

更改-5cm为例如-4.7cm

    \node [rectangle, fill=sidecolor, anchor=north, minimum width=9cm, minimum height=\paperheight+1cm] (box) at (-4.7cm,0.5cm){};

同时编辑第 261 行:

\RequirePackage[left=7.6cm,top=0.1cm,right=1cm,bottom=0.2cm,nohead,nofoot]{geometry}

改成:left=7.6cmleft=7.3cm

\RequirePackage[left=7.3cm,top=0.1cm,right=1cm,bottom=0.2cm,nohead,nofoot]{geometry}

相关内容