View Single Post
Old 03-31-2023, 07:37 PM   #24
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,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by ebookscovers View Post
maybe the best thing going forward is to avoid using superscripts and just write 21st as is??
Yes, for readability/accessibility—and avoiding all these line-height problems too!—that's exactly what I do.

So instead of:

Code:
<p>In the 21<sup>st</sup> century, this happened.</p>
use this:

Code:
<p>In the 21st century, this happened.</p>
- - -

Side Note: Word defaulting to "superscript ordinals" (st + nd + rd) is one of the worst settings there is.

It's one of the first things I disable + instantly correct whenever I see it inside documents.

- - -

Side Note #2: Like Hitch said, for footnote numbers, we recommend NOT using superscripted numbers:

Code:
<p>In the 21st century.<sup>99</sup></p>
but instead use bracketed numbers:

Code:
<p>In the 21st century.[99]</p>
For more info on that, see:

and even my old post from 2013 which explains why brackets in ebooks are better than superscript notes:

(The same logic still applies all these years later.)

- - -

Side Note #3: One of the only few places I can see <sup> needing to be used is languages that have a:
  • superior letter
    • French 'e'
  • ordinal indicator
    • Spanish/Portuguese 'ª' + 'º'

For more info on that, see my post here:

Last edited by Tex2002ans; 03-31-2023 at 07:53 PM.
Tex2002ans is offline   Reply With Quote