Welcome, Guest! Why not create a free forum account today and join in with the world's friendliest bunch of Kindle enthusiasts

How to upload a MOBI?

Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 
Offline spindizzy
03 Oct 2012, 03:37 PM | Post: #71

Member
***

Posts: 57
Joined: Feb 2011

Thanked 0 times

RE: How to upload a MOBI?

(03 Oct 2012 12:34 AM)phaeton Wrote:  
(02 Oct 2012 03:26 PM)J.S.Egan Wrote:  Okay - do NOT do that for the spaces! Instead, we can add some space before ALL the sub-titles - we'll do that later!

Using separate files is fine.

Ok thanks. What about my idea to wrap a chapter at a time, then preview, instead of the whole MS at one go please?

P

You can do each chapter seperately (good idea!)
But if you wnat to preserve all the globale indexing, headings etc, it can be nice to look at them by assembling the whole thing

eg. make a file called "book.html" with:

<html>
<head>
<title>My book</title>
</head>
<body>
<p>Here's my book so far</p>
<p>
<object type="text/html" data="intro.html"></object>
<object type="text/html" data="chapter1.html"></object>
</p>
<!-- this is a comment line could be a place maker for other chapters -->
</body>
</html>

and then your chapters can be done individually (but you should leave out the <html><body></body></html> wrappers on the chapters, since it's already in the "book.html" file)
eg chapter1.html

<h1>Chapter1</h1>
<p>loren ipsos........</p>
<p>another paragragh</p>
<h3>End of chapter 1<h3>
<hr>

You can comment out or leave in chapters in the book.html file as you need.
(The "proper" way to include chunks of html in another html file is to use an include tag, but this only really works when every thing is sitting on a server, which assembles them all. It doesn't work when you are looking at the files on your own computer with a web browser)

Chris
Offline phaeton
03 Oct 2012, 04:43 PM | Post: #72

Junior Member
**

Posts: 44
Joined: Sep 2012

Thanked 0 times

RE: How to upload a MOBI?

(03 Oct 2012 03:32 AM)J.S.Egan Wrote:  
(03 Oct 2012 12:34 AM)phaeton Wrote:  What about my idea to wrap a chapter at a time, then preview, instead of the whole MS at one go please?

Yes - that isn't a bad idea at all.

Excellent, thanks! Big Grin

btw. what might <h3>...</h3> be used for?

Sorry, i'm a real geek.

P
Offline phaeton
03 Oct 2012, 05:19 PM | Post: #73

Junior Member
**

Posts: 44
Joined: Sep 2012

Thanked 0 times

RE: How to upload a MOBI?

(03 Oct 2012 03:37 PM)spindizzy Wrote:  You can do each chapter seperately (good idea!)
But if you wnat to preserve all the globale indexing, headings etc, it can be nice to look at them by assembling the whole thing...eg. make a file called "book.html"...

Hi Chris,

Sorry, I didn't get an individual alert to your post.

1. Shouldn't that be <h3>End of chapter 1</h3> ?
2. "leave out the <html><body></body></html> wrappers" - got that, only wrap for IE preview.
3, "can be nice to look at them by assembling the whole thing" - but surely I will do this anyway, when I come to 'glue' all the files together for a final proof-read before I have a go at uploading to Kindlegen (and then another proof read, etc) ?

4a. What is this please & how does it differ from <h1>...</h1> ?

<html>
<head>
<title>My book</title>
</head>


4b. and ditto <title> ... </title> ?
4c. and ditto <head>...</head> ?

5. What does <body>...</body> do please?

6. What is the function of this 'mark up' please?

6a. <object type=" ... "></object>

6b. <object type="text/html" data="intro.html"></object>

I must print all this out. Many thanks! Big Grin

P
Offline phaeton
27 Oct 2012, 04:58 PM | Post: #74

Junior Member
**

Posts: 44
Joined: Sep 2012

Thanked 0 times

RE: How to upload a MOBI?

Hi,

Back in the swing (hope) again, after having to revise the manuscript. Just converted another sub-chapter to HTML in Notebook & opened it with IE after typing 'html' at the end of the file name. It is statring to go well but I will have to work one sub-chapter at a time then link them all together when the time comes. I'll save all these HTML files in a separate folder or things are going to get tricky.

P