Typesetting Dotless i and j with LaTeX

  • Context: LaTeX 
  • Thread starter Thread starter cepheid
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 8K views
Messages
5,197
Reaction score
38
I'm wondering how to get dotless i and j in LaTeX on the forums. For some reason, \i and \j don't work for this. I can use \imath and \jmath, and I can even get carets on them to represent unit vectors:

[tex]\hat{\imath}, \hat{\jmath}[/tex]

The only remaining problem is that I can't get them to be typeset in boldface and upright as vectors traditionally are. If I do this hack:

[tex]\hat{\textbf{$\imath$}}, \hat{\textbf{$\jmath$}}[/tex]

then I can get them boldface, but still not upright. I think that the glyphs for \imath and \jmath are inherently italicized and there is no way to change this. Any suggestions for the OCD among us?
 
Physics news on Phys.org
robphy said:
From
http://groups.google.com/group/math...roup/mathjax-users/browse_frm/month/2010-11?&
MathJax can use unicode...

[tex]\mbox{abcdefgh}\ \unicode{x0131}\unicode{x0237}\ \mbox{klmnopqrstuvwyz}[/tex]

You could define a macro for \i and \j
[itex]\def\i{\unicode{x0131}} \i[/itex] [itex]\def\j{\unicode{x0237}} \j[/itex] (right-click show source)

then use it later
[tex]\i i\mbox{i}[/tex] [tex]\j j\mbox{j}[/tex]

So, definitions that people make using \def are universal and permanent (or at least persist until some user gives the same macro a different definition)?

In any case, it still doesn't work:

[tex]\def\i{\unicode{x0131}} \hat{\mathbf{\i}}[/tex]
 
How's this?

[itex]\def\ihat{\hat{\unicode{x0131}\!\!\unicode{x0131}}} \ihat[/itex] [itex]\def\jhat{\hat{\unicode{x0237}\!\!\!\unicode{x0237}}} \jhat[/itex]

[tex]8\ihat + 6\jhat[/tex]

I suspect your \defs are local to your post.
 
robphy said:
How's this?

[itex]\def\ihat{\hat{\unicode{x0131}\!\!\unicode{x0131}}} \ihat[/itex] [itex]\def\jhat{\hat{\unicode{x0237}\!\!\!\unicode{x0237}}} \jhat[/itex]

[tex]8\ihat + 6\jhat[/tex]

I suspect your \defs are local to your post.

That's very interesting! I just read that \! inserts a small negative space. So you have two unicode dotless i's slightly overlapping each other to produce a thicker one. It's very clever. Why the extra space for the j? Why not:


[itex]\def\jhat{\hat{\unicode{x0237}\!\!\unicode{x0237}}} \jhat[/itex]


Ah. That's why. A line thickness problem.