为什么我的 A4 文档打印出来不适合 A4 纸?

为什么我的 A4 文档打印出来不适合 A4 纸?

我使用模板来自这个 GitHub 仓库
我所知,它必须是 A4 尺寸,因为\documentclass[10pt,landscape,a4paper]{article},但似乎不是。当我尝试打印它时,它不适合页面。Acrobat Reader 显示其尺寸为 11.95 x 8.27 英寸,但它不是 A4 尺寸,因为根据本网站。我使用overleaf的默认设置,编译器是pdfLaTeX。

答案1

这是默认模板,为您提供具有正确几何形状的横向 A4 纸张尺寸。

\documentclass[10pt,landscape,a4paper]{article}
% use these with xelatex
%\usepackage{fontspec}
%\setmainfont[Ligatures=TeX]{TeX Gyre Termes}
%\newfontfamily{\defaultfont}{TeX Gyre Termes}
\usepackage{graphicx}
\usepackage[a4paper, top=1.0cm, bottom=1.0cm, left=1.5cm, right=1.5cm, nohead, nofoot]{geometry}

%\setlength{\parindent}{0pt}

\begin{document}
%% your text here
\end{document}

相关内容