JKQTMathtext: bugfixed symbols for registered and copyright (had wrong codepoint)

This commit is contained in:
jkriege2 2022-08-10 12:09:13 +02:00
parent 0524c4b43d
commit 3de6cf59d2
8 changed files with 251 additions and 249 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 539 B

View File

@ -516,8 +516,8 @@ void JKQTMathTextSymbolNode::fillSymbolTables()
symbols["checkmark"]=UprightSymbolStd(QChar(0x2713)).addUprightHtml("✓");
symbols["circ"]=UprightSymbolStd(QChar(0x2218)).addUprightHtml("∘").addStd("o", ItalicOff,0.7, -0.25);
symbols["co"]=UprightSymbolUnicode(QChar(0x2105));
{ auto s=SimpleTextSymbol(QChar(0xA5), "©");
symbols["copyright"]=s; symbols["textcopyright"]=s; }
{ auto s=SimpleTextSymbol(QChar(0xA9), "©");
symbols["copyright"]=s; symbols["textcopyright"]=s; symbols["circledC"]=s; }
{ auto s=UprightSymbolUnicode(QChar(0x2020)).addUprightHtml("†");
symbols["dagger"]=s; symbols["dag"]=s; symbols["textdagger"]=s; }
{ auto s=UprightSymbolUnicode(QChar(0x2021)).addUprightHtml("‡");
@ -571,7 +571,7 @@ void JKQTMathTextSymbolNode::fillSymbolTables()
symbols["prime"]=UnicodeSymbol(QChar(0x2032)).addHtml("′").addStd("'");
symbols["rangle"]=UprightSymbolUnicode(QChar(0x232A)).addWinSymbol(QChar(0xF1));
symbols["rceil"]=UprightSymbolUnicode(QChar(0x2309)).addHtml("⌉").addWinSymbol(QChar(0xF9));
{ auto s=SimpleTextSymbol(QChar(0xAA), "®");
{ auto s=SimpleTextSymbol(QChar(0xAE), "®");
symbols["registered"]=s; symbols["textregistered"]=s; symbols["circledR"]=s; }
symbols["rfloor"]=UprightSymbolUnicode(QChar(0x230B)).addHtml("⌋").addWinSymbol(QChar(0xFB));
symbols["rightangle"]=UprightSymbolUnicode(QChar(0x221F)).addHtml("∟");