View Single Post
Old 11-01-2013, 01:06 PM   #13
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Here is the way the book looks in Book View. As you can see, I have a slight indentation (1.2 em) at each paragraph:

Click image for larger version

Name:	Initial.png
Views:	601
Size:	67.5 KB
ID:	114442

If you get to the Code View (View - Code View) (or the button on the top menu, it looks like a "<>"). You will see all of your code:

Click image for larger version

Name:	Code.png
Views:	346
Size:	65.5 KB
ID:	114443

At the top, you hopefully see something like:

Code:
  <link href="../Styles/stylesheet.css" rel="stylesheet" type="text/css" />
This means that CSS is being applied to your document. On the left side of Sigil, you should see a folder named "Styles", with that CSS file inside (in my case, the stylesheet is called "stylesheet.css").

Side Note: If you DO NOT see a CSS file in your Styles folder. That means you will have to create one.

Side Note #2: If you see a CSS file in your "Styles" folder, but DO NOT see the <link href [...]> at the top of your code, you can easily do this by following the instructions here for "Link Stylesheet": http://web.sigil.googlecode.com/git/...xt/styles.html

If you open that the CSS stylesheet, you should hopefully see some generic code. What you are looking for is the section which assigns styles to "p" tags:

Click image for larger version

Name:	Stylesheet.png
Views:	401
Size:	47.1 KB
ID:	114444

It is this area where you want to add "text-indent: #.#em;", where "#.#" is the amount of spacing you want, and "em" is the unit of spacing ("1em" is approximately the width of one 'M' character).

Usually, it is recommended to use anywhere between 1 to 2 em (I prefer 2em, JSWolf prefers 1.2em, others prefer smaller/larger).

For example, this is what happens when you change the text-indent to 6em:

Click image for larger version

Name:	6emIndent.png
Views:	298
Size:	67.2 KB
ID:	114445

If you need any more help, feel free to ask.

Quote:
Originally Posted by pargoo View Post
Thanks for the replies so far. What I was aiming for was the customary 5-character indent as per Standard Manuscript Format.
Doing a "5-character indent" is from the ol' bygone era of typewriters (oh the horrors this causes in some documents). It is not the recommended way to do things in the digital world at all. Your best bet is to just choose a text-indent between 1em to 2em. Then you can easily go into the CSS and change one tiny number, and every single paragraph can change at once.

Last edited by Tex2002ans; 11-01-2013 at 01:15 PM.
Tex2002ans is offline   Reply With Quote