UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

72 lines (62 loc) 2.71 kB
/* * ../../../../legacy/braket/braket.js * * Copyright (c) 2009-2018 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ /* vim: set ts=2 et sw=2 tw=80: */ /************************************************************* * * MathJax/extensions/TeX/braket/braket.js * * Implements the Braket Package for LaTeX input. * * --------------------------------------------------------------------- * * Copyright(c) 2018 William Gertler. * Copyright (c) 2009-2018 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ MathJax.Extension["TeX/braket"] = { version: "2.7.5" }; MathJax.Hub.Register.StartupHook("TeX Jax Ready", function() { MathJax.InputJax.TeX.Definitions.Add({ macros: { bra: ["Macro", "{\\langle {#1} \\vert}", 1], ket: ["Macro", "{\\vert {#1} \\rangle}", 1], braket: ["Macro", "{\\langle {#1} \\mid {#2} \\rangle}", 2], set: ["Macro", "{\\{ {#1} \\| {#2} \\}}", 2], Set: ["Macro", "{\\left\\{ {#1} \\middle \\| {#2} \\right\\}}"], Bra: ["Macro", "{\\left\\langle { #1} \\right\\vert}", 1], Ket: ["Macro", "{\\left\\vert { #1 } \\right\\rangle}", 1], Braket: ["Macro", "{\\left\\langle {#1} \\mid { #2} \\right\\rangle}", 2] //ketbra: ["Macro", "{\\left\\vert { #1 } \\right\\rangle\\left\\langle { #2} \\right\\vert}", 2], (need to add this to LaTeX braket before implementing here) } }); MathJax.Hub.Startup.signal.Post("TeX braket Ready"); }); MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/braket/braket.js");