@@ -9387,7 +9387,7 @@ class FontHandler {
9387
9387
this.scaled = true;
9388
9388
}
9389
9389
9390
- this.size = Math.round(size || 11 );
9390
+ this.size = Math.round(size);
9391
9391
this.scale = scale;
9392
9392
this.index = 0;
9393
9393
@@ -10102,7 +10102,7 @@ function parseLatex(node, arg, label, curr) {
10102
10102
},
10103
10103
10104
10104
createSubPos = fscale => {
10105
- return { lvl: curr.lvl + 1, x: 0, y: 0, fsize: curr.fsize*(fscale || 1), color: curr.color, font: curr.font, parent: curr, painter: curr.painter };
10105
+ return { lvl: curr.lvl + 1, x: 0, y: 0, fsize: curr.fsize*(fscale || 1), color: curr.color, font: curr.font, parent: curr, painter: curr.painter, italic: curr.italic, bold: curr.bold };
10106
10106
};
10107
10107
10108
10108
while (label) {
@@ -10140,7 +10140,8 @@ function parseLatex(node, arg, label, curr) {
10140
10140
const g = curr.g || (alone ? node : currG()),
10141
10141
elem = g.append('svg:text');
10142
10142
10143
- if (alone && !curr.g) curr.g = elem;
10143
+ if (alone && !curr.g)
10144
+ curr.g = elem;
10144
10145
10145
10146
// apply font attributes only once, inherited by all other elements
10146
10147
if (curr.ufont) {
@@ -10187,7 +10188,7 @@ function parseLatex(node, arg, label, curr) {
10187
10188
elem.attr('text-decoration', curr.deco);
10188
10189
delete curr.deco; // inform that decoration was applied
10189
10190
} else
10190
- curr.xgap = xgap; // may be used in accent or somewere else
10191
+ curr.xgap = xgap; // may be used in accent or somewhere else
10191
10192
} else
10192
10193
addSpaces(nendspaces);
10193
10194
}
@@ -10449,11 +10450,7 @@ function parseLatex(node, arg, label, curr) {
10449
10450
10450
10451
const subpos = createSubPos();
10451
10452
10452
- let value;
10453
- for (let c = curr; c && (value === undefined && c); c = c.parent)
10454
- value = c[found.bi];
10455
-
10456
- subpos[found.bi] = !value;
10453
+ subpos[found.bi] = !subpos[found.bi];
10457
10454
10458
10455
parseLatex(currG(), arg, sublabel, subpos);
10459
10456
@@ -10531,7 +10528,7 @@ function parseLatex(node, arg, label, curr) {
10531
10528
if (found.name === '#color[')
10532
10529
subpos.color = curr.painter.getColor(foundarg);
10533
10530
else if (found.name === '#font[') {
10534
- subpos.font = new FontHandler(foundarg);
10531
+ subpos.font = new FontHandler(foundarg, subpos.fsize );
10535
10532
// here symbols embedding not works, use replacement
10536
10533
if ((subpos.font.name === kSymbol) && !subpos.font.isSymbol) {
10537
10534
subpos.font.isSymbol = kSymbol;
@@ -147392,7 +147389,7 @@ async function drawText$1() {
147392
147389
this.draw_g.append('svg:title').text(`link on ${text.fName}`);
147393
147390
}
147394
147391
147395
- return this.startTextDrawingAsync(this.textatt.font, this.textatt.getSize(w, h, fact, 0.05))
147392
+ return this.startTextDrawingAsync(this.textatt.font, this.textatt.getSize(w, h, fact /* , 0.05 */ ))
147396
147393
.then(() => this.drawText(arg))
147397
147394
.then(() => this.finishTextDrawing())
147398
147395
.then(() => {
0 commit comments