mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-09 19:00:48 +00:00
Fix checkstyle issue
This commit is contained in:
parent
54da12a132
commit
3e153dc0d3
@ -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: {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user