Sorry for the noob question, I'm writing a paper on quaternions for a linear algebra class and I decided it would be a good time to start learning LaTex.
Asked
Active
Viewed 1,671 times
1
1 Answers
1
Here's the XeLaTeX (or LuaLaTeX) way by typing the unicode sequence (or copying over from some char table/text).
The ℍ character has the code U-210D.
Of course, the used font must support this character.
\documentclass{article}
\usepackage{libertine}% Just as an example
\begin{document}
Use for example ℍ (DOUBLE-STRUCK CAPITAL H), i.e. U-210D for this.
\end{document}
-
Well I am currently using Share LaTex, so how would I get that symbol in the middle of a paragraph? – Spencer Ewing Friedman Jul 30 '17 at 23:06
-
-
@SpencerEwingFriedman: Sigh,
ShareLaTeX.... :-( See https://www.sharelatex.com/project/597e670b712c4a5c56e3ca39 – Jul 30 '17 at 23:12 -
It says that I do not have permission to load that page – Spencer Ewing Friedman Jul 30 '17 at 23:18
-
-
Thank you for the help, however when I put the \usepackage in the right place then copied the line of code with the H it just compiles into fj – Spencer Ewing Friedman Jul 31 '17 at 01:48
-

\mathbb{R}(requiresamssymboramsfonts). The "fancy H" is the same,\mathbb{H}. If you are using something like\Rthat's a custom command, it's not a pre-defined command. You can define a custom command for the blackboard bold H as well, but I would not recommend making it\Hbecause that is already used for the double acute accent as in Erdős (Erd\H{o}s). Best go for something\newcommand{\qtrnions}{\mathbb{H}}– Au101 Jul 30 '17 at 21:36\mathbb{H}for blackboard bold, or\mathbf{H}for the old-style (real) boldface. – Bernard Jul 30 '17 at 21:36XeLaTeX, for example – Jul 30 '17 at 22:44