In order to achieve Microsoft Word format "Line Spacing | Multiple 1.15" in a LaTeX document, I have used the following commands:
\usepackage{setspace}
\onehalfspacing
\linespread{1.15}
Is that right?
In order to achieve Microsoft Word format "Line Spacing | Multiple 1.15" in a LaTeX document, I have used the following commands:
\usepackage{setspace}
\onehalfspacing
\linespread{1.15}
Is that right?
\onehalfspacing, or it is\linespread{1.15}(does not require\setspace), or\setspace{1.15}.setspacetakes into account the problem of footnotes, lists, &c. Note\onehalfspacingis not\setstretch{1.5}, contrary to what might naively think. – Bernard Dec 27 '16 at 17:39