|  01-31-2012, 02:41 PM | #1 | 
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | 
				
				2 column mode
			 
			
			Found this "feature" today. When zooming in to the smallest font-size sometimes (depending on the book) the Odyssey will switch to 2-column mode and sometimes not. On some books it will switch to 2-column only in landscape mode. Anyone know what is going on there? Attached is a picture of the same book (The Iliad & The Odyssey) that came with the reader - the one in spanish does not do 2 column mode, the english one does in the smallest and 2nd smallest font size setting. Feature or bug? And what do I have to change to force 2 column mode in epubs at smaller zoomlevels? Last edited by DuckieTigger; 01-21-2013 at 07:55 PM. | 
|   |   | 
|  01-31-2012, 03:09 PM | #2 | 
| Digital Amanuensis            Posts: 727 Karma: 1446357 Join Date: Dec 2011 Location: Turin, Italy Device: Several eReaders and tablets | 
			
			Very interesting, I'll investigate it.
		 | 
|   |   | 
| Advert | |
|  | 
|  01-31-2012, 03:14 PM | #3 | 
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | |
|   |   | 
|  01-31-2012, 03:40 PM | #4 | |
| Wizard            Posts: 4,338 Karma: 4000000 Join Date: Oct 2008 Location: Paris Device: Cybooks; Sony PRS-T1 | 
			
			It's an ade feature. Should work with any epub with the "ade page template". that is "page template.xhtml" with stuff looking like that : Quote: 
 | |
|   |   | 
|  01-31-2012, 06:19 PM | #5 | 
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | 
			
			Thank you Eowyn.    | 
|   |   | 
| Advert | |
|  | 
|  02-01-2012, 10:39 AM | #6 | 
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT |  doesn't work. the ade page template you mention is also in the spanish iliad and odyssey epub. and it won't work. i even copied the page template from the english version into the spanish epub and still won't work   | 
|   |   | 
|  02-01-2012, 12:24 PM | #7 | 
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | 
			
			Ok, found the problem. The page-template is techinically inside the spanish epub, but it never gets referenced, my bad for thinking that if a file exists inside a epub that it actually gets used. I use the german epub of ilias and odyssey as reference (this one also has "built in" 2 column mode). This is main01.htm: Code: <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>Ilias und Odyssee</title>
  <link href="resources/stylesheet.css" type="text/css" rel="stylesheet" />
  <link href="resources/page-template.xpgt" type="application/vnd.adobe-page-template+xml" rel="stylesheet" />
</head>
<body>
<div class="body">
<div id="p1" class="section">
<div class="text">
  <h1 class="author">Homer</h1>
  <h1 class="title">Ilias</h1>
</div></div></div>
</body>
</html>Code: <?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>La Iliada</title>
    <meta name="generator" content="pdftohtml 0.36"/>
    <meta name="author" content="Homero"/>
    <meta name="date" content="2003-06-05T13:00:24+00:00"/>
    <meta name="subject" content="eBooket"/>
    <meta content="http://www.w3.org/1999/xhtml; charset=utf-8" http-equiv="Content-Type"/>
    <link href="stylesheet.css" type="text/css" rel="stylesheet"/>
    <style type="text/css">
		@page { margin-bottom: 5.000000pt; margin-top: 5.000000pt; }</style>
  </head>
  <body class="calibre">[...]Code: <?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>La Iliada</title>
    <meta name="generator" content="pdftohtml 0.36"/>
    <meta name="author" content="Homero"/>
    <meta name="date" content="2003-06-05T13:00:24+00:00"/>
    <meta name="subject" content="eBooket"/>
    <meta content="http://www.w3.org/1999/xhtml; charset=utf-8" http-equiv="Content-Type"/>
    <link href="stylesheet.css" type="text/css" rel="stylesheet"/>
    <link href="resources/page-template.xpgt" type="application/vnd.adobe-page-template+xml" rel="stylesheet" />
    <style type="text/css">
		@page { margin-bottom: 5.000000pt; margin-top: 5.000000pt; }</style>
  </head>
  <body class="calibre">[...]Sorry for the details, for someone working with epubs regularily I must seam like a Dodo bird. Did not know that I actually have to remember html coding just to enjoy my ereaders undocumented features .... And do other ereaders do that too - displaying the 2 column automatically? | 
|   |   | 
|  02-01-2012, 12:37 PM | #8 | 
| Addict            Posts: 289 Karma: 189800 Join Date: Mar 2009 Device: Gen3(†); PB302(↓); PRS-350; T1; voyage | |
|   |   | 
|  02-01-2012, 12:44 PM | #9 | |
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | Quote: 
 That is the english version that always worked with 2 column mode on the Cybook Odyssey. edit: works at least on the smallest and 2nd smallest font size. Last edited by DuckieTigger; 01-21-2013 at 07:55 PM. | |
|   |   | 
|  02-01-2012, 04:12 PM | #10 | 
| Addict            Posts: 289 Karma: 189800 Join Date: Mar 2009 Device: Gen3(†); PB302(↓); PRS-350; T1; voyage | 
			
			works fine on the T1. showing 2 columns with the smallest font size in portrait mode. When in landscape mode it shows 2 columns with the smallest three font sizes. | 
|   |   | 
|  02-01-2012, 06:12 PM | #11 | |
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | Quote: 
   | |
|   |   | 
|  02-02-2012, 04:03 AM | #12 | 
| a pthread?? where? where?            Posts: 1,763 Karma: 30462 Join Date: Mar 2009 Location: Somewhere in EU Device: Newton MessagePad 2100, and only this | 
			
			Since it's in the bundle of the Odyssey, you should tell it to bookeen that you find this, they will may correct it in future versions!?
		 | 
|   |   | 
|  02-02-2012, 05:28 AM | #13 | 
| Digital Amanuensis            Posts: 727 Karma: 1446357 Join Date: Dec 2011 Location: Turin, Italy Device: Several eReaders and tablets | |
|   |   | 
|  02-02-2012, 08:33 AM | #14 | |
| Wizard            Posts: 4,764 Karma: 246906703 Join Date: Dec 2011 Location: USA Device: Oasis 3, Oasis 2, PW3, PW1, KT | Quote: 
 Last edited by DuckieTigger; 02-02-2012 at 08:53 AM. | |
|   |   | 
|  | 
| Thread Tools | Search this Thread | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Q: multi-column PDF to single column mobi format converstion | auburn1975 | Calibre | 7 | 01-28-2012 06:11 PM | 
| custom date column from two state column | Dopedangel | Library Management | 7 | 01-03-2012 08:20 AM | 
| anyway to change 2 column lrf to 1 column mobi? | lapisjay | Amazon Kindle | 2 | 01-12-2011 10:20 PM | 
| iLiad continuous mode and column view in ipdf | alanine | iRex Developer's Corner | 16 | 01-29-2009 05:11 PM | 
| pdf to lrf with 2 column and 1 column pages in same file | danielwille | Sony Reader | 3 | 11-12-2008 10:57 AM |