This extension adds several new commands to jsMath for handling arrows with symbols above or below them. These include: The
moreArrowsExtension\xrightarrow,\xleftarrow,\xuprightharpoon,\xupleftharpoon,\xdownrightharpoon, and\xdownleftharpoon. Each 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[\alpha]{\beta}would make a right arrow with an alpha below it and a beta above it.To activate the
moreArrowsextension, include the command<SCRIPT> jsMath.Extension.Require("moreArrows"); </SCRIPT>in your HTML file after loading jsMath, or if you are using theeasy/load.jsfile, add"extensions/moreArrows.js"to theloadFilesarray:loadFiles: ["extensions/moreArrows.js"],Alternatively, you can use
<SPAN CLASS="math"> \require{moreArrows} </SPAN>to activate the extension from within the typeset mathematics itself.Finally, if you are using the autoload plugin, you can set the
jsMath.Autoload.loadFilesarray to include"extensions/moreArrows.js"in order to have the extension loaded automatically when jsMath is needed.
|
|