我有以下简单的代码:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[left=1in, right=1in, top=1.3in, bottom=0.85in]{geometry}
\usepackage{amsfonts, amssymb, amsthm}
\usepackage{hyperref}
\begin{document}
\title{
\textbf{This is the title of the paper that I will publish soon to get my degree in
mathematics}
}
\date{}
\maketitle
\end{document}
我只需要增加标题行之间的行高(行距)。我该如何实现?!
提前致谢。我非常感谢任何帮助。
答案1
\setstretch
从setspace
包中获取信息可能会有帮助。
\documentclass{article}
\usepackage{setspace,lipsum}
\begin{document}
\title{\setstretch{2}
\textbf{This is the title of the paper that I will publish soon to get my degree in
mathematics}
}
\maketitle
Just to show that normal text is not affected:
\lipsum[1]
\end{document}