我需要你的帮助。我正在使用以下命令:
\renewcommand{\baselinestretch}{1.5}
\normalsize
在行间创建间距。但我仍然不确定在哪里插入它,是在begin{document}
每个文本之前、之后还是之前?因为到目前为止,在我写的四页中,有一个段落没有行距,我不知道为什么。或者你知道另一个适用于整个文本的命令吗?可能是一个包?
我的代码:
\documentclass[10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\usepackage[left=35mm,right=35mm,top=35mm,bottom=35mm]{geometry}
\titleformat{\section}{\Huge\bfseries}{\thesection}{1em}{}
\titleformat{\chapter}{\huge\bfseries}{\thesection}{1em}{}
\titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{8.3ex plus .2ex}
\titlespacing*{\chapter}{0pt}{3.5cm}{2cm}
\linespread{1.5}
\begin{document}
\chapter*{Kapitel1}
\section*{Einleitung}
\subsection*{1.1 Motivation}
\begin{large}
答案1
你有没有尝试过
\linespread{1.5cm}
之前
\begin{document}
行?我认为这应该有帮助。