第一行的理想行距

第一行的理想行距

问题:我正在准备一份带有页眉页脚的文档,如何减少段落第一行上方的空白?事实上,我不知道这是否可行。请帮帮我。

还有一个问题,A4 纸的行距和页眉页脚的理想尺寸是多少。

梅威瑟:

\documentclass[12pt, a4paper]{article}
\usepackage[top=0.6 in,bottom=0.6 in,left=0.6 in,right=0.6 in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[misc]{ifsym}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{forest}
\usepackage{tikz}
\usepackage{lipsum}
\usepackage{parskip}
\renewcommand{\baselinestretch}{0.5} 
\usetikzlibrary{intersections}
\makeatother
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lastpage}
\lhead{Left top}
\rhead{Right top}
\chead{}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\lfoot{Leftfoot}
\cfoot{}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}
\large

\lipsum[1]

\end{document}

答案1

如果您确实想减小标题和文本区域之间的大小,则必须减少长度\headsep,正如我在此 MWE 中所做的那样。

我从其实际值中减去了 1 厘米。正如您所看到的,它的新长度将太短,因为文本将打印在标题上。您必须根据需要调整该值。也许您正在寻找类似的东西\setlength{\headsep}{0.2cm}

\documentclass[12pt, a4paper]{article}
\usepackage[top=0.6 in,bottom=0.6 in,left=0.6 in,right=0.6 in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lastpage}
\lhead{Left top}
\rhead{Right top}
\chead{}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\lfoot{Leftfoot}
\cfoot{}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

%% This will reduce the skip from the head to the text area.
\addtolength{\headsep}{-1cm}
\begin{document}
%\large

\lipsum[1]

\end{document}

玩得开心(并保留那些原始的 LaTeX 布局设置---它们很漂亮而且选择得很好)

答案2

注释掉下面的包:\usepackage{parskip}。这将有助于减少每个段落上面的空间。

答案3

在序言部分添加以下命令 \setlength{\headsep}{0.2cm}

在此处输入图片描述

相关内容