News:

Pretty crazy that we're closer to 2030, than we are 2005. Where did the time go!

Main Menu

One space or two spaces after a period?

Started by CrAz3D, January 20, 2011, 08:02:23 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

CrAz3D


iago

I learned two in school, then was forced to re-learn one when I was doing some "professional" writing. It can go both ways depending on which standards you're following.

Blaze

I do two, because that's what I learned in my business class when we did letter writing (for business). 
And like a fool I believed myself, and thought I was somebody else...

iago

Btw: http://forum.x86labs.org/index.php/topic,8578.0.html

I remember writing that when I was told to do one space after a period. Since then it's become a total habit.

nslay

I encourage you to learn LaTeX. It takes care of these details for you.


% Let's write an 'article' with formatting predetermined by 'document engineers.'
\documentclass{article}
\usepackage{float}

\title{Bubble Gum}
\author{nslay}

\begin{document}

\maketitle
\date{}

\section{Introduction}
% Comment
Robots are cool. Everyone loves robots.

This is the next paragraph. It is indented for you.             White space   doesn't mean    anything.

\subsection{Special Introduction Stuff}
Only talking robots are really cool.

\begin{table}[H]
\centering
\begin{tabular}{|c|c|}
\hline
Talking & Non-Talking \\
\hline
2.3 & 1.9 \\
\hline
\end{tabular}
\caption{Table of Robot Coolness Factor}
\end{table}

\end{document}
An adorable giant isopod!

MyndFyre

If the period is to signify the end of a sentence, then two.  If the period is to signify an abbreviation, such as in a title like "Dr. No," then one.  No spaces if the period is "at the end of a quotation."  But, you follow the closing quotes with two spaces in that situation.  :)
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

MyndFyre

nslay, either you, or possibly iago's LaTeX interpreter, are a little off on LaTeX syntax, apparently.  :)

[latex]
% Let's write an 'article' with formatting predetermined by 'document engineers.'
\documentclass{article}
\usepackage{float}

\title{Bubble Gum}
\author{nslay}

\begin{document}

\maketitle
\date{}

\section{Introduction}
% Comment
Robots are cool. Everyone loves robots.

This is the next paragraph. It is indented for you.             White space   doesn't mean    anything.

\subsection{Special Introduction Stuff}
Only talking robots are really cool.

\begin{table}[H]
\centering
\begin{tabular}{|c|c|}
\hline
Talking & Non-Talking \\
\hline
2.3 & 1.9 \\
\hline
\end{tabular}
\caption{Table of Robot Coolness Factor}
\end{table}

\end{document}

[/latex]
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

nslay

#7
Quote from: MyndFyre on January 20, 2011, 12:28:58 PM
nslay, either you, or possibly iago's LaTeX interpreter, are a little off on LaTeX syntax, apparently.  :)

The forum software doesn't implement all of LaTeX.

Here's the resulting PDF as well as the source. The source is an exact copy of the code from my previous post.

P.S. To compile it

latex test.tex
dvipdf test.dvi
An adorable giant isopod!

deadly7

Quote from: MyndFyre on January 20, 2011, 12:27:41 PM
If the period is to signify the end of a sentence, then two.  If the period is to signify an abbreviation, such as in a title like "Dr. No," then one.  No spaces if the period is "at the end of a quotation."  But, you follow the closing quotes with two spaces in that situation.  :)
MLA and CMS disagree with you. APA is the only style guide I've seen that advocates the archaic method of 2 spaces after a period.
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
[17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine

Chavo

MLA didn't change to 1 space until a few years ago.  I've always used their guidelines. 

Sidoh

"archaic"?  I don't think that's a good word for this situation.

I use two.  The choice is completely arbitrary, and there are advantages to both ways.

nslay

Quote from: Sidoh on January 20, 2011, 03:00:14 PM
"archaic"?  I don't think that's a good word for this situation.

I use two.  The choice is completely arbitrary, and there are advantages to both ways.

This is a waste of time. Writers should be focusing on content, not correct formatting. That's why I advocate LaTeX.

To stay on topic, I've always been taught two spaces. However, I always thought this and double-spacing provided the instructor space to write comments and corrections.
An adorable giant isopod!

Falcon

I've always been taught and and used one.

iago

I  had nothing to do with the latex plugin, don't blame me! :P

Sidoh

Quote from: nslay on January 20, 2011, 03:17:08 PM
Quote from: Sidoh on January 20, 2011, 03:00:14 PM
"archaic"?  I don't think that's a good word for this situation.

I use two.  The choice is completely arbitrary, and there are advantages to both ways.

This is a waste of time. Writers should be focusing on content, not correct formatting. That's why I advocate LaTeX.

To stay on topic, I've always been taught two spaces. However, I always thought this and double-spacing provided the instructor space to write comments and corrections.

::).  You bug me.

We're not writing anything, we're having a useless and (mildly) interesting discussion.  There's no content to focus on.  No one is asking for advice on the matter.  I'm pretty sure we're just curious.

Quote from: iago on January 20, 2011, 03:28:54 PM
I  had nothing to do with the latex plugin, don't blame me! :P

hehe.  The plugin probably includes some boilerplate code with every piece of TeX it's passed, so the formatting is pre-determined.  For the sake of security, it probably blacklists some tags, which is why you end up with the mess up there.