Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 10-20-2018, 06:14 PM   #1
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Two questions

1) How come some of the chapters in my novels in Sigil have the book title in the title tags on every file and others don't? (I've made them identically and not manually added anything to the title tags.) Does it matter if the title is in those chapter files?

2) I have removed the language ending of that tag that begins <html xmlns... and I have also removed the language stuff from the <body> tag. Is this okay the way I have it? Thanks.
Attached Thumbnails
Click image for larger version

Name:	Selection_048.png
Views:	285
Size:	28.3 KB
ID:	167054  

Last edited by Gregg Bell; 10-20-2018 at 06:48 PM.
Gregg Bell is offline   Reply With Quote
Old 10-20-2018, 07:25 PM   #2
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
First, I wanted to point out KevinH's Sigil Plugin, "Access-Aide".

It helps fill blank <title>s (using the first heading in the document) + add lang + xml:lang to your <html>.

Quote:
Originally Posted by Gregg Bell View Post
1) How come some of the chapters in my novels in Sigil have the book title in the title tags on every file and others don't? (I've made them identically and not manually added anything to the title tags.)
Did you convert using Calibre or something else?

Sometimes the tools put gibberish in the <title> (like InDesign puts the filenames... you can safely delete those):

Code:
<title>Chapter_1.xhtml</title>
<title>abc123456890_book_EPUB.epub</title>
Sometimes tools will put some info (like Book Title, Chapter Title, Author, [...]):

Code:
<title>Gregg Bell - Dupes-A-Navy: Chapter 1</title>


Quote:
Originally Posted by Gregg Bell View Post
Does it matter if the title is in those chapter files?
It doesn't hurt if it's blank, but it could be helpful IF there is meaningful info in the <title>.

Something like:

Code:
<head>
	<title>Chapter One: The Beginning</title>
	<link href="../Styles/stylesheet.css" rel="stylesheet" type="text/css"/>
</head>

<body>
  <h2>Chapter One: The Beginning</h2>
would be helpful for Accessibility reasons:
  • If that HTML gets opened up in a browser, the <title> is what shows in the tab.
  • If being read by a screenreader, the person may have the <title> spoken out loud.
  • Some ereaders might display that as the header/footer (don't know of any that do).

Technical Side Note: WCAG has a few articles on how to create good <title>s:

G88: Providing descriptive titles for Web pages
H25: Providing a title using the title element
Understanding SC 2.4.2

For example, G88 gives this reasoning/recommendation for good <title>s:

Spoiler:
Quote:
Descriptive titles help users find content, orient themselves within it, and navigate through it. A descriptive title allows a user to easily identify what Web page they are using and to tell when the Web page has changed. The title can be used to identify the Web page without requiring users to read or interpret page content. Users can more quickly identify the content they need when accurate, descriptive titles appear in site maps or lists of search results. When descriptive titles are used within link text, they help users navigate more precisely to the content they are interested in.

The title of each Web page should:
  • Identify the subject of the Web page
  • Make sense when read out of context, for example by a screen reader or in a site map or list of search results
  • Be short


Quote:
Originally Posted by Gregg Bell View Post
2) I have removed the language ending of that tag that begins <html xmlns... and I have also removed the language stuff from the <body> tag. Is this okay the way I have it?
Again, having the lang + xml:lang there doesn't hurt.

An EPUB Reader should be able to still pull the book's language from the EPUB's Metadata (Tools > Metadata Editor), and grab your dc:language (in your case, "en" (English) or "en-US" (English (United States)).

BUT, again, think screen reader or someone converting to a different format. They may pull the HTML out separately and read it elsewhere.

So you may want to add the lang + xml:lang to your HTML as well.

This doesn't hurt:

Code:
<html xmlns="http://www.w3.org/1999/xhtml">
but this could be made more helpful:

Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
Another way of explaining: The EPUB Metadata tells the reader "This EPUB is in US English", while the HTML tells the reader "This specific HTML page is in US English".

(Imagine there could be a US English book, but it has a British English chapter within it.)

Technical Side Note:

H57: Using language attributes on the html element

H57 explains why lang + xml:lang on <html> are important:

Spoiler:
Quote:
The objective of this technique is to identify the default language of a document by providing the lang and/or xml:lang attribute on the html element.

Identifying the language of the document is important for a number of reasons:
  • It allows braille translation software to substitute control codes for accented characters, and insert control codes necessary to prevent erroneous creation of Grade 2 braille contractions.
  • Speech synthesizers that support multiple languages will be able to orient and adapt to the pronunciation and syntax that are specific to the language of the page, speaking the text in the appropriate accent with proper pronunciation.
  • Marking the language can benefit future developments in technology, for example users who are unable to translate between languages themselves will be able to use machines to translate unfamiliar languages.
  • Marking the language can also assist user agents in providing definitions using a dictionary.


So it could help:
  • Braille conversion
  • TTS
  • Dictionary support
  • Automatic Translation
    • Think Google Translate
  • Spellchecking
    • Calibre has Multi-Language Spellchecking
  • Hyphenation
  • [...]

Again, an EPUB Reader SHOULD still be able to pull it from the EPUB Metadata... but not all tools will be reading your EPUB in EPUB. :P

Last edited by Tex2002ans; 10-20-2018 at 07:42 PM.
Tex2002ans is offline   Reply With Quote
Advert
Old 10-20-2018, 07:36 PM   #3
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by Tex2002ans View Post
First, I wanted to point out KevinH's Sigil Plugin, "Access-Aide".

It helps fill blank <title>s (using the first heading in the document) + add lang + xml:lang to your <html>.



Did you convert using Calibre or something else?

Sometimes the tools put gibberish (like InDesign puts the filenames in there... you can safely delete those):

Code:
<title>Chapter_1.xhtml</title>
<title>abc123456890_book_EPUB.epub</title>
Sometimes tools will put some info (like Book Title, Chapter Title, Author, [...]) in the <title></title>:

Code:
<title>Gregg Bell - Dupes-A-Navy: Chapter 1</title>




It doesn't hurt if it's blank, but it could be helpful IF there is meaningful info in the <title>.

Something like:

Code:
<head>
	<title>Chapter One: The Beginning</title>
	<link href="../Styles/stylesheet.css" rel="stylesheet" type="text/css"/>
</head>

<body>
  <h2>Chapter One: The Beginning</h2>
would be helpful for Accessibility reasons:
  • If that HTML gets opened up in a browser, the <title> is what shows in the tab.
  • If being read by a screenreader, the person may have the <title> spoken out loud.
  • Some ereaders might display that as the header/footer (don't know of any that do).

Technical Side Note: WCAG has a few articles on how to create good <title>s:

G88: Providing descriptive titles for Web pages
H25: Providing a title using the title element
Understanding SC 2.4.2

For example, G88 gives this reasoning/recommendation for good <title>s:





Again, having the lang + xml:lang there doesn't hurt.

An EPUB Reader should be able to still pull the book's language from the EPUB's Metadata (Tools > Metadata Editor), and grab your dc:language (in your case, "en" (English) or "en-US" (English (United States)).

BUT, again, think screen reader or someone converting to a different format. They may pull the HTML out separately and read it elsewhere.

So you may want to add the lang + xml:lang to your HTML as well.

This doesn't hurt:

Code:
<html xmlns="http://www.w3.org/1999/xhtml">
but this could be made more helpful:

Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
Another way of explaining: The EPUB Metadata tells the reader "This EPUB is in US English", while the HTML tells the reader "This specific HTML page is in US English".

(Imagine there could be a US English book, but it has a British English chapter within it.)

Technical Side Note:

H57: Using language attributes on the html element

H57 explains why lang + xml:lang on <html> are important:



So it could help Braille conversion, TTS, Dictionary support, Automatic Translation, [...].

Again, an EPUB Reader SHOULD still be able to pull it from the EPUB Metadata... but not all tools will be reading your EPUB in EPUB. :P
Wow. Super post. Thanks a ton, Tex. I really appreciate it!
Gregg Bell is offline   Reply With Quote
Old 10-21-2018, 07:51 AM   #4
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,546
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Gregg Bell View Post
Wow. Super post.
Seconded.
DiapDealer is online now   Reply With Quote
Old 10-21-2018, 02:45 PM   #5
exaltedwombat
Guru
exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.
 
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
One reason not to use both 'lang' and 'xml:lang' is that FlightCrew will flag 'lang' as an error.
exaltedwombat is offline   Reply With Quote
Advert
Old 10-21-2018, 05:57 PM   #6
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,583
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by exaltedwombat View Post
One reason not to use both 'lang' and 'xml:lang' is that FlightCrew will flag 'lang' as an error.
Flightcrew is hopelessly outdated. Besides, the DAISY Consortium recommends using both attributes for epub2 and epub3 books.
Doitsu is offline   Reply With Quote
Old 10-21-2018, 07:35 PM   #7
exaltedwombat
Guru
exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.
 
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
Has someone told Lulu? (I think it was Lulu who bounced epubs that didn't pass FlightCrew?)
exaltedwombat is offline   Reply With Quote
Old 10-22-2018, 07:38 AM   #8
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,630
Karma: 5433388
Join Date: Nov 2009
Device: many
As this relates to FlightCrew, it is the xml schema that determines if an attribute is allowed or not. The vast part of validating an epub2 is done against that schema. As far as I know these schema in Flightcrew are the most recent published for epub2. So the spec for epub2 has evolved but without a proper updated schema, there is not much I can do. I will look again to see if there are newer xml schemas for epub2 that are old enough to not add or allow epub3 only language features.
KevinH is offline   Reply With Quote
Old 10-22-2018, 07:47 AM   #9
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,583
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by exaltedwombat View Post
Has someone told Lulu? (I think it was Lulu who bounced epubs that didn't pass FlightCrew?)
According to Lulu:

Quote:
Originally Posted by Lulu
File must be EPUB 2 and validated against EPUBCheck 3.0.1
Doitsu is offline   Reply With Quote
Old 05-22-2019, 04:15 PM   #10
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
I'm using 0.9.9 Sigil. I got confused re-reading this post. (There were just too many details and it seemed contradictory information.) If somebody can please make this very simple for me I'd really appreciate it. I just want to know what's the best way to do this for an ebook that is a novel (to go on Amazon).

I'm analyzing two ebooks. The first screenshot is of my last book, which I'll post here. Both books passed Epubchek with no issues. Flightcrew has issues with both. (And I'm not concerned about the first warning about the OPF not being reachable. That's just because the cover isn't there.)




This next one is the book I just formatted. Now this is just the default that Sigil provided. (I of course chose US english as the language in the metadata editor.)



So in the first screenshot I used

<html xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-US">

instead of

<html xmlns="http://www.w3.org/1999/xhtml">

And I deleted

lang="en-US" dir="ltr"

from the <body> tag.

I can do either or something different. What's the best way to go? This is a simple ebook. No video or anything like that. A cover, some backmatter images and text.


If it matters, this is the way the plugins look. (I'm running xubuntu 18.04LTS.)



Thanks!
Gregg Bell is offline   Reply With Quote
Old 05-22-2019, 05:18 PM   #11
exaltedwombat
Guru
exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.
 
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
Flightcrew doesn't like the 'lang' item. Use just 'xml:lang'.
exaltedwombat is offline   Reply With Quote
Old 05-22-2019, 05:45 PM   #12
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by exaltedwombat View Post
Flightcrew doesn't like the 'lang' item. Use just 'xml:lang'.
Thanks wombat. So use:

Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
and

Code:
<body>
?

Because when I used

Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
and

Code:
<body lang="en-US" dir="ltr">
flightcrew complained again.
Gregg Bell is offline   Reply With Quote
Old 05-22-2019, 06:03 PM   #13
exaltedwombat
Guru
exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.exaltedwombat ought to be getting tired of karma fortunes by now.
 
Posts: 878
Karma: 2457540
Join Date: Nov 2011
Device: none
Yes, you seem to have correctly worked out how to satisfy Flightcrew!

Of course, if the book is heading for Amazon, the errors that matter are any thrown up when converting to mobi format in Kindle Previewer. You could also install the KPD Validator plugin for a quick pre-check while still working in Sigil.

Last edited by exaltedwombat; 05-22-2019 at 06:05 PM.
exaltedwombat is offline   Reply With Quote
Old 05-22-2019, 08:57 PM   #14
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
Quote:
Originally Posted by Gregg Bell View Post
If somebody can please make this very simple for me I'd really appreciate it. I just want to know what's the best way to do this for an ebook that is a novel (to go on Amazon).
Did your previous books work? Copy what you know works...

This is what you'll want:

Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">

<body>
Quote:
Originally Posted by Gregg Bell View Post
Both books passed Epubchek with no issues. Flightcrew has issues with both.
Epubcheck >>> Flightcrew.

Epubcheck is THE important one (it's what the storefronts use for sale).

If epubcheck says the book is fine, the book is fine.

Flightcrew is older/outdated, and was really only there as an easy GUI in Sigil to quickly check some basic code issues. It squaks at some things that are correct because it hasn't been updated to handle such cases.

Quote:
Originally Posted by Gregg Bell View Post
This next one is the book I just formatted.

[...]

So in the first screenshot I used
Note: In the future, attach images using MobileRead's built-in attachments. When you post, the icon looks like a little paper clip. This makes it so appear within posts fine, and makes sure they don't break the layout:

Click image for larger version

Name:	MobileReadAttachments.png
Views:	308
Size:	22.1 KB
ID:	171572

Also has the advantage of not disappearing if those external image sites die. So many older topics have busted images, and the information gets lost.

Last edited by Tex2002ans; 05-22-2019 at 09:00 PM.
Tex2002ans is offline   Reply With Quote
Old 05-22-2019, 09:25 PM   #15
Gregg Bell
Gregg Bell
Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.Gregg Bell ought to be getting tired of karma fortunes by now.
 
Gregg Bell's Avatar
 
Posts: 2,264
Karma: 3917588
Join Date: Jan 2013
Location: Itasca, Illinois
Device: Kindle Touch 7, Sony PRS300, Fire HD8 Tablet
Quote:
Originally Posted by exaltedwombat View Post
Yes, you seem to have correctly worked out how to satisfy Flightcrew!

Of course, if the book is heading for Amazon, the errors that matter are any thrown up when converting to mobi format in Kindle Previewer. You could also install the KPD Validator plugin for a quick pre-check while still working in Sigil.
Thanks wombat. Yeah, flightcrew is finally appeased. And thanks for turning me on to KDP Validator. But how do I check errors that might occur in the conversion to mobi? (And I do the conversion in the linux terminal (although I have a Windows computer with Kindle Previewer on it. Does it make a difference where I convert it? I've never had any problems (at least that KDP has told me about) converting it in the terminal).
Gregg Bell is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Aura HD Some questions unrealbe Kobo Reader 14 08-28-2014 08:38 PM
A few questions Noughty Which one should I buy? 11 12-11-2011 05:05 PM
could somebody help me with my questions? yingwu iRex 37 06-18-2009 10:33 AM
could somebody help me with my questions? yingwu Introduce Yourself 1 05-27-2009 05:34 PM
a few questions Thetaeta Which one should I buy? 4 07-31-2008 11:15 PM


All times are GMT -4. The time now is 10:37 PM.


MobileRead.com is a privately owned, operated and funded community.