Skip to content

Commit c50dca3

Browse files
committed
Build with latex bold/italic fix
1 parent 26cae8e commit c50dca3

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

build/jsroot.js

+8-11
Original file line numberDiff line numberDiff line change
@@ -9387,7 +9387,7 @@ class FontHandler {
93879387
this.scaled = true;
93889388
}
93899389

9390-
this.size = Math.round(size || 11);
9390+
this.size = Math.round(size);
93919391
this.scale = scale;
93929392
this.index = 0;
93939393

@@ -10102,7 +10102,7 @@ function parseLatex(node, arg, label, curr) {
1010210102
},
1010310103

1010410104
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 };
1010610106
};
1010710107

1010810108
while (label) {
@@ -10140,7 +10140,8 @@ function parseLatex(node, arg, label, curr) {
1014010140
const g = curr.g || (alone ? node : currG()),
1014110141
elem = g.append('svg:text');
1014210142

10143-
if (alone && !curr.g) curr.g = elem;
10143+
if (alone && !curr.g)
10144+
curr.g = elem;
1014410145

1014510146
// apply font attributes only once, inherited by all other elements
1014610147
if (curr.ufont) {
@@ -10187,7 +10188,7 @@ function parseLatex(node, arg, label, curr) {
1018710188
elem.attr('text-decoration', curr.deco);
1018810189
delete curr.deco; // inform that decoration was applied
1018910190
} 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
1019110192
} else
1019210193
addSpaces(nendspaces);
1019310194
}
@@ -10449,11 +10450,7 @@ function parseLatex(node, arg, label, curr) {
1044910450

1045010451
const subpos = createSubPos();
1045110452

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];
1045710454

1045810455
parseLatex(currG(), arg, sublabel, subpos);
1045910456

@@ -10531,7 +10528,7 @@ function parseLatex(node, arg, label, curr) {
1053110528
if (found.name === '#color[')
1053210529
subpos.color = curr.painter.getColor(foundarg);
1053310530
else if (found.name === '#font[') {
10534-
subpos.font = new FontHandler(foundarg);
10531+
subpos.font = new FontHandler(foundarg, subpos.fsize);
1053510532
// here symbols embedding not works, use replacement
1053610533
if ((subpos.font.name === kSymbol) && !subpos.font.isSymbol) {
1053710534
subpos.font.isSymbol = kSymbol;
@@ -147392,7 +147389,7 @@ async function drawText$1() {
147392147389
this.draw_g.append('svg:title').text(`link on ${text.fName}`);
147393147390
}
147394147391

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 */))
147396147393
.then(() => this.drawText(arg))
147397147394
.then(() => this.finishTextDrawing())
147398147395
.then(() => {

modules/draw/more.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async function drawText() {
6666
this.draw_g.append('svg:title').text(`link on ${text.fName}`);
6767
}
6868

69-
return this.startTextDrawingAsync(this.textatt.font, this.textatt.getSize(w, h, fact /*, 0.05 */))
69+
return this.startTextDrawingAsync(this.textatt.font, this.textatt.getSize(w, h, fact /* , 0.05 */))
7070
.then(() => this.drawText(arg))
7171
.then(() => this.finishTextDrawing())
7272
.then(() => {

0 commit comments

Comments
 (0)