Page Layoutline spacing

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
frenchcr
Posts: 8
Joined: Mon Oct 26, 2009 11:55 pm

line spacing

Post by frenchcr »

how do i change the line spacing??

also i want single space on some pages and double space on others

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

line spacing

Post by Stefan Kottwitz »

Hi,

you could use the setspace package. Have a look into the setspace.sty file for its documentation.

Stefan
LaTeX.org admin
frenchcr
Posts: 8
Joined: Mon Oct 26, 2009 11:55 pm

line spacing

Post by frenchcr »

Stefan_K wrote:Hi,

you could use the setspace package. Have a look into the setspace.sty file for its documentation.

Stefan
i tried it but didnt seem to work for me
i put this at the top...
\usepackage{setspace}
then when i wanted to start using double spaces, i did
\doublespacing
\begin{abstract}
text text text
text text text
\end{abstract}

...but the abstract still came out singlespaced
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

line spacing

Post by localghost »

The problem is not comprehensible for me.

Code: Select all

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[onehalfspacing]{setspace}
\usepackage{blindtext}


\begin{document}
  \begin{abstract}
    \blindtext
  \end{abstract}

  \blindtext
\end{document}

Best regards
Thorsten¹
Post Reply