@ronkok tq for the information. But how about just ordinary paragraph? Say i have:
"Lorem ipsum dolor sit \(amet\), consectetur adipiscing elit, \\
sed do eiusmod tempor \(incididunt ut labore\) et dolore magna aliqua."
Ofc katex won't detect \\ besides "elit,". So how do i break line in just ordinary paragraph?
npm
or yarn
will help you assemble modules and keep them updated. Both npm
and yarn
will also run scripts. When run at the KaTeX root level, the yarn build
script will tell the webpack
utility to bundle all 78 files into a single file for distribution.
website
folder, running yarn
, followed by yarn start
.
That is one solution, sure. Whas I was looking for was primarily a way of changing the style globally, as some LaTeX font packages allow you to (with a switch). In LaTeX I use
\count@=`A \advance\count@\m@ne
\@whilenum\count@<`Z\do{%
\advance\count@\@ne
\begingroup\uccode`a=\count@
\uppercase{\endgroup\DeclareMathSymbol{a}}{\mathalpha}{operators}{\count@}%
}
(From http://tex.stackexchange.com/questions/251225)
And in MathJax I use
(function () {
var MML
MathJax.Hub.Register.StartupHook("mml Jax Ready",function () {
MML = MathJax.ElementJax.mml
});
MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
var TEX = MathJax.InputJax.TeX
var capitals = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
for (var i = 0; i < capitals.length; i++) {
TEX.Definitions.special[capitals[i]] = "frenchStyle"
}
TEX.Parse.Augment({
frenchStyle: function (c) {
this.Push(this.mmlToken(MML.mi(c).With({mathvariant:MML.VARIANT.NORMAL})))
}
});
});
})();
(Based on https://stackoverflow.com/questions/32814507)
Kind of hacky, I guess, but both solutions work. I was just hoping to find something similar for KaTeX.
\gdef A{{\char65}}
, \gdef B{{\char66}}
, etc. If you don't want to write those macros into each document, you can write them in the rendering options
katex.js
exposes the defineMacro
function. So you could write your set of macros in a separate file. Say we call it frenchmath.js
. That file would go into the same folder as katex.js
. The HTML document would include in its <head>
a line saying <script src="frenchmath.js"></script>
, placed after the call to katex.js
, and the french math file would contain a set of macros, each resembling: katex.__defineMacro("A", function(context) {
return "{\\char 65}"
});
__defineMacro
isn't available…? (At least I'm told it's not a function.) Trying to use \gdef
inside formulas gives me an error, and the display options don't seem to do much. (The displayMode
option, for example, doesn't change mode, so I've used \displaystyle
as a workaround.) I'm using it with Jekyll and Kramdown, and essentially followed the setup here, which I guess may be not altogether sound:pdf2svg
), and using them alongside KaTeX in the main text – and I haven't been able to figure out a proper combination of font sizes and scaling (in my TikZ/pdflatex) to emulate the look of KaTeX. It seems (for example) subscripts in KaTeX have the same design as normal-sized text, and are just scaled down? And beside that, everything looks more solid/black – and I don't think it's just a matter of SVG rendering (though I may be wrong).
renderToText
produces span
elements with borders that wind up not being displayed correctly.
renderToText
in the console in the browser, and it produces the SVG version
\frac{\mathrm{TP}}{\mathrm{TP}+\mathrm{FN}}
"<span class=\"katex\"><span class=\"katex-mathml\"><math><semantics><mrow><mfrac><mrow><mrow><mi mathvariant=\"normal\">T</mi><mi mathvariant=\"normal\">P</mi></mrow></mrow><mrow><mrow><mi mathvariant=\"normal\">T</mi><mi mathvariant=\"normal\">P</mi></mrow><mo>+</mo><mrow><mi mathvariant=\"normal\">F</mi><mi mathvariant=\"normal\">N</mi></mrow></mrow></mfrac></mrow><annotation encoding=\"application/x-tex\">\\frac{\\mathrm{TP}}{\\mathrm{TP}+\\mathrm{FN}}</annotation></semantics></math></span><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"strut\" style=\"height:0.872331em;\"></span><span class=\"strut bottom\" style=\"height:1.275662em;vertical-align:-0.403331em;\"></span><span class=\"base\"><span class=\"mord\"><span class=\"mopen nulldelimiter\"></span><span class=\"mfrac\"><span class=\"vlist-t vlist-t2\"><span class=\"vlist-r\"><span class=\"vlist\" style=\"height:0.872331em;\"><span style=\"top:-2.655em;\"><span class=\"pstrut\" style=\"height:3em;\"></span><span class=\"sizing reset-size6 size3 mtight\"><span class=\"mord mtight\"><span class=\"mord mtight\"><span class=\"mord mathrm mtight\">T</span><span class=\"mord mathrm mtight\">P</span></span><span class=\"mbin mtight\">+</span><span class=\"mord mtight\"><span class=\"mord mathrm mtight\">F</span><span class=\"mord mathrm mtight\">N</span></span></span></span></span><span style=\"top:-3.15em;\"><span class=\"pstrut\" style=\"height:3em;\"></span><span class=\"stretchy\" style=\"height:0.2em;\"><svg width='400em' height='0.2em' viewBox='0 0 400000 200' preserveAspectRatio='xMinYMin slice'><path d='M0 80H400000 v40H0z M0 80H400000 v40H0z'/></svg></span></span><span style=\"top:-3.394em;\"><span class=\"pstrut\" style=\"height:3em;\"></span><span class=\"sizing reset-size6 size3 mtight\"><span class=\"mord mtight\"><span class=\"mord mtight\"><span class=\"mord mathrm mtight\">T</span><span class=\"mord mathrm mtight\">P</span></span></span></span></span></span><span class=\"vlist-s\"></span></span><span class=\"vlist-r\"><span class=\"vlist\" style=\"height:0.403331em;\"></span></span></span></span><span class=\"mclose nulldelimiter\"></span></span></span></span></span>"
'<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mfrac><mrow><mi mathvariant="normal">T</mi><mi mathvariant="normal">P</mi></mrow><mrow><mrow><mi mathvariant="normal">T</mi><mi mathvariant="normal">P</mi></mrow><mo>+</mo><mrow><mi mathvariant="normal">F</mi><mi mathvariant="normal">N</mi></mrow></mrow></mfrac></mrow><annotation encoding="application/x-tex">\\frac{\\mathrm{TP}}{\\mathrm{TP}+\\mathrm{FN}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.275662em;vertical-align:-0.403331em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.872331em;"><span style="top:-2.655em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathrm mtight">T</span><span class="mord mathrm mtight">P</span></span><span class="mbin mtight">+</span><span class="mord mtight"><span class="mord mathrm mtight">F</span><span class="mord mathrm mtight">N</span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.394em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathrm mtight">T</span><span class="mord mathrm mtight">P</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.403331em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span>'
We updated Gitter to use the latest katex@0.10.0
, gitlab-org/gitter/webapp!1308
You can test it out on Gitter next/staging, https://next.gitter.im/ (part of Gitter 19.32.0)
If you see anything wrong, feel free to create an issue, https://gitlab.com/gitlab-org/gitter/webapp/issues
Hi, I'm trying to build KaTeX and it fails.
What I did is this:
git clone git@github.com:KaTeX/KaTeX.git
cd KaTeX/
npm install
npm run build
and the build output started as follows:
$ npm run build
> katex@0.10.1-pre build /home/username/KaTeX
> yarn prestart && rimraf dist/ && mkdirp dist && cp README.md dist && rollup -c && webpack
yarn run v1.13.0
$ yarn check && node src/unicodeMake.js
info fsevents@1.2.4: The platform "linux" is incompatible with this module.
info "fsevents@1.2.4" is an optional dependency and failed compatibility check. Excluding it from installation.
error "@babel/generator" is wrong version: expected "7.0.0", got "7.3.0"
error "@babel/helper-function-name" is wrong version: expected "7.0.0", got "7.1.0"
error "@babel/parser" is wrong version: expected "7.0.0", got "7.3.1"
...
The same failure occurs when I run yarn build
.
What am I doing wrong? I have node version v8.10.0, npm version 3.5.2, and yarn version 1.13.0. And current KaTeX commit is 7f778d1543fc1a9021609fa29067073658fb0d4b
.