Fixed Layout EPUB where each page has a different size

Laurens

I am trying to create an Epub file which has a fixed layout but not each page should have the same dimensions. Some pages should landscape others portrait. Can this be achieved with EPUB 3?

What do I have to change in the opf-file, stylesheets and/or each xhtml of a page to achieve this?

Thanks

Cylian

You could achieve this by using different /manifest/itemref/@properties for different layout. See below example:


<spine>
   ...
   <itemref idref="page01" properties="rendition:orientation-portrait"/>
   <itemref idref="page02" properties="rendition:orientation-landscape"/>
   ...
</spine>

Please note @properties could only be used for epub3.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

scripts_for_layout generates a different hash on each page load

From Dev

Swarmplot in seaborn where each point has a different colour

From Dev

SimPy Resource of 3 where each has different characteristics

From Dev

Simulating a game where each player has a different probability of winning?

From Dev

Android marquee where each letter has different color

From Dev

Simulating a game where each player has a different probability of winning?

From Dev

Different layout for different screen size

From Dev

putting 2 objects side by side, where 1 has a fixed size in css

From Dev

Magento 1 - How to have different amount of products per row, different in each page layout

From Dev

how to make pretty photo layout fixed size?

From Dev

Unable to change column size in fixed layout table

From Dev

How to make a grid layout with unknown number of columns and each column has equal size?

From Dev

Span next to each other with different size of font-awesome icons ruins the layout

From Dev

Viewing fixed page layout on mobile devices

From Dev

How to know if a List object has a fixed size

From Dev

Different layout with different screen size with bootstrap 3

From Dev

UICollectionViewCell - different layout for different size classes

From Dev

DOCBOOK to EPUB File Size

From Dev

Adding a fixed header/footer for each page jsPDF

From Dev

Picking a random option, where each option has a different probability of being picked

From Dev

Returning an element from an ArrayList of collections, where each collection has a different element type

From Dev

Python import text file where each line has different number of columns

From Dev

Parse JSON Array where each member has different schema but same general structure

From Dev

how to plot multiple time series in chartjs where each time series has different times

From Dev

Python import text file where each line has different number of columns

From Dev

How to save multiple output in multiple file where each file has a different title coming from an object in python?

From Dev

IntelliJ - How to define a project SDK where each developer has a different SDK for it?

From Dev

How to set a page layout to a different master page?

From Dev

Struct has different size if the field order is different

Related Related

  1. 1

    scripts_for_layout generates a different hash on each page load

  2. 2

    Swarmplot in seaborn where each point has a different colour

  3. 3

    SimPy Resource of 3 where each has different characteristics

  4. 4

    Simulating a game where each player has a different probability of winning?

  5. 5

    Android marquee where each letter has different color

  6. 6

    Simulating a game where each player has a different probability of winning?

  7. 7

    Different layout for different screen size

  8. 8

    putting 2 objects side by side, where 1 has a fixed size in css

  9. 9

    Magento 1 - How to have different amount of products per row, different in each page layout

  10. 10

    how to make pretty photo layout fixed size?

  11. 11

    Unable to change column size in fixed layout table

  12. 12

    How to make a grid layout with unknown number of columns and each column has equal size?

  13. 13

    Span next to each other with different size of font-awesome icons ruins the layout

  14. 14

    Viewing fixed page layout on mobile devices

  15. 15

    How to know if a List object has a fixed size

  16. 16

    Different layout with different screen size with bootstrap 3

  17. 17

    UICollectionViewCell - different layout for different size classes

  18. 18

    DOCBOOK to EPUB File Size

  19. 19

    Adding a fixed header/footer for each page jsPDF

  20. 20

    Picking a random option, where each option has a different probability of being picked

  21. 21

    Returning an element from an ArrayList of collections, where each collection has a different element type

  22. 22

    Python import text file where each line has different number of columns

  23. 23

    Parse JSON Array where each member has different schema but same general structure

  24. 24

    how to plot multiple time series in chartjs where each time series has different times

  25. 25

    Python import text file where each line has different number of columns

  26. 26

    How to save multiple output in multiple file where each file has a different title coming from an object in python?

  27. 27

    IntelliJ - How to define a project SDK where each developer has a different SDK for it?

  28. 28

    How to set a page layout to a different master page?

  29. 29

    Struct has different size if the field order is different

HotTag

Archive