Fonts & Character Setssetspace

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
mathselpi
Posts: 30
Joined: Wed Dec 31, 2008 4:50 pm

setspace

Post by mathselpi »

Code: Select all

\begin{doublespace}
\textbf{TITLE ONE}\\
\textbf{TITLE TWO}\\
\begin{onehalfspace}
The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
\end{onehalfspace}
\end{doublespace}
İ want to double space for TITLE ONE, TITLE TWO and my text but my text spacing will be one half space. As a result of the above code, between my text and TITLE TWO is the 3.5 space. (double + one half space) how i can to do?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

setspace

Post by frabjous »

Well, how much space do you want there? (1.5., or 2?)

If you're going to nest the spacing environments, I would nest them in the other direction. I.e.,

Code: Select all

\documentclass{article}
\usepackage{setspace}
\begin{document}
\begin{onehalfspace}
\begin{doublespace}
\noindent\textbf{TITLE ONE}\\
\textbf{TITLE TWO}
\end{doublespace}
The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from ``de Finibus Bonorum et Malorum'' by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H.\ Rackham.
\end{onehalfspace}
\end{document}
But this is all fairly obscure. Shouldn't you be using some kind of sectional division commands (e.g., \section, \subsection, etc.) rather than \textbf for TITLE ONE and TITLE TWO?
mathselpi
Posts: 30
Joined: Wed Dec 31, 2008 4:50 pm

Re: setspace

Post by mathselpi »

I want to make double space between TITLE ONE and TITLE TWO. Thanks
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: setspace

Post by frabjous »

That's not what I asked -- but does the code I suggested work for what you want? If so, then mark the thread solved by editing the first post to use the green check icon.
Post Reply