Fix checkstyle issue

This commit is contained in:
Arne Keller 2021-02-10 08:24:31 +01:00
parent 54da12a132
commit 3e153dc0d3
2 changed files with 4 additions and 3 deletions

View File

@ -4,9 +4,9 @@ SVGElement.prototype.getTransformToElement = SVGElement.prototype.getTransformTo
return elem.getScreenCTM().inverse().multiply(this.getScreenCTM());
};
window.MathJax = {
loader: {load: ['input/tex-full', 'output/svg', '[tex]/bussproofs', '[tex]/unicode']},
loader: {load: ['output/svg', '[tex]/ams', '[tex]/bussproofs', '[tex]/textmacros', '[tex]/unicode']},
tex: {
packages: {'[+]': ['bussproofs', 'unicode']},
packages: {'[+]': ['ams', 'bussproofs', 'textmacros', 'unicode']},
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {

View File

@ -56,7 +56,8 @@ public class LatexCreatorConstraints implements StepVisitor {
typeInferer.getMGU().ifPresent(mgu -> {
result.add(generateMGU());
numberGenerator.push();
result.add(generateMGU() + LATEX_NEW_LINE + new LatexCreatorType(typeInferer.getType().get()).getLatex());
result.add(generateMGU() + LATEX_NEW_LINE
+ new LatexCreatorType(typeInferer.getType().get()).getLatex());
numberGenerator.push();
});
// todo add some helpful text for the user