修改类以适应不同的纸张尺寸

修改类以适应不同的纸张尺寸

我正在根据四十秒课程准备我的简历

https://www.overleaf.com/latex/templates/forty-seconds-cv/pztcktmyngsk

它最初是用 A4 纸制作的。但由于这里几乎没有这种尺寸,我想将其更改为 letter,但当我在类定义上更改它时,它不会自动重新缩放页面元素。我该怎么做呢?

谢谢你的帮助。

答案1

在 github 上https://github.com/PandaScience/FortySecondsCV它说:

类选项。可以传递给 FortySecondsCV 的可能选项包括:标准物品类别例如 a4paper 或 11pt。

因此请查看https://mirror.marwan.ma/ctan/macros/latex/base/classes.pdf也就是说,正常的美国或英国纸张格式也应该是可行的,例如信纸

例如

\documentclass[letterpaper]{fortysecondscv}

应该可以完成这个工作。

附言:仔细查看了模板,并考虑到 READ.ME 中的 TODO 备注后...到目前为止可能还没有自动调整。

相反,序言列出了预定义和注释掉的项目:

\documentclass[
    a4paper,
    % 9pt,
    % sidesectionsize=Large,
    % showframes,
    % vline=2.2em,
    % maincolor=cvgreen,
    % sidecolor=gray!50,
    % sidetextcolor=green,
    % sectioncolor=red,
    % subsectioncolor=orange,
    % itemtextcolor=black!80,
    % sidebarwidth=0.4\paperwidth,
    % topbottommargin=0.03\paperheight,
    % leftrightmargin=20pt,
    % profilepicsize=4.5cm,
    % profilepicborderwidth=3.5pt,
    % profilepicstyle=profilecircle,
    % profilepiczoom=1.0,
    % profilepicxshift=0mm,
    % profilepicyshift=0mm,
    % profilepicrounding=1.0cm,
    % logowidth=4.5cm,
    % logospace=5mm,
    % logoposition=before,
    % sidebarplacement=right,
]{fortysecondscv}

% fine tune line spacing
% \usepackage{setspace}
% \setstretch{1.1}

%除非您已经尝试过,否则也许删除一些评论或/并根据需要调整值就足够了。

相关内容