我想在 latex 中更改文档类纸张格式

我想在 latex 中更改文档类纸张格式

我在 latex 中使用 awesome-cv 模板。在 pdf 中打开后,它有 a4 格式。我将其更改为 a5,信纸,但徒劳无功。我总是必须使用按钮缩放才能看到完整的简历。但我希望我的简历以全页显示,而不是一直缩放。

答案1

hypersetup你可以在序言中设置它。我不明白确切地您想做什么,但请采用以下代码片段并随意调整:

\usepackage{hyperref}
\hypersetup{%
  % PDF meta information
    pdftitle={My Duckument Title},
    pdfauthor={My Name},
    pdfsubject={A duckingly Interesting Subject},
  % Viewport settings
    pdfpagelayout=OneColumn,
    pdfdisplaydoctitle=true,
    pdfcenterwindow=true,
    pdfstartview=FitH,
  % Further bells and whistles (settings pertaining to the looks and workings of the displayed PDF)
    linktocpage=true, % make page number, not text, be link on TOC, LOF and LOT
    pdffitwindow, % resize document window to fit document size
    colorlinks, % Link colors in the document
    linkcolor=#ff0000,
    citecolor=#0ff000,
    filecolor=#00ff00,
    menucolor=#000ff0,
    urlcolor =#0000ff,
    breaklinks=true, % lets links in the document break across lines
    pagebackref=true, % backreference by page number
}

我认为这些键大部分都是不言自明的。其余的都在 hyperref 手册中。最好在那里搜索它们并了解它们的含义,然后使用适合您的键。它们位于第 3.3 节及以后。例如,pdfstartview=FitH将打开 PDF 并将视口(您选择的 PDF 查看器)的缩放级别设置为显示的 PDF 的页面宽度。

相关内容