This extension adds several new commands to jsMath for handling arrows with symbols above or below them. These include: The
moreArrowsExtensionEach of these takes one argument, which is the item to be placed above the arrow, and each also takes an optional argument enclosed in brackets that will be placed below the arrow. For example,
\xrightarrow,\xleftarrow,\xuprightharpoon,\xupleftharpoon,\xdownrightharpoon, and\xdownleftharpoon.\xrightarrow[\alpha]{\beta}would make a right arrow with an alpha below it and a beta above it.To activate the
moreArrowsextension, add"extensions/moreArrows.js"to theloadFilesarray in youreasy/load.jsfile:loadFiles: ["extensions/moreArrows.js"],If you are using the autoload plugin rather than
easy/load.js, you can set thejsMath.Autoload.loadFilesarray to include"extensions/moreArrows.js"in order to have the extension loaded automatically when jsMath is needed.If you are loading
jsMath.jsby hand rather than usingeasy/load.jsor theautoloadplugin, then include the command<SCRIPT> jsMath.Extension.Require("moreArrows"); </SCRIPT>in your HTML file after loading jsMath. Alternatively, you can use<SPAN CLASS="math"> \require{moreArrows} </SPAN>to activate the extension from within the typeset mathematics itself.
|
|