Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Superscript in EPub

Guest
Dec 02, 2010 Dec 02, 2010

I'm using InDesign CS3, when I'm exporting the document to epub, suoerscript applied in the document is not coming in epub. I've used character style for applying superscript.

Any suggestion why it is not coming in epub?

TOPICS
Scripting
3.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Dec 08, 2010 Dec 08, 2010

Hi,

It seems the CSS generating automatically for 'superscript' during ePub conversion is only NULL in both CS3 and CS4 (I didn't checked in CS5), when you replace the contents 'span.superscript {}' with the below contents will resolve your issue:

span.superscript {
      vertical-align: 33%;
      font-size: 75%;
      }

Please check and confirm.

Thanks,

Praveen

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Dec 08, 2010 Dec 08, 2010

Hi Praveen,

  I've changed & checked, now it is working fine.

Thanks for the help.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 09, 2010 Dec 09, 2010

Hi Praveen,

The same issue I found with epub please follow the link below and suggest

http://forums.adobe.com/thread/741375

TIA

J

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Dec 10, 2010 Dec 10, 2010

Hi Jaswin,

It clearly shows that we need to apply the proper character styles in InDesign file before converting the file into ePub, since the manually applied styles are getting ignored during the ePub conversion, but still I find a problem in the CSS for some styles (Small caps & Superscript). So we need to update the CSS file as per the details below after generating the ePub file (The ePub file can be easily edited using the freeware 'Sigil'):

span.italic {

font-weight: normal;

font-style: italic;

}

span.bold {

font-weight: bold;

font-style: normal;

}

span.smallcaps {

font-variant: small-caps;

font-size: 8pt;

font-style: normal;

}

span.superscript {

vertical-align: 33%;

font-size: 75%;

}

Hope this will resolve your queries, pl. check and let me know for any further clarifications.

Thanks,

Praveen

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 10, 2010 Dec 10, 2010
LATEST

thanks Praveen. Let me check on this

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines