I want to make a shortcut for the \mathbb font (or other fonts) in LyX.
How can I do it?
Asked
Active
Viewed 3,665 times
7
2 Answers
8
New shortcuts are added under Tools --> Preferences --> Editing --> Shortcuts, for details see Shortcuts for Lemma, Claim, Theorem etc. The function you need for the blackboard font is
math-insert \mathbb
The other fonts in the list (under the font button on the math toolbar) has similar functions, just replace \mathbb with the appropriate macro, e.g. math-insert \mathcal.
Torbjørn T.
- 206,688
2
Alternatively, you could go to [User]/AppData/Roaming/LyX[version]/bind (on Mac or Linux the path would differ), open user.bind with a text editor and insert the following line:
\bind "M-k b" "command-sequence math-insert `\\mathbb`;"
Which would insert a \\mathbb environment on pressing alt+k b.
You could also use
\bind "M-k r" "command-sequence math-insert \\mathbb R; char-right"
\bind "M-k z" "command-sequence math-insert \\mathbb Z; char-right"
Which would insert \\mathbb{R} and \\mathbb{Z}, respectively, and move your pointer out of \\mathbb environment.
guzey
- 21
\newcommand{\bbR}{\mathbb{R}}, or for a fraktur M\newcommand{\frM}{\mathfrak{M}}. this, of course, is not specific to lyx. – barbara beeton Dec 08 '13 at 18:48math-insert \mathbb. – Torbjørn T. Dec 08 '13 at 20:39