View Single Post
Old 11-28-2016, 01:35 AM   #6
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 JSWolf View Post
But it is possible that that unicode block might not work with an eInk Reader. Fior that matter, most reading programs/apps as well might not work.
Indeed. I have no clue how that block works on e-ink devices (never tried it)... and if many programs on the PC can't handle them properly (especially more obscure symbols like IPA accents)... I doubt many readers would either.

Can't say I ever ran across an ebook using them though.

Quote:
Originally Posted by Toxaris View Post
What is wrong with just using <sub> and <sup>?
I believe pluma meant having the letters DIRECTLY above/below the characters (over/underscript)... slightly different than a normal super/subscript.

But maybe I made a wrong assumption about his intentions.

If pluma could explain some more of his specific use-case, that might also help. Are you working on some sort of Mathematics book? Linguistics? An old Bible? I can't really think of many other uses for over/underscripts. Do you already have a completed source document that is using all the Unicode diacritics?

Quote:
Originally Posted by Doitsu View Post
@pluma: Since you indicated an interest in epub3 books, you might be able to use MathML.
Indeed. If you were going for EPUB3, it would probably be more robust doing the overscript using MathML:

Code:
<mrow>
  <mover>
	<mi> x </mi>
	<mo> e </mo>
  </mover>
</mrow>
That would get you an italic 'x' with a roman 'e' directly above it.

The relevant MathML would use <munder> (underscript) + <mover> (overscript) + <munderover> (under/overscript):

https://www.w3.org/TR/MathML2/chapte...l#presm.munder

Last edited by Tex2002ans; 11-28-2016 at 02:10 AM.
Tex2002ans is offline   Reply With Quote