Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 05-07-2010, 01:34 AM   #166
eBookLuke
Writer2ePub creator
eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.
 
eBookLuke's Avatar
 
Posts: 354
Karma: 121129
Join Date: Sep 2009
Location: Genova, Italy
Device: Cybook Bebook iLiad Kindle HanlinV2 Readius SonyPRS500 SonyPRS700 etc
Quote:
Originally Posted by awp View Post
...If you install Atlantis Word Processor to your PC...
When I will install Atlantis Word Processor to my Macintosh?

Doing so I may stop to develop writer2epub

Luke
eBookLuke is offline   Reply With Quote
Old 05-07-2010, 12:43 PM   #167
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
As I know, Atlantis Word Processor can be run on Mac under Windows emulators. Have you tried Darwine or Parallels Desktop?
awp is offline   Reply With Quote
Advert
Old 05-07-2010, 01:05 PM   #168
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
By the way, below is a screen capture of the Atlantis window under Darwine (downloaded from this site):
Attached Thumbnails
Click image for larger version

Name:	3693530atlantis.png
Views:	551
Size:	277.1 KB
ID:	51232  
awp is offline   Reply With Quote
Old 05-26-2010, 06:13 PM   #169
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
One of our users reported a problem related to iPad. If I understand things correctly, iPad does not support the "page-break-before: always" CSS attribute in EPUBs. Page breaks are rendered only between XHTML files when viewed on iPad. Can anyone confirm this? Thank you.
awp is offline   Reply With Quote
Old 06-29-2010, 03:32 PM   #170
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
Atlantis Word Processor 1.6.5.2 has been released for betatesting. It includes a number of changes to its "Save as eBook" feature. Page breaks from source documents are now saved to EPUBs differently. Page margins of eBooks can now be controlled through the GUI of Atlantis. Generic font families (or basic fallback fonts) are now automatically saved to EPUBs. Plus there are a few bug fixes.

You can find details on the new version of Atlantis Word Processor here:
http://www.atlantiswordprocessor.com..._1_6_5_002.htm

This new version of Atlantis Word Processor can be downloaded from this page:
http://www.atlantiswordprocessor.com/en/beta
awp is offline   Reply With Quote
Advert
Old 07-01-2010, 06:35 AM   #171
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Unfortunately, the way you specify margins doesn't actually work as people might expect.

Margins specified in the body element will apply to the entire flow rather than to individual pages within that flow, so code such as
Code:
body{margin-left:5%;margin-right:5%;margin-top:5%;margin-bottom:5%}
will produce a 5% margin at the top of the first page in the flow and a 5% margin at the bottom of the final page in the flow, but no top and bottom margins on individual pages within the flow.

What you want to do instead is this:
Code:
@page {
    margin-top: 12pt;
    margin-bottom: 1pt
}
body {
    margin-left: 5%;
    margin-right: 5%
}
Notice that I used points instead of % for the top and bottom margins - unfortunately ADE's handling of the @page rule is slightly bizarre. If you use % here then ADE will translate it internally into some distance that does not change with changes in the height of the display port*. A margin-top of 100% becomes a margin of roughly 75pts, and a margin-top of 5% is roughly the same as a margin of 4pts (i.e. far too small). In this case it is far safer to specify the margins in points, which should produce a consistent result across reading systems.

The actual size of the bottom margin on a page is governed by the reader's line-fitting algorithm, so I generally just use a very small value there to prevent text from colliding with the bottom of the viewport, which effectively produces a bottom margin a little less than one line-height on the page. It would be a good idea to provide separate inputs for the top and bottom margins so that users can control this as they wish.

*In contrast, left and right margins specified using % in the body do scale properly with viewport changes.

Last edited by charleski; 07-01-2010 at 06:43 AM.
charleski is offline   Reply With Quote
Old 07-01-2010, 10:30 AM   #172
eBookLuke
Writer2ePub creator
eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.eBookLuke knows the chase is better than the catch.
 
eBookLuke's Avatar
 
Posts: 354
Karma: 121129
Join Date: Sep 2009
Location: Genova, Italy
Device: Cybook Bebook iLiad Kindle HanlinV2 Readius SonyPRS500 SonyPRS700 etc
Quote:
Originally Posted by charleski View Post
Unfortunately, the way you specify margins doesn't actually work as people might expect...
Thanks, Charleski!

I will implement yor hint in my next writer2epub!

Luke
eBookLuke is offline   Reply With Quote
Old 07-05-2010, 06:26 AM   #173
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Thumbs up

In Word I can easily change from 'normal' to 'smart' quotes by doing a replace command. I replace " by " and Word automatically creates smart quotes. It also works somewhat for single quotes.

I tried to do the same trick in Atlantis, but no luck. The " stays " after replace. Is there another way to change from normal to smart quotes in Atlantis other than by hand?
Toxaris is offline   Reply With Quote
Old 07-05-2010, 09:11 AM   #174
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
In MS Word, it is rather a side effect than a proper feature. As for me, it is strange when a word processor replaces X with Y when you ask it to replace X with X.

Atlantis Word Processor has the "AutoCorrect After-You-Type" tool. Choose the "Tools | AutoCorrect..." menu command of Atlantis. It scans the active document for text fragments that might need to be corrected (including "straight quotes to smart quotes" corrections). Each reported correction can be accepted or rejected. The "Tools | AutoCorrect..." command of Atlantis suggests corrections according to the settings specified in the "Tools | AutoCorrect Options..." dialog. For example, you can instruct Atlantis to replace straight quotes with French or German quotes.
Attached Thumbnails
Click image for larger version

Name:	atlantis_word_processor_autocorrect.png
Views:	513
Size:	2.1 KB
ID:	54636   Click image for larger version

Name:	atlantis_word_processor_autocorrect_options.png
Views:	514
Size:	6.1 KB
ID:	54637  
awp is offline   Reply With Quote
Old 07-05-2010, 02:02 PM   #175
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
Quote:
Originally Posted by charleski View Post
Unfortunately, the way you specify margins doesn't actually work as people might expect.
Thanks for your note. I will comment on this later.
awp is offline   Reply With Quote
Old 07-05-2010, 03:45 PM   #176
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Quote:
Originally Posted by awp View Post
In MS Word, it is rather a side effect than a proper feature. As for me, it is strange when a word processor replaces X with Y when you ask it to replace X with X.

Atlantis Word Processor has the "AutoCorrect After-You-Type" tool. Choose the "Tools | AutoCorrect..." menu command of Atlantis. It scans the active document for text fragments that might need to be corrected (including "straight quotes to smart quotes" corrections). Each reported correction can be accepted or rejected. The "Tools | AutoCorrect..." command of Atlantis suggests corrections according to the settings specified in the "Tools | AutoCorrect Options..." dialog. For example, you can instruct Atlantis to replace straight quotes with French or German quotes.
Untill now a found it a rather nice 'side effect'. I could not get the autocorrect to work earlier. But that was because I did not see it was some kind of script/program. Great!
Toxaris is offline   Reply With Quote
Old 07-06-2010, 07:29 PM   #177
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
Support for heading-less chapters has been added to the latest beta version of Atlantis Word Processor. You can find details here.
awp is offline   Reply With Quote
Old 07-15-2010, 02:35 PM   #178
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
Below is a link to the latest post to the Atlantis Word Processor Blog:
http://atlantiswordprocessor.blogspo...with-jpeg.html
It explains how to control graphic format of cover images in eBooks created with Atlantis.
awp is offline   Reply With Quote
Old 10-01-2010, 10:39 AM   #179
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
The tweak_epub utility can now be launched directly in a file manager by right-clicking an EPUB file. You can find details here.
awp is offline   Reply With Quote
Old 02-23-2011, 02:59 PM   #180
awp
Addict
awp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcoverawp exercises by bench pressing the entire Harry Potter series in hardcover
 
awp's Avatar
 
Posts: 228
Karma: 16000
Join Date: Jun 2009
Device: Sony PRS-T1
A new version of Atlantis Word Processor – 1.6.5.4 – has been released. It includes improvements to the "Save as eBook" feature:
http://www.AtlantisWordProcessor.com...5_004.htm#toc2
awp is offline   Reply With Quote
Reply

Tags
ebook, epub


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Atlantis Word Processor free today [ENDED] tuskin Deals and Resources (No Self-Promotion or Affiliate Links) 17 02-05-2014 07:54 AM
Atlantis Word Processor MrPjax Workshop 2 07-21-2013 05:29 PM
Best Pre-Sigil word processor tool/workflow? Leverpullr Sigil 25 08-27-2012 02:18 PM
Atlantis Word Processor librarianchat Calibre 3 12-15-2011 01:38 AM


All times are GMT -4. The time now is 06:26 AM.


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