ToxicFrog / Ligaturizer

Programming Fonts with Ligatures added (& a script to add them to other fonts)
GNU General Public License v3.0
2.19k stars 112 forks source link

[Question] Generalisation of this program #60

Closed tecosaur closed 4 years ago

tecosaur commented 5 years ago

Hi @ToxicFrog ,

I'm trying to extend a font in such a similar way to that which you have done here that I was hoping you might be willing to give me one or two pointers, ideally on modifications that could be made to your code to make it do what I want :smiley:.

What I want to do is add ligatures, not for coding but for LaTeX. There seem to be two main differences between what I want to do and what you've done.

  1. I'd be mapping a sequence of characters to a single character from another font
  2. I want to do this for ~1000 LaTeX commands, I have a list of commands and the corresponding Unicode character as a string
  3. (minor) I may want to specify multiple fallback fonts, but this is non-essential

Would you be willing to give me an idea of what I'd need to modify from your script to make this possible?

thanks,

tecosaur

Addendum: Regarding using the unicode string → character name I imagine unicodedata.name could be useful

ToxicFrog commented 5 years ago

Just off the top of my head --

tecosaur commented 5 years ago

Thanks. I'll see how it goes and get back to you if I have any more questions (if you don't mind).

tecosaur commented 5 years ago

Sorry for leaving this open for so long without doing anything. Unfortunately I've been having some issues getting this to work.

Is there any chance you'd be willing to help by looking at what I've done and giving me your thoughts? I'm a bit lost.

tecosaur commented 5 years ago

More Info

The changes I have made can be seen at https://github.com/tecosaur/Ligaturizer and the current outpt is as follows:

fontforge -lang=py -script build.py 2>&1 \
| fgrep -v 'This contextual rule applies no lookups.' \
| fgrep -v 'Bad device table'
Copyright (c) 2000-2014 by George Williams. See AUTHORS for Contributors.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 with many parts BSD <http://fontforge.org/license.html>. Please read LICENSE.
 Based on sources from 16:11 UTC  1-May-2018-ML-D.
 Based on source from git with hash: 
The following table(s) in the font have been ignored by FontForge
  Ignoring 'DSIG' digital signature table
This font contains both a 'kern' table and a 'GPOS' table.
  The 'kern' table will only be read if there is no 'kern' feature in 'GPOS'.
Use-my-metrics flag set on at least two components in glyph 685
The glyph named Omega is mapped to U+03A9.
  But its name indicates it should be mapped to U+2126.
Ligaturizing font IBMPlexSans-Regular.otf (IBM Plex Sans) as 'Liga IBM Plex Sans'
    ...using ligatures from fonts/dejaVu/DejaVuSans.ttf
    ...saving to 'fonts/output/LigaIBMPlexSans.otf' (Liga IBM Plex Sans)

To be clear, a file is generated, it just doesn't perform any replacements. In this case \in is not replaced by "∈" U+2208 (8712 in base 10, see https://github.com/tecosaur/Ligaturizer/commit/5b48cd237e26bafd2ef85cd5308f8783147027df for the ligature addition and https://github.com/tecosaur/Ligaturizer/commit/fcf73b3574976deeceb06dcea55cc229466f1e0c for me trying to make it use unicode codepoints)

tecosaur commented 5 years ago

Update

I improved the logging a bit

And now I get this

image

Which is interesting as the character I mentioned (U+2208) definately exists in the font

image

So I'm guessing one of the issues may be that the character needs to be copied over first

tecosaur commented 5 years ago

Update 2

Simply copying the character glyph doesn't seem to work :disappointed:

image

I also tried changing to a character I knew was in the font, still no luck...

image

Perhaps it an issue with copying characters? I'll see what codepoint it's using

EDIT: Yep. It's using 97 which is fine, but for some reason apparently that codepoint is out of range!?

image

tecosaur commented 5 years ago

Update 3

Ok, I needed to add a trailing comma. Now the ligatures are being added ... but I have some new weirdness to deal with

image

tecosaur commented 5 years ago

Update 4

Fixed, that, latest issue is a corrupted font file being produced, here's my log:

Output Log

``` fontforge -lang=py -script build.py 2>&1 \ | fgrep -v 'This contextual rule applies no lookups.' \ | fgrep -v 'Bad device table' Copyright (c) 2000-2014 by George Williams. See AUTHORS for Contributors. License GPLv3+: GNU GPL version 3 or later with many parts BSD . Please read LICENSE. Based on sources from 16:11 UTC 1-May-2018-ML-D. Based on source from git with hash: The following table(s) in the font have been ignored by FontForge Ignoring 'DSIG' digital signature table This font contains both a 'kern' table and a 'GPOS' table. The 'kern' table will only be read if there is no 'kern' feature in 'GPOS'. Use-my-metrics flag set on at least two components in glyph 685 The glyph named Omega is mapped to U+03A9. But its name indicates it should be mapped to U+2126. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. Fetching ligatures from fonts/dejaVu/DejaVuSans.ttf Ligaturizing font IBMPlexSans-Regular.otf (IBM Plex Sans) as 'Liga IBM Plex Sans' ...using ligatures from fonts/dejaVu/DejaVuSans.ttf ADDING: (8477) ...copying 1 character glyphs... - 8477 ADDING: (120027) ...copying 1 character glyphs... - 120027 ...ERROR! Encoding is out of range ADDING: (119909) ...copying 1 character glyphs... - 119909 ...ERROR! Encoding is out of range ADDING: (119910) ...copying 1 character glyphs... - 119910 ...ERROR! Encoding is out of range ADDING: (8212) ...copying 1 character glyphs... - 8212 ADDING: (8211) ...copying 1 character glyphs... - 8211 ADDING: (182) ...copying 1 character glyphs... - 182 ADDING: (167) ...copying 1 character glyphs... - 167 ADDING: (169) ...copying 1 character glyphs... - 169 ADDING: (8224) ...copying 1 character glyphs... - 8224 ADDING: (8225) ...copying 1 character glyphs... - 8225 ADDING: (8230) ...copying 1 character glyphs... - 8230 ADDING: (163) ...copying 1 character glyphs... - 163 ADDING: (229) ...copying 1 character glyphs... - 229 ADDING: (197) ...copying 1 character glyphs... - 197 ADDING: (198) ...copying 1 character glyphs... - 198 ADDING: (230) ...copying 1 character glyphs... - 230 ADDING: (208) ...copying 1 character glyphs... - 208 ADDING: (240) ...copying 1 character glyphs... - 240 ADDING: (272) ...copying 1 character glyphs... - 272 ADDING: (273) ...copying 1 character glyphs... - 273 ADDING: (321) ...copying 1 character glyphs... - 321 ADDING: (322) ...copying 1 character glyphs... - 322 ADDING: (330) ...copying 1 character glyphs... - 330 ADDING: (331) ...copying 1 character glyphs... - 331 ADDING: (248) ...copying 1 character glyphs... - 248 ADDING: (216) ...copying 1 character glyphs... - 216 ADDING: (338) ...copying 1 character glyphs... - 338 ADDING: (339) ...copying 1 character glyphs... - 339 ADDING: (223) ...copying 1 character glyphs... - 223 ADDING: (222) ...copying 1 character glyphs... - 222 ADDING: (254) ...copying 1 character glyphs... - At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 254 ADDING: (913) ...copying 1 character glyphs... - 913 ADDING: (945) ...copying 1 character glyphs... - 945 ADDING: (914) ...copying 1 character glyphs... - 914 ADDING: (946) ...copying 1 character glyphs... - 946 ADDING: (915) ...copying 1 character glyphs... - 915 ADDING: (947) ...copying 1 character glyphs... - 947 ADDING: (916) ...copying 1 character glyphs... - 916 ADDING: (948) ...copying 1 character glyphs... - 948 ADDING: (917) ...copying 1 character glyphs... - 917 ADDING: (949) ...copying 1 character glyphs... - 949 ADDING: (949) ...copying 1 character glyphs... - 949 ADDING: (918) ...copying 1 character glyphs... - 918 ADDING: (950) ...copying 1 character glyphs... - 950 ADDING: (919) ...copying 1 character glyphs... - 919 ADDING: (951) ...copying 1 character glyphs... - 951 ADDING: (920) ...copying 1 character glyphs... - 920 ADDING: (952) ...copying 1 character glyphs... - 952 ADDING: (977) ...copying 1 character glyphs... - 977 ADDING: (921) ...copying 1 character glyphs... - 921 ADDING: (953) ...copying 1 character glyphs... - 953 ADDING: (922) ...copying 1 character glyphs... - 922 ADDING: (954) ...copying 1 character glyphs... - 954 ADDING: (1008) ...copying 1 character glyphs... - 1008 ADDING: (923) ...copying 1 character glyphs... - 923 ADDING: (955) ...copying 1 character glyphs... - 955 ADDING: (924) ...copying 1 character glyphs... - 924 ADDING: (956) ...copying 1 character glyphs... - 956 ADDING: (925) ...copying 1 character glyphs... - 925 ADDING: (957) ...copying 1 character glyphs... - 957 ADDING: (926) ...copying 1 character glyphs... - 926 ADDING: (958) ...copying 1 character glyphs... - 958 ADDING: (927) ...copying 1 character glyphs... - 927 ADDING: (959) ...copying 1 character glyphs... - 959 ADDING: (928) ...copying 1 character glyphs... - 928 ADDING: (960) ...copying 1 character glyphs... - 960 ADDING: (982) ...copying 1 character glyphs..At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. . - 982 ADDING: (929) ...copying 1 character glyphs... - 929 ADDING: (961) ...copying 1 character glyphs... - 961 ADDING: (1009) ...copying 1 character glyphs... - 1009 ADDING: (931) ...copying 1 character glyphs... - 931 ADDING: (963) ...copying 1 character glyphs... - 963 ADDING: (962) ...copying 1 character glyphs... - 962 ADDING: (932) ...copying 1 character glyphs... - 932 ADDING: (964) ...copying 1 character glyphs... - 964 ADDING: (933) ...copying 1 character glyphs... - 933 ADDING: (965) ...copying 1 character glyphs... - 965 ADDING: (934) ...copying 1 character glyphs... - 934 ADDING: (981) ...copying 1 character glyphs... - 981 ADDING: (966) ...copying 1 character glyphs... - 966 ADDING: (935) ...copying 1 character glyphs... - 935 ADDING: (967) ...copying 1 character glyphs... - 967 ADDING: (936) ...copying 1 character glyphs... - 936 ADDING: (968) ...copying 1 character glyphs... - 968 ADDING: (937) ...copying 1 character glyphs... - 937 ADDING: (969) ...copying 1 character glyphs... - 969 ADDING: (8711) ...copying 1 character glyphs... - 8711 ADDING: (171) ...copying 1 character glyphs... - 171 ADDING: (8249) ...copying 1 character glyphs... - 8249 ADDING: (8222) ...copying 1 character glyphs... - 8222 ADDING: (34) ...copying 1 character glyphs... - 34 ADDING: (187) ...copying 1 character glyphs... - 187 ADDING: (8250) ...copying 1 character glyphs... - 8250 ADDING: (8218) ...copying 1 character glyphs... - 8218 ADDING: (177) ...copying 1 character glyphs... - 177 ADDING: (8723) ...copying 1 character glyphs... - 8723 ADDING: (8901) ...copying 1 character glyphs... - 8901 ADDING: (215) ...copying 1 character glyphs... - 215 ADDING: (247) ...copying 1 character glyphs... - 247 ADDING: (8728) ...copying 1 character glyphs... - 8728 ADDING: (8804) ...copying 1 character glyphs... - 8804 ADDING: (8805) ...copying 1 character glyphs... - 8805 ADDING: (8801) ...copying 1 character glyphs... - 8801 ADDING: (8871) ...copying 1 character glyphs... - 8871 ADDING: (8826) ...copying 1 character glyphs... - 8826 ADDING: (8827) ...copying 1 character glyphs... - 8827 ADDING: (8764) ...copying 1 character glyphs... - 8764 ADDING: (8869) ...copying 1 character glyphs... - 8869 ADDING: (8828) ...copying 1 character glyphs... - 8828 ADDING: (8829) ...copying 1 character glyphs... - 8829 ADDING: (8810) ...copying 1 character glyphs... - 8810 ADDING: (8811) ...copying 1 character glyphs... - 8811 ADDING: (8781) ...copying 1 character glyphs... - 8781 ADDING: (8771) ...copying 1 character glyphs... - 8771 ADDING: (8741) ...copying 1 character glyphs... - 8741 ADDING: (8834) ...copying 1 character glyphs... - 8834 ADDING: (8835) ...copying 1 character glyphs... - 8835 ADDING: (8776) ...copying 1 character glyphs... - 8776 ADDING: (8904) ...copying 1 character glyphs... - 8904 ADDING: (8838) ...copying 1 character glyphs... - 8838 ADDING: (8839) ...copying 1 character glyphs... - 8839 ADDING: (8773) ...copying 1 character glyphs... - 8773 ADDING: (8904) ...copying 1 character glyphs... - 8904 ADDING: (8847) ...copying 1 character glyphs... - 8847 ADDING: (8848) ...copying 1 character glyphs... - 8848 ADDING: (8800) ...copying 1 character glyphs... - 8800 ADDING: (8849) ...copying 1 character glyphs... - 8849 ADDING: (8850) ...copying 1 character glyphs... - 8850 ADDING: (8784) ...copying 1 character glyphs... - 8784 ADDING: (8712) ...copying 1 character glyphs... - 8712 ADDING: (8715) ...copying 1 character glyphs... - 8715 ADDING: (8733) ...copying 1 character glyphs... - 8733 ADDING: (8866) ...copying 1 character glyphs... - 8866 ADDING: (8867) ...copying 1 character glyphs... - 8867 ADDING: (8659) ...copying 1 character glyphs... - 8659 ADDING: (8598) ...copying 1 character glyphs... - 8598 ADDING: (8595) ...copying 1 character glyphs... - 8595 ADDING: (10232) ...copying 1 character glyphs... At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. - 10232 ADDING: (8658) ...copying 1 character glyphs... - 8658 ADDING: (8617) ...copying 1 character glyphs... - 8617 ADDING: (8594) ...copying 1 character glyphs... - 8594 ADDING: (8618) ...copying 1 character glyphs... - 8618 ADDING: (10234) ...copying 1 character glyphs... - 10234 ADDING: (8600) ...copying 1 character glyphs... - 8600 ADDING: (8605) ...copying 1 character glyphs... - 8605 ADDING: (10236) ...copying 1 character glyphs... - 10236 ADDING: (8601) ...copying 1 character glyphs... - 8601 ADDING: (8592) ...copying 1 character glyphs... - 8592 ADDING: (10233) ...copying 1 character glyphs... - 10233 ADDING: (8593) ...copying 1 character glyphs... - 8593 ADDING: (8656) ...copying 1 character glyphs... - 8656 ADDING: (8657) ...copying 1 character glyphs... - 8657 ADDING: (8660) ...copying 1 character glyphs... - 8660 ADDING: (8614) ...copying 1 character glyphs... - 8614 ADDING: (8597) ...copying 1 character glyphs... - 8597 ADDING: (8596) ...copying 1 character glyphs... - 8596 ADDING: (8661) ...copying 1 character glyphs... - 8661 ADDING: (8230) ...copying 1 character glyphs... - 8230 ADDING: (8942) ...copying 1 character glyphs... - 8942 ADDING: (8945) ...copying 1 character glyphs... - 8945 ADDING: (8501) ...copying 1 character glyphs... - 8501 ADDING: (8242) ...copying 1 character glyphs... - 8242 ADDING: (8704) ...copying 1 character glyphs... - 8704 ADDING: (8734) ...copying 1 character glyphs... - 8734 ADDING: (8463) ...copying 1 character glyphs... - 8463 ADDING: (8709) ...copying 1 character glyphs... - 8709 ADDING: (8707) ...copying 1 character glyphs... - 8707 ADDING: (9633) ...copying 1 character glyphs... - 9633 ADDING: (305) ...copying 1 character glyphs... - 305 ADDING: (8711) ...copying 1 character glyphs... - 8711 ADDING: (172) ...copying 1 character glyphs... - 172 ADDING: (9671) ...copying 1 character glyphs... - 9671 ADDING: (63166) ...copying 1 character glyphs... - 6316t least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font.NG: At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ;30m (8730) ...copying 1 character glyphs... - 8730 ADDING: (9837) ...copying 1 character glyphs... - 9837 ADDING: (9651) ...copying 1 character glyphs... - 9651 ADDING: (8467) ...copying 1 character glyphs... - 8467 ADDING: (8868) ...copying 1 character glyphs... - 8868 ADDING: (9838) ...copying 1 character glyphs... - 9838 ADDING: (9827) ...copying 1 character glyphs... - 9827 ADDING: (8472) ...copying 1 character glyphs... - 8472 ADDING: (8869) ...copying 1 character glyphs... - 8869 ADDING: (9839) ...copying 1 character glyphs... - 9839 ADDING: (9830) ...copying 1 character glyphs... - 9830 ADDING: (8476) ...copying 1 character glyphs... - 8476 ADDING: (8214) ...copying 1 character glyphs... - 8214 ADDING: (92) ...copying 1 character glyphs... - 92 ADDING: (9829) ...copying 1 character glyphs... - 9829 ADDING: (8465) ...copying 1 character glyphs... - 8465 ADDING: (8736) ...copying 1 character glyphs... - 8736 ADDING: (8706) ...copying 1 character glyphs... - 8706 ADDING: (9824) ...copying 1 character glyphs... - 9824 ADDING: (8487) ...copying 1 character glyphs... - 8487 ADDING: (8721) ...copying 1 character glyphs... - 8721 ADDING: (8898) ...copying 1 character glyphs... - 8898 ADDING: (8857) ...copying 1 character glyphs... - 8857 ADDING: (8719) ...copying 1 character glyphs... - 8719 ADDING: (8899) ...copying 1 character glyphs... - 8899 ADDING: (8855) ...copying 1 character glyphs... - 8855 ADDING: (8720) ...copying 1 character glyphs... - 8720 ADDING: (8852) ...copying 1 character glyphs... - 8852 ADDING: (8853) ...copying 1 character glyphs... - 8853 ADDING: (8747) ...copying 1 character glyphs... - 8747 ADDING: (8744) ...copying 1 character glyphs... - 8744 ADDING: (8846) ...copying 1 character glyphs... - 8846 ADDING: (8750) ...copying 1 character glyphs... - 8750 ADDING: (8743) ...copying 1 character glyphs... - 8743 ADDING: (8970) ...copying 1 character glyphs... - 8970 ADDING: (8971) At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ...copying 1 character glyphs... - 8971 ADDING: (8968) ...copying 1 character glyphs... - 8968 ADDING: (8969) ...copying 1 character glyphs... - 8969 ADDING: (12296) ...copying 1 character glyphs... - 12296 ADDING: (12297) ...copying 1 character glyphs... - 12297 ADDING: (8814) ...copying 1 character glyphs... - 8814 ADDING: (8816) ...copying 1 character glyphs... - 8816 ADDING: (8815) ...copying 1 character glyphs... - 8815 ADDING: (8817) ...copying 1 character glyphs... - 8817 ADDING: (8748) ...copying 1 character glyphs... - 8748 ADDING: (8749) ...copying 1 character glyphs... - 8749 ADDING: (1031) ...copying 1 character glyphs... - 1031 ADDING: (37) ...copying 1 character glyphs... - 37 ADDING: (38) ...copying 1 character glyphs... - 38 ADDING: (1035) ...copying 1 character glyphs... - 1035 ADDING: (1115) ...copying 1 character glyphs... - 1115 ADDING: (1027) ...copying 1 character glyphs... - 1027 ADDING: (1107) ...copying 1 character glyphs... - 1107 ADDING: (1036) ...copying 1 character glyphs... - 1036 ADDING: (1116) ...copying 1 character glyphs... - 1116 ADDING: (8201) ...copying 1 character glyphs... - 8201 ADDING: (173) ...copying 1 character glyphs... - 173 ADDING: (9786) ...copying 1 character glyphs... - 9786 ADDING: (13025) ...copying 1 character glyphs... - 13025 ADDING: (8194) ...copying 1 character glyphs... - 8194 ADDING: (1108) ...copying 1 character glyphs... - 1108 ADDING: (1028) ...copying 1 character glyphs... - 1028 ADDING: (1030) ...copying 1 character glyphs... - 1030 ADDING: (8254) ...copying 1 character glyphs... - 8254 ADDING: (36) ...copying 1 character glyphs... - 36 ADDING: (8720) ...copying 1 character glyphs... - 8720 ADDING: (8778) ...copying 1 character glyphs... - 8778 ADDING: (8727) ...copying 1 character glyphs... - 8727 ADDING: (8780) ...copying 1 character glyphs... - 8780 ADDING: (8717) ...copying 1 character glyphs... - 8717 ADDING: (8765) ...copying 1 character glyphs...At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. - 8765 ADDING: (8909) ...copying 1 character glyphs... - 8909 ADDING: (8892) ...copying 1 character glyphs... - 8892 ADDING: (8757) ...copying 1 character glyphs... - 8757 ADDING: (8502) ...copying 1 character glyphs... - 8502 ADDING: (8812) ...copying 1 character glyphs... - 8812 ADDING: (9711) ...copying 1 character glyphs... - 9711 ADDING: (9733) ...copying 1 character glyphs... - 9733 ADDING: (9661) ...copying 1 character glyphs... - 9661 ADDING: (9651) ...copying 1 character glyphs... - 9651 ADDING: (59403) ...copying 1 character glyphs... - 59403 ADDING: (9642) ...copying 1 character glyphs... - 9642 ADDING: (9652) ...copying 1 character glyphs... - 9652 ADDING: (9662) ...copying 1 character glyphs... - 9662 ADDING: (9666) ...copying 1 character glyphs... - 9666 ADDING: (9656) ...copying 1 character glyphs... - 9656 ADDING: (9608) ...copying 1 character glyphs... - 9608 ADDING: (9562) ...copying 1 character glyphs... - 9562 ADDING: (9488) ...copying 1 character glyphs... - 9488 ADDING: (9557) ...copying 1 character glyphs... - 9557 ADDING: (9558) ...copying 1 character glyphs... - 9558 ADDING: (9559) ...copying 1 character glyphs... - 9559 ADDING: (8865) ...copying 1 character glyphs... - 8865 ADDING: (9484) ...copying 1 character glyphs... - 9484 ADDING: (9554) ...copying 1 character glyphs... - 9554 ADDING: (9555) ...copying 1 character glyphs... - 9555 ADDING: (9556) ...copying 1 character glyphs... - 9556 ADDING: (9472) ...copying 1 character glyphs... - 9472 ADDING: (9552) ...copying 1 character glyphs... - 9552 ADDING: (9516) ...copying 1 character glyphs... - 9516 ADDING: (9572) ...copying 1 character glyphs... - 9572 ADDING: (9573) ...copying 1 character glyphs... - 9573 ADDING: (9574) ...copying 1 character glyphs... - 9574 ADDING: (9524) ...copying 1 character glyphs... - 9524 ADDING: (9575) ...copying 1 character glyphs... - 9575 ADDING: (9576) ...copying 1 character glyphs... - 9576 ADDING: t least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 0m (9577) ...copying 1 character glyphs... - 9577 ADDING: (8863) ...copying 1 character glyphs... - 8863 ADDING: (8862) ...copying 1 character glyphs... - 8862 ADDING: (8864) ...copying 1 character glyphs... - 8864 ADDING: (9496) ...copying 1 character glyphs... - 9496 ADDING: (9563) ...copying 1 character glyphs... - 9563 ADDING: (9564) ...copying 1 character glyphs... - 9564 ADDING: (9565) ...copying 1 character glyphs... - 9565 ADDING: (9474) ...copying 1 character glyphs... - 9474 ADDING: (9553) ...copying 1 character glyphs... - 9553 ADDING: (9532) ...copying 1 character glyphs... - 9532 ADDING: (9578) ...copying 1 character glyphs... - 9578 ADDING: (9579) ...copying 1 character glyphs... - 9579 ADDING: (9580) ...copying 1 character glyphs... - 9580 ADDING: (9508) ...copying 1 character glyphs... - 9508 ADDING: (9569) ...copying 1 character glyphs... - 9569 ADDING: (9570) ...copying 1 character glyphs... - 9570 ADDING: (9571) ...copying 1 character glyphs... - 9571 ADDING: (9500) ...copying 1 character glyphs... - 9500 ADDING: (9566) ...copying 1 character glyphs... - 9566 ADDING: (9567) ...copying 1 character glyphs... - 9567 ADDING: (9568) ...copying 1 character glyphs... - 9568 ADDING: (8226) ...copying 1 character glyphs... - 8226 ADDING: (8782) ...copying 1 character glyphs... - 8782 ADDING: (8783) ...copying 1 character glyphs... - 8783 ADDING: (717) ...copying 1 character glyphs... - 717 ADDING: (8745) ...copying 1 character glyphs... - 8745 ADDING: (8914) ...copying 1 character glyphs... - 8914 ADDING: (1066) ...copying 1 character glyphs... - 1066 ADDING: (1098) ...copying 1 character glyphs... - 1098 ADDING: (10003) ...copying 1 character glyphs... - 10003 ADDING: (711) ...copying 1 character glyphs... - 711 ADDING: (8791) ...copying 1 character glyphs... - 8791 ADDING: (8634) ...copying 1 character glyphs... - 8634 ADDING: (8635) ...copying 1 character glyphs... - 8635 ADDING: (8859) At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ...copying 1 character glyphs... - 8859 ADDING: (8858) ...copying 1 character glyphs... - 8858 ADDING: (8861) ...copying 1 character glyphs... - 8861 ADDING: (174) ...copying 1 character glyphs... - 174 ADDING: (9416) ...copying 1 character glyphs... - 9416 ADDING: (8705) ...copying 1 character glyphs... - 8705 ADDING: (1100) ...copying 1 character glyphs... - 1100 ADDING: (1068) ...copying 1 character glyphs... - 1068 ADDING: (8746) ...copying 1 character glyphs... - 8746 ADDING: (8915) ...copying 1 character glyphs... - 8915 ADDING: (8926) ...copying 1 character glyphs... - 8926 ADDING: (8927) ...copying 1 character glyphs... - 8927 ADDING: (8910) ...copying 1 character glyphs... - 8910 ADDING: (8911) ...copying 1 character glyphs... - 8911 ADDING: (8630) ...copying 1 character glyphs... - 8630 ADDING: (8631) ...copying 1 character glyphs... - 8631 ADDING: (184) ...copying 1 character glyphs... - 184 ADDING: (8224) ...copying 1 character glyphs... - 8224 ADDING: (8504) ...copying 1 character glyphs... - 8504 ADDING: (8672) ...copying 1 character glyphs... - 8672 ADDING: (8674) ...copying 1 character glyphs... - 8674 ADDING: (8225) ...copying 1 character glyphs... - 8225 ADDING: (176) ...copying 1 character glyphs... - 176 ADDING: (8900) ...copying 1 character glyphs... - 8900 ADDING: (988) ...copying 1 character glyphs... - 988 ADDING: (8903) ...copying 1 character glyphs... - 8903 ADDING: (8973) ...copying 1 character glyphs... - 8973 ADDING: (8785) ...copying 1 character glyphs... - 8785 ADDING: (8724) ...copying 1 character glyphs... - 8724 ADDING: (8966) ...copying 1 character glyphs... - 8966 ADDING: (8650) ...copying 1 character glyphs... - 8650 ADDING: (8643) ...copying 1 character glyphs... - 8643 ADDING: (8642) ...copying 1 character glyphs... - 8642 ADDING: (8972) ...copying 1 character glyphs... - 8972 ADDING: (1029) ...copying 1 character glyphs... - 1029 ADDING: (1109) ...copying 1 character glyphs...At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. - 1109 ADDING: (1039) ...copying 1 character glyphs... - 1039 ADDING: (1119) ...copying 1 character glyphs... - 1119 ADDING: (803) ...copying 1 character glyphs... - 803 ...ERROR! float division by zero ADDING: (8790) ...copying 1 character glyphs... - 8790 ADDING: (8925) ...copying 1 character glyphs... - 8925 ADDING: (8924) ...copying 1 character glyphs... - 8924 ADDING: (8494) ...copying 1 character glyphs... - 8494 ADDING: (240) ...copying 1 character glyphs... - 240 ADDING: (8786) ...copying 1 character glyphs... - 8786 ADDING: (9792) ...copying 1 character glyphs... - 9792 ADDING: (8994) ...copying 1 character glyphs... - 8994 ADDING: (8807) ...copying 1 character glyphs... - 8807 ADDING: (8921) ...copying 1 character glyphs... - 8921 ADDING: (8503) ...copying 1 character glyphs... - 8503 ADDING: (8809) ...copying 1 character glyphs... - 8809 ADDING: (8809) ...copying 1 character glyphs... - 8809 ADDING: (8935) ...copying 1 character glyphs... - 8935 ADDING: (8919) ...copying 1 character glyphs... - 8919 ADDING: (8923) ...copying 1 character glyphs... - 8923 ADDING: (8923) ...copying 1 character glyphs... - 8923 ADDING: (8823) ...copying 1 character glyphs... - 8823 ADDING: (8819) ...copying 1 character glyphs... - 8819 ADDING: (8809) ...copying 1 character glyphs... - 8809 ADDING: (8462) ...copying 1 character glyphs... - 8462 ADDING: (13025) ...copying 1 character glyphs... - 13025 ADDING: (295) ...copying 1 character glyphs... - 295 ADDING: (294) ...copying 1 character glyphs... - 294 ADDING: (8259) ...copying 1 character glyphs... - 8259 ADDING: (733) ...copying 1 character glyphs... - 733 ADDING: (8505) ...copying 1 character glyphs... - 8505 ADDING: (8660) ...copying 1 character glyphs... - 8660 ADDING: (8890) ...copying 1 character glyphs... - 8890 ADDING: (731) ...copying 1 character glyphs... - 731 ADDING: (123) ...copying 1 character glyphs... - 123 ADDING: (46) ...copying 1 character glyphs... - 46 ADDING: (8610) ...copying 1 character glyphs... - 8610 ADDING: (8637) ...copying 1 character glyphs... - 8637 ADDING: (8636) ...copying 1 character glyphs... - 8636 ADDING: (8647) ...copying 1 character glyphs... - 8647 ADDING: (8646) ...copying 1 character glyphs... - 8646 ADDING: (8651) ...copying 1 character glyphs... - 8651 ADDING: (8621) ...copying 1 character glyphs... - 8621 ADDING: (8907) ...copying 1 character glyphs... - 8907 ADDING: (8806) ...copying 1 character glyphs... - 8806 ADDING: (8918) ...copying 1 character glyphs... - 8918 ADDING: (8922) ...copying 1 character glyphs... - 8922 ADDING: (8922) ...copying 1 character glyphs... - 8922 ADDING: (8822) ...copying 1 character glyphs... - 8822 ADDING: (8818) ...copying 1 character glyphs... - 8818 ADDING: (9604) ...copying 1 character glyphs... - 9604 ADDING: (12314) ...copying 1 character glyphs... - 12314 ADDING: (8990) ...copying 1 character glyphs... - 8990 ADDING: (8666) ...copying 1 character glyphs... - 8666 ADDING: (8920) ...copying 1 character glyphs... - 8920 ADDING: (320) ...copying 1 character glyphs... - 320 ADDING: (319) ...copying 1 character glyphs... - 319 ADDING: (8808) ...copying 1 character glyphs... - 8808 ADDING: (8808) ...copying 1 character glyphs... - 8808 ADDING: (172) ...copying 1 character glyphs... - 172 ADDING: (8934) ...copying 1 character glyphs... - 8934 ADDING: (8619) ...copying 1 character glyphs... - 8619 ADDING: (8620) ...copying 1 character glyphs... - 8620 ADDING: (9674) ...copying 1 character glyphs... - 9674 ADDING: (8991) ...copying 1 character glyphs... - 8991 ADDING: (8624) ...copying 1 character glyphs... - 8624 ADDING: (8905) ...copying 1 character glyphs... - 8905 ADDING: (8808) ...copying 1 character glyphs... - 8808 ADDING: (9794) ...copying 1 character glyphs... - 9794 ADDING: (10016) ...copying 1 character glyphs... - 10016 ADDING: (9646) ...copying 1 character glyphs... - 9646 ADDING: (8257) ...copying 1 character glyphs... - 8257 ADDING: (8982) ...copying 1 character glyphs... - 8982 ADDING: (163) ...copying 1 character glyphs... - 163 ADDING: (8737) ...copying 1 character glyphs... - 8737 ADDING: (8739) ...copying 1 character glyphs... - 8739 ADDING: (8230) ...copying 1 character glyphs... - 8230 ADDING: (8888) ...copying 1 character glyphs... - 8888 ADDING: (8800) ...copying 1 character glyphs... - 8800 ADDING: (8599) ...copying 1 character glyphs... - 8599 ADDING: (8708) ...copying 1 character glyphs... - 8708 ADDING: (8817) ...copying 1 character glyphs... - 8817 ADDING: (8229) ...copying 1 character glyphs... - 8229 ADDING: (8602) ...copying 1 character glyphs... - 8602 ADDING: (8653) ...copying 1 character glyphs... - 8653 ADDING: (8622) ...copying 1 character glyphs... - 8622 ADDING: (8654) ...copying 1 character glyphs... - 8654 ADDING: (8816) ...copying 1 character glyphs... - 8816 ADDING: (8740) ...copying 1 character glyphs... - 8740 ADDING: (8800) ...copying 1 character glyphs... - 8800 ADDING: (8815) ...copying 1 character glyphs... - 8815 ADDING: (8742) ...copying 1 character glyphs... - 8742 ADDING: (8603) ...copying 1 character glyphs... - 8603 ADDING: (8655) ...copying 1 character glyphs... - 8655 ADDING: (8840) ...copying 1 character glyphs... - 8840 ADDING: (8841) ...copying 1 character glyphs... - 8841 ADDING: (8938) ...copying 1 character glyphs... - 8938 ADDING: (8940) ...copying 1 character glyphs... - 8940 ADDING: (8939) ...copying 1 character glyphs... - 8939 ADDING: (8941) ...copying 1 character glyphs... - 8941 ADDING: (8876) ...copying 1 character glyphs... - 8876 ADDING: (8877) ...copying 1 character glyphs... - 8877 ADDING: (8878) ...copying 1 character glyphs... - 8878 ADDING: (8879) ...copying 1 character glyphs... - 8879 ADDING: (8857) ...copying 1 character glyphs... - 8857 ADDING: (8854) ...copying 1 character glyphs... - 8854 ADDING: (8853) ...copying 1 character glyphs... - 8853 ADDING: (8856) ...copying 1 character glyphs... - 8856 ADDING: (8855) ...copying 1 character glyphs... - 8855 ADDING: (9742) ...copying 1 character glyphs... - 9742 ADDING: (8916) ...copying 1 character glyphs... - 8916 ADDING: (8828) ...copying 1 character glyphs... - 8828 ADDING: (8936) ...copying 1 character glyphs... - 8936 ADDING: (8830) ...copying 1 character glyphs... - 8830 ADDING: (8195) ...copying 1 character glyphs... - 8195 ADDING: (8981) ...copying 1 character glyphs... - 8981 ADDING: (8611) ...copying 1 character glyphs... - 8611 ADDING: (8641) ...copying 1 character glyphs... - 8641 ADDING: (8640) ...copying 1 character glyphs... - 8640 ADDING: (8644) ...copying 1 character glyphs... - 8644 ADDING: (8652) ...copying 1 character glyphs... - 8652 ADDING: (8649) ...copying 1 character glyphs... - 8649 ADDING: (8669) ...copying 1 character glyphs... - 8669 ADDING: (8908) ...copying 1 character glyphs... - 8908 ADDING: (8787) ...copying 1 character glyphs... - 8787 ADDING: (12315) ...copying 1 character glyphs... - 12315 ADDING: (8667) ...copying 1 character glyphs... - 8667 ADDING: (8625) ...copying 1 character glyphs... - 8625 ADDING: (8906) ...copying 1 character glyphs... - 8906 ADDING: (730) ...copying 1 character glyphs... - 730 ADDING: (9785) ...copying 1 character glyphs... - 9785 ADDING: (8726) ...copying 1 character glyphs... - 8726 ADDING: (65128) ...copying 1 character glyphs... - 65128 ADDING: (9786) ...copying 1 character glyphs... - 9786 ADDING: (8738) ...copying 1 character glyphs... - 8738 ADDING: (8735) ...copying 1 character glyphs... - 8735 ADDING: (8851) ...copying 1 character glyphs... - 8851 ADDING: (8852) ...copying 1 character glyphs... - 8852 ADDING: (8730) ...copying 1 character glyphs... - 8730 ADDING: (9632) ...copying 1 character glyphs... - 9632 ADDING: (8902) ...copying 1 character glyphs... - 8902 ADDING: (8912) ...copying 1 character glyphAt least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. s... - 8912 ADDING: (8838) ...copying 1 character glyphs... - 8838 ADDING: (8842) ...copying 1 character glyphs... - 8842 ADDING: (8842) ...copying 1 character glyphs... - 8842 ADDING: (8829) ...copying 1 character glyphs... - 8829 ADDING: (8937) ...copying 1 character glyphs... - 8937 ADDING: (8831) ...copying 1 character glyphs... - 8831 ADDING: (8913) ...copying 1 character glyphs... - 8913 ADDING: (8839) ...copying 1 character glyphs... - 8839 ADDING: (8843) ...copying 1 character glyphs... - 8843 ADDING: (8843) ...copying 1 character glyphs... - 8843 ADDING: (166) ...copying 1 character glyphs... - 166 ADDING: (162) ...copying 1 character glyphs... - 162 ADDING: (8471) ...copying 1 character glyphs... - 8471 ADDING: (164) ...copying 1 character glyphs... - 164 ADDING: (8364) ...copying 1 character glyphs... - 8364 ADDING: (8260) ...copying 1 character glyphs... - 8260 ADDING: (9834) ...copying 1 character glyphs... - 9834 ADDING: (170) ...copying 1 character glyphs... - 170 ADDING: (186) ...copying 1 character glyphs... - 186 ADDING: (8241) ...copying 1 character glyphs... - 8241 ADDING: (8240) ...copying 1 character glyphs... - 8240 ADDING: (8478) ...copying 1 character glyphs... - 8478 ADDING: (8251) ...copying 1 character glyphs... - 8251 ADDING: (8482) ...copying 1 character glyphs... - 8482 ADDING: (9251) ...copying 1 character glyphs... - 9251 ADDING: (8756) ...copying 1 character glyphs... - 8756 ADDING: (8594) ...copying 1 character glyphs... - 8594 ADDING: (9663) ...copying 1 character glyphs... - 9663 ADDING: (9667) ...copying 1 character glyphs... - 9667 ADDING: (8884) ...copying 1 character glyphs... - 8884 ADDING: (8796) ...copying 1 character glyphs... - 8796 ADDING: (9657) ...copying 1 character glyphs... - 9657 ADDING: (8885) ...copying 1 character glyphs... - 8885 ADDING: (358) ...copying 1 character glyphs... - 358 ADDING: (359) ...copying 1 character glyphs... - 359 ADDING: (At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 8606) ...copying 1 character glyphs... - 8606 ADDING: (8608) ...copying 1 character glyphs... - 8608 ADDING: (865) ...copying 1 character glyphs... - 865 ...ERROR! float division by zero ADDING: (9600) ...copying 1 character glyphs... - 9600 ADDING: (8988) ...copying 1 character glyphs... - 8988 ADDING: (8975) ...copying 1 character glyphs... - 8975 ADDING: (8639) ...copying 1 character glyphs... - 8639 ADDING: (8638) ...copying 1 character glyphs... - 8638 ADDING: (8846) ...copying 1 character glyphs... - 8846 ADDING: (8648) ...copying 1 character glyphs... - 8648 ADDING: (8989) ...copying 1 character glyphs... - 8989 ADDING: (8974) ...copying 1 character glyphs... - 8974 ADDING: (8733) ...copying 1 character glyphs... - 8733 ADDING: (9653) ...copying 1 character glyphs... - 9653 ADDING: (8882) ...copying 1 character glyphs... - 8882 ADDING: (8883) ...copying 1 character glyphs... - 8883 ADDING: (8872) ...copying 1 character glyphs... - 8872 ADDING: (8873) ...copying 1 character glyphs... - 8873 ADDING: (8744) ...copying 1 character glyphs... - 8744 ADDING: (8891) ...copying 1 character glyphs... - 8891 ADDING: (124) ...copying 1 character glyphs... - 124 ADDING: (8214) ...copying 1 character glyphs... - 8214 ADDING: (8874) ...copying 1 character glyphs... - 8874 ADDING: (8743) ...copying 1 character glyphs... - 8743 ADDING: (8768) ...copying 1 character glyphs... - 8768 ADDING: (165) ...copying 1 character glyphs... - 165 ADDING: (125) ...copying 1 character glyphs... - 125 ADDING: (771) ...copying 1 character glyphs... - 771 ...ERROR! float division by zero ADDING: (768) ...copying 1 character glyphs... - 768 ...ERROR! float division by zero ADDING: (775) ...copying 1 character glyphs... - 775 ...ERROR! float division by zero ADDING: (769) ...copying 1 character glyphs... - 769 ...ERROR! float division by zero ADDING: (819) ...copying 1 character glyphs... - 819 ...ERROR! float division by zero ADDING: (776) ...copying 1 character glyphs... - At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 776 ...ERROR! float division by zero ADDING: (824) ...copying 1 character glyphs... - 824 ...ERROR! float division by zero ADDING: (773) ...copying 1 character glyphs... - 773 ...ERROR! float division by zero ADDING: (8407) ...copying 1 character glyphs... - 8407 ...ERROR! float division by zero ADDING: (770) ...copying 1 character glyphs... - 770 ...ERROR! float division by zero ADDING: (774) ...copying 1 character glyphs... - 774 ...ERROR! float division by zero ADDING: (818) ...copying 1 character glyphs... - 818 ...ERROR! float division by zero ADDING: (821) ...copying 1 character glyphs... - 821 ...ERROR! float division by zero ADDING: (773) ...copying 1 character glyphs... - 773 ...ERROR! float division by zero ADDING: (754) ...copying 1 character glyphs... - 754 ADDING: (8332) ...copying 1 character glyphs... - 8332 ADDING: (8329) ...copying 1 character glyphs... - 8329 ADDING: (8328) ...copying 1 character glyphs... - 8328 ADDING: (8327) ...copying 1 character glyphs... - 8327 ADDING: (8326) ...copying 1 character glyphs... - 8326 ADDING: (8325) ...copying 1 character glyphs... - 8325 ADDING: (8324) ...copying 1 character glyphs... - 8324 ADDING: (8323) ...copying 1 character glyphs... - 8323 ADDING: (8322) ...copying 1 character glyphs... - 8322 ADDING: (8321) ...copying 1 character glyphs... - 8321 ADDING: (8320) ...copying 1 character glyphs... - 8320 ADDING: (8331) ...copying 1 character glyphs... - 8331 ADDING: (8330) ...copying 1 character glyphs... - 8330 ADDING: (8334) ...copying 1 character glyphs... - 8334 ADDING: (8312) ...copying 1 character glyphs... - 8312 ADDING: (8313) ...copying 1 character glyphs... - 8313 ADDING: (8316) ...copying 1 character glyphs... - 8316 ADDING: (707) ...copying 1 character glyphs... - 707 ADDING: (8304) ...copying 1 character glyphs... - 8304 ADDING: (185) ...copying 1 character glyphs... - 185 ADDING: (178) ...copying 1 character glyphs... - 178 ADDING: (179) ...copying 1 character glyphs... - 179 At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 35m8308) ...copying 1 character glyphs... - 8308 ADDING: (8309) ...copying 1 character glyphs... - 8309 ADDING: (8310) ...copying 1 character glyphs... - 8310 ADDING: (8311) ...copying 1 character glyphs... - 8311 ADDING: (8318) ...copying 1 character glyphs... - 8318 ADDING: (42) ...copying 1 character glyphs... - 42 ADDING: (8314) ...copying 1 character glyphs... - 8314 ADDING: (8315) ...copying 1 character glyphs... - 8315 ADDING: 0x1d465 (MATHEMATICAL ITALIC SMALL X) \x ...selecting 119909 ...ERROR! Glyph cannot have 0 width ADDING: 0x1d466 (MATHEMATICAL ITALIC SMALL Y) \y ...selecting 119910 ...ERROR! Glyph cannot have 0 width ADDING: 0x2013 (EN DASH) -- ...selecting 8211 ...created as lig.3 [Success] ADDING: 0xb6 (PILCROW SIGN) \P ...selecting 182 ...created as lig.4 [Success] ADDING: 0xa7 (SECTION SIGN) \S ...selecting 167 ...created as lig.5 [Success] ADDING: 0x141 (LATIN CAPITAL LETTER L WITH STROKE) \L ...selecting 321 ...created as lig.6 [Success] ADDING: 0x142 (LATIN SMALL LETTER L WITH STROKE) \l ...selecting 322 ...created as lig.7 [Success] ADDING: 0xf8 (LATIN SMALL LETTER O WITH STROKE) \o ...selecting 248 ...created as lig.8 [Success] ADDING: 0xd8 (LATIN CAPITAL LETTER O WITH STROKE) \O ...selecting 216 ...created as lig.9 [Success] ADDING: 0x2016 (DOUBLE VERTICAL LINE) \| ...selecting 8214 ...created as lig.10 ...ERROR! Too many separation marks, starting at: |... ADDING: 0x25 (PERCENT SIGN) \% ...selecting 37 ...created as lig.11 [Success] ADDING: 0x26 (AMPERSAND) \& ...selecting 38 ...created as lig.12 [Success] ADDING: 0x2009 (THIN SPACE) \, ...selecting 8201 ...created as lig.13 [Success] ADDING: 0xad (SOFT HYPHEN) \- ...selecting 173 ...created as lig.14 [Success] ADDING: 0x2002 (EN SPACE) \; ...selecting 8194 ...created as lig.15 [Success] ADDING: 0x203e (OVERLINE) \= ...selecting 8254 ...created as lig.16 [Success] ADDING: 0x2cd (MODIFIER LETTER LOW MACRON) \b ...selecting 717 ...created as lig.17 [Success] ADDING: 0xb8 (CEDILLA) \c ...selecting 184 ...created as lig.18 [Success] ADDING: 0x323 (COMBINING DOT BELOW) \d ...selecting 803 ...ERROR! Glyph cannot have 0 width At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. g.20 [Success] ADDING: 0x2dd (DOUBLE ACUTE ACCENT) \H ...selecting 733 ...created as lig.21 [Success] ADDING: 0x2139 (INFORMATION SOURCE) \i ...selecting 8505 ...created as lig.22 [Success] ADDING: 0x2db (OGONEK) \k ...selecting 731 ...created as lig.23 [Success] ADDING: 0x2da (RING ABOVE) \r ...selecting 730 ...created as lig.24 [Success] ADDING: 0x361 (COMBINING DOUBLE INVERTED BREVE) \t ...selecting 865 ...ERROR! Glyph cannot have 0 width ADDING: 0x7d (RIGHT CURLY BRACKET) \} ...selecting 125 ...created as lig.26 [Success] ADDING: 0x2f2 (MODIFIER LETTER LOW RIGHT ARROWHEAD) _> ...selecting 754 ...ERROR! Glyph cannot have 0 width ADDING: 0x208c (SUBSCRIPT EQUALS SIGN) _= ...selecting 8332 ...created as lig.28 [Success] ADDING: 0x2089 (SUBSCRIPT NINE) _9 ...selecting 8329 ...created as lig.29 [Success] ADDING: 0x2088 (SUBSCRIPT EIGHT) _8 ...selecting 8328 ...created as lig.30 [Success] ADDING: 0x2087 (SUBSCRIPT SEVEN) _7 ...selecting 8327 ...created as lig.31 [Success] ADDING: 0x2086 (SUBSCRIPT SIX) _6 ...selecting 8326 ...created as lig.32 [Success] ADDING: 0x2085 (SUBSCRIPT FIVE) _5 ...selecting 8325 ...created as lig.33 [Success] ADDING: 0x2084 (SUBSCRIPT FOUR) _4 ...selecting 8324 ...created as lig.34 [Success] ADDING: 0x2083 (SUBSCRIPT THREE) _3 ...selecting 8323 ...created as lig.35 [Success] ADDING: 0x2082 (SUBSCRIPT TWO) _2 ...selecting 8322 ...created as lig.36 [Success] ADDING: 0x2081 (SUBSCRIPT ONE) _1 ...selecting 8321 ...created as lig.37 [Success] ADDING: 0x2080 (SUBSCRIPT ZERO) _0 ...selecting 8320 ...created as lig.38 [Success] ADDING: 0x208b (SUBSCRIPT MINUS) _- ...selecting 8331 ...created as lig.39 [Success] ADDING: 0x208a (SUBSCRIPT PLUS SIGN) _+ ...selecting 8330 ...created as lig.40 [Success] ADDING: 0x208e (SUBSCRIPT RIGHT PARENTHESIS) _) ...selecting 8334 ...created as lig.41 [Success] ADDING: 0x2078 (SUPERSCRIPT EIGHT) ^8 ...selecting 8312 ...created as lig.42 [Success] ADDING: 0x2079 (SUPERSCRIPT NINE) ^9 ...selecting 8313 ...created as lig.43 [Success] ADDING: 0x207c (SUPERSCRIPT EQUALS SIGN) ^= ...selecting 8316 ...created as lig.44 [Success] ADDING: 0x2c3 (MODIFIER LETTER RIGHT ARROWHEAD) ^> ...selecting 707 ...created as lig.45 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. : 0x2070 (SUPERSCRIPT ZERO) ^0 ...selecting 8304 ...created as lig.46 [Success] ADDING: 0xb9 (SUPERSCRIPT ONE) ^1 ...selecting 185 ...created as lig.47 [Success] ADDING: 0xb2 (SUPERSCRIPT TWO) ^2 ...selecting 178 ...created as lig.48 [Success] ADDING: 0xb3 (SUPERSCRIPT THREE) ^3 ...selecting 179 ...created as lig.49 [Success] ADDING: 0x2074 (SUPERSCRIPT FOUR) ^4 ...selecting 8308 ...created as lig.50 [Success] ADDING: 0x2075 (SUPERSCRIPT FIVE) ^5 ...selecting 8309 ...created as lig.51 [Success] ADDING: 0x2076 (SUPERSCRIPT SIX) ^6 ...selecting 8310 ...created as lig.52 [Success] ADDING: 0x2077 (SUPERSCRIPT SEVEN) ^7 ...selecting 8311 ...created as lig.53 [Success] ADDING: 0x207e (SUPERSCRIPT RIGHT PARENTHESIS) ^) ...selecting 8318 ...created as lig.54 [Success] ADDING: 0x2a (ASTERISK) ^* ...selecting 42 ...created as lig.55 [Success] ADDING: 0x207a (SUPERSCRIPT PLUS SIGN) ^+ ...selecting 8314 ...created as lig.56 [Success] ADDING: 0x207b (SUPERSCRIPT MINUS) ^- ...selecting 8315 ...created as lig.57 [Success] ADDING: 0x2014 (EM DASH) --- ...selecting 8212 ...created as lig.58 [Success] ADDING: 0xe5 (LATIN SMALL LETTER A WITH RING ABOVE) \aa ...selecting 229 ...created as lig.59 [Success] ADDING: 0xc5 (LATIN CAPITAL LETTER A WITH RING ABOVE) \AA ...selecting 197 ...created as lig.60 [Success] ADDING: 0xc6 (LATIN CAPITAL LETTER AE) \AE ...selecting 198 ...created as lig.61 [Success] ADDING: 0xe6 (LATIN SMALL LETTER AE) \ae ...selecting 230 ...created as lig.62 [Success] ADDING: 0xd0 (LATIN CAPITAL LETTER ETH) \DH ...selecting 208 ...created as lig.63 [Success] ADDING: 0xf0 (LATIN SMALL LETTER ETH) \dh ...selecting 240 ...created as lig.64 [Success] ADDING: 0x110 (LATIN CAPITAL LETTER D WITH STROKE) \DJ ...selecting 272 ...created as lig.65 [Success] ADDING: 0x111 (LATIN SMALL LETTER D WITH STROKE) \dj ...selecting 273 ...created as lig.66 [Success] ADDING: 0x14a (LATIN CAPITAL LETTER ENG) \NG ...selecting 330 ...created as lig.67 [Success] ADDING: 0x14b (LATIN SMALL LETTER ENG) \ng ...selecting 331 ...created as lig.68 [Success] ADDING: 0x152 (LATIN CAPITAL LIGATURE OE) \OE ...selecting 338 ...created as lig.69 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. uccess] ADDING: 0xdf (LATIN SMALL LETTER SHARP S) \ss ...selecting 223 ...created as lig.71 [Success] ADDING: 0xde (LATIN CAPITAL LETTER THORN) \TH ...selecting 222 ...created as lig.72 [Success] ADDING: 0xfe (LATIN SMALL LETTER THORN) \th ...selecting 254 ...created as lig.73 [Success] ADDING: 0x39c (GREEK CAPITAL LETTER MU) \Mu ...selecting 924 ...created as lig.74 [Success] ADDING: 0x3bc (GREEK SMALL LETTER MU) \mu ...selecting 956 ...created as lig.75 [Success] ADDING: 0x39d (GREEK CAPITAL LETTER NU) \Nu ...selecting 925 ...created as lig.76 [Success] ADDING: 0x3bd (GREEK SMALL LETTER NU) \nu ...selecting 957 ...created as lig.77 [Success] ADDING: 0x39e (GREEK CAPITAL LETTER XI) \Xi ...selecting 926 ...created as lig.78 [Success] ADDING: 0x3be (GREEK SMALL LETTER XI) \xi ...selecting 958 ...created as lig.79 [Success] ADDING: 0x3a0 (GREEK CAPITAL LETTER PI) \Pi ...selecting 928 ...created as lig.80 [Success] ADDING: 0x3c0 (GREEK SMALL LETTER PI) \pi ...selecting 960 ...created as lig.81 [Success] ADDING: 0xb1 (PLUS-MINUS SIGN) \pm ...selecting 177 ...created as lig.82 [Success] ADDING: 0x2213 (MINUS-OR-PLUS SIGN) \mp ...selecting 8723 ...created as lig.83 [Success] ADDING: 0x226a (MUCH LESS-THAN) \ll ...selecting 8810 ...created as lig.84 [Success] ADDING: 0x226b (MUCH GREATER-THAN) \gg ...selecting 8811 ...created as lig.85 [Success] ADDING: 0x2208 (ELEMENT OF) \in ...selecting 8712 ...created as lig.86 [Success] ADDING: 0x220b (CONTAINS AS MEMBER) \ni ...selecting 8715 ...created as lig.87 [Success] ADDING: 0x2118 (SCRIPT CAPITAL P) \wp ...selecting 8472 ...created as lig.88 [Success] ADDING: 0x211c (BLACK-LETTER CAPITAL R) \Re ...selecting 8476 ...created as lig.89 [Success] ADDING: 0x2111 (BLACK-LETTER CAPITAL I) \Im ...selecting 8465 ...created as lig.90 [Success] ADDING: 0x407 (CYRILLIC CAPITAL LETTER YI) \"I ...selecting 1031 ...created as lig.91 [Success] ADDING: 0x40b (CYRILLIC CAPITAL LETTER TSHE) \'C ...selecting 1035 ...created as lig.92 [Success] ADDING: 0x45b (CYRILLIC SMALL LETTER TSHE) \'c ...selecting 1115 ...created as lig.93 [Success] ADDING: 0x403 (CYRILLIC CAPITAL LETTER GJE) \'G ...selecting 1027 ...created as lig.94 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. lecting 1107 ...created as lig.95 [Success] ADDING: 0x40c (CYRILLIC CAPITAL LETTER KJE) \'K ...selecting 1036 ...created as lig.96 [Success] ADDING: 0x45c (CYRILLIC SMALL LETTER KJE) \'k ...selecting 1116 ...created as lig.97 [Success] ADDING: 0x263a (WHITE SMILING FACE) \:) ...selecting 9786 ...created as lig.98 [Success] ADDING: 0x32e1 (CIRCLED KATAKANA TU) \:G ...selecting 13025 ...ERROR! Glyph cannot have 0 width ADDING: 0x454 (CYRILLIC SMALL LETTER UKRAINIAN IE) \=e ...selecting 1108 ...created as lig.100 [Success] ADDING: 0x404 (CYRILLIC CAPITAL LETTER UKRAINIAN IE) \=E ...selecting 1028 ...created as lig.101 [Success] ADDING: 0x406 (CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I) \=I ...selecting 1030 ...created as lig.102 [Success] ADDING: 0x24 (DOLLAR SIGN) \\$ ...selecting 36 ...created as lig.103 [Success] ADDING: 0x405 (CYRILLIC CAPITAL LETTER DZE) \Dz ...selecting 1029 ...created as lig.104 [Success] ADDING: 0x455 (CYRILLIC SMALL LETTER DZE) \dz ...selecting 1109 ...created as lig.105 [Success] ADDING: 0x2260 (NOT EQUAL TO) \ne ...selecting 8800 ...created as lig.106 [Success] ADDING: 0x2192 (RIGHTWARDS ARROW) \to ...selecting 8594 ...created as lig.107 [Success] ADDING: 0x2240 (WREATH PRODUCT) \wr ...selecting 8768 ...created as lig.108 [Success] ADDING: 0x1d4db (MATHEMATICAL BOLD SCRIPT CAPITAL L) \Lap ...selecting 120027 ...ERROR! Glyph cannot have 0 width ADDING: 0x2020 (DAGGER) \dag ...selecting 8224 ...created as lig.110 [Success] ADDING: 0x397 (GREEK CAPITAL LETTER ETA) \Eta ...selecting 919 ...created as lig.111 [Success] ADDING: 0x3b7 (GREEK SMALL LETTER ETA) \eta ...selecting 951 ...created as lig.112 [Success] ADDING: 0x3a1 (GREEK CAPITAL LETTER RHO) \Rho ...selecting 929 ...created as lig.113 [Success] ADDING: 0x3c1 (GREEK SMALL LETTER RHO) \rho ...selecting 961 ...created as lig.114 [Success] ADDING: 0x3a4 (GREEK CAPITAL LETTER TAU) \Tau ...selecting 932 ...created as lig.115 [Success] ADDING: 0x3c4 (GREEK SMALL LETTER TAU) \tau ...selecting 964 ...created as lig.116 [Success] ADDING: 0x3a6 (GREEK CAPITAL LETTER PHI) \Phi ...selecting 934 ...created as lig.117 [Success] ADDING: 0x3d5 (GREEK PHI SYMBOL) \phi ...selecting 981 ...created as lig.118 [Success] ADDING: 0x3a7 (GREEK CAPITAL LETTER CHI) \Chi ...selecting 935 ...created as lig.119 t least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. m[Success] ADDING: 0x3c7 (GREEK SMALL LETTER CHI) \chi ...selecting 967 ...created as lig.120 [Success] ADDING: 0x3a8 (GREEK CAPITAL LETTER PSI) \Psi ...selecting 936 ...created as lig.121 [Success] ADDING: 0x3c8 (GREEK SMALL LETTER PSI) \psi ...selecting 968 ...created as lig.122 [Success] ADDING: 0xf7 (DIVISION SIGN) \div ...selecting 247 ...created as lig.123 [Success] ADDING: 0x2264 (LESS-THAN OR EQUAL TO) \leq ...selecting 8804 ...created as lig.124 [Success] ADDING: 0x2265 (GREATER-THAN OR EQUAL TO) \geq ...selecting 8805 ...created as lig.125 [Success] ADDING: 0x223c (TILDE OPERATOR) \sim ...selecting 8764 ...created as lig.126 [Success] ADDING: 0x2260 (NOT EQUAL TO) \neq ...selecting 8800 ...created as lig.127 [Success] ADDING: 0x25a1 (WHITE SQUARE) \Box ...selecting 9633 ...created as lig.128 [Success] ADDING: 0xac (NOT SIGN) \neg ...selecting 172 ...created as lig.129 [Success] ADDING: 0x2113 (SCRIPT SMALL L) \ell ...selecting 8467 ...created as lig.130 [Success] ADDING: 0x22a4 (DOWN TACK) \top ...selecting 8868 ...created as lig.131 [Success] ADDING: 0x22a5 (UP TACK) \bot ...selecting 8869 ...created as lig.132 [Success] ADDING: 0x2127 (INVERTED OHM SIGN) \mho ...selecting 8487 ...created as lig.133 [Success] ADDING: 0x2211 (N-ARY SUMMATION) \sum ...selecting 8721 ...created as lig.134 [Success] ADDING: 0x222b (INTEGRAL) \int ...selecting 8747 ...created as lig.135 [Success] ADDING: 0x2217 (ASTERISK OPERATOR) \ast ...selecting 8727 ...created as lig.136 [Success] ADDING: 0x255a (BOX DRAWINGS DOUBLE UP AND RIGHT) \box ...selecting 9562 ...created as lig.137 [Success] ADDING: 0x2229 (INTERSECTION) \cap ...selecting 8745 ...created as lig.138 [Success] ADDING: 0x22d2 (DOUBLE INTERSECTION) \Cap ...selecting 8914 ...created as lig.139 [Success] ADDING: 0x222a (UNION) \cup ...selecting 8746 ...created as lig.140 [Success] ADDING: 0x22d3 (DOUBLE UNION) \Cup ...selecting 8915 ...created as lig.141 [Success] ADDING: 0x40f (CYRILLIC CAPITAL LETTER DZHE) \Dzh ...selecting 1039 ...created as lig.142 [Success] ADDING: 0x45f (CYRILLIC SMALL LETTER DZHE) \dzh ...selecting 1119 ...created as lig.143 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 30m[Success] ADDING: 0x22d9 (VERY MUCH GREATER-THAN) \ggg ...selecting 8921 ...created as lig.145 [Success] ADDING: 0x21d4 (LEFT RIGHT DOUBLE ARROW) \iff ...selecting 8660 ...created as lig.146 [Success] ADDING: 0x22d8 (VERY MUCH LESS-THAN) \lll ...selecting 8920 ...created as lig.147 [Success] ADDING: 0x21b0 (UPWARDS ARROW WITH TIP LEFTWARDS) \Lsh ...selecting 8624 ...created as lig.148 [Success] ADDING: 0x2223 (DIVIDES) \mid ...selecting 8739 ...created as lig.149 [Success] ADDING: 0x21b1 (UPWARDS ARROW WITH TIP RIGHTWARDS) \Rsh ...selecting 8625 ...created as lig.150 [Success] ADDING: 0x2639 (WHITE FROWNING FACE) \sad ...selecting 9785 ...created as lig.151 [Success] ADDING: 0x2228 (LOGICAL OR) \vee ...selecting 8744 ...created as lig.152 [Success] ADDING: 0xa5 (YEN SIGN) \yen ...selecting 165 ...created as lig.153 [Success] ADDING: 0x307 (COMBINING DOT ABOVE) \dot ...selecting 775 ...ERROR! Glyph cannot have 0 width ADDING: 0x20d7 (COMBINING RIGHT ARROW ABOVE) \vec ...selecting 8407 ...ERROR! Glyph cannot have 0 width ADDING: 0x302 (COMBINING CIRCUMFLEX ACCENT) \hat ...selecting 770 ...ERROR! Glyph cannot have 0 width ADDING: 0x305 (COMBINING OVERLINE) \bar ...selecting 773 ...ERROR! Glyph cannot have 0 width ADDING: 0x211d (DOUBLE-STRUCK CAPITAL R) \Real ...selecting 8477 ...created as lig.158 [Success] ADDING: 0x2021 (DOUBLE DAGGER) \ddag ...selecting 8225 ...created as lig.159 [Success] ADDING: 0x2026 (HORIZONTAL ELLIPSIS) \dots ...selecting 8230 ...created as lig.160 [Success] ADDING: 0x392 (GREEK CAPITAL LETTER BETA) \Beta ...selecting 914 ...created as lig.161 [Success] ADDING: 0x3b2 (GREEK SMALL LETTER BETA) \beta ...selecting 946 ...created as lig.162 [Success] ADDING: 0x396 (GREEK CAPITAL LETTER ZETA) \Zeta ...selecting 918 ...created as lig.163 [Success] ADDING: 0x3b6 (GREEK SMALL LETTER ZETA) \zeta ...selecting 950 ...created as lig.164 [Success] ADDING: 0x399 (GREEK CAPITAL LETTER IOTA) \Iota ...selecting 921 ...created as lig.165 [Success] ADDING: 0x3b9 (GREEK SMALL LETTER IOTA) \iota ...selecting 953 ...created as lig.166 [Success] ADDING: 0x22c5 (DOT OPERATOR) \cdot ...selecting 8901 ...created as lig.167 [Success] ADDING: 0x2218 (RING OPERATOR) \circ ...selecting 8728 ...created as lig.168 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ec ...selecting 8826 ...created as lig.169 [Success] ADDING: 0x227b (SUCCEEDS) \succ ...selecting 8827 ...created as lig.170 [Success] ADDING: 0x22a5 (UP TACK) \perp ...selecting 8869 ...created as lig.171 [Success] ADDING: 0x2245 (APPROXIMATELY EQUAL TO) \cong ...selecting 8773 ...created as lig.172 [Success] ADDING: 0x22c8 (BOWTIE) \Join ...selecting 8904 ...created as lig.173 [Success] ADDING: 0x210f (PLANCK CONSTANT OVER TWO PI) \hbar ...selecting 8463 ...created as lig.174 [Success] ADDING: 0x221a (SQUARE ROOT) \surd ...selecting 8730 ...created as lig.175 [Success] ADDING: 0x266d (MUSIC FLAT SIGN) \flat ...selecting 9837 ...created as lig.176 [Success] ADDING: 0x220f (N-ARY PRODUCT) \prod ...selecting 8719 ...created as lig.177 [Success] ADDING: 0x222e (CONTOUR INTEGRAL) \oint ...selecting 8750 ...created as lig.178 [Success] ADDING: 0x2270 (NEITHER LESS-THAN NOR EQUAL TO) \nleq ...selecting 8816 ...created as lig.179 [Success] ADDING: 0x2271 (NEITHER GREATER-THAN NOR EQUAL TO) \ngeq ...selecting 8817 ...created as lig.180 [Success] ADDING: 0x222c (DOUBLE INTEGRAL) \iint ...selecting 8748 ...created as lig.181 [Success] ADDING: 0x2136 (BET SYMBOL) \beth ...selecting 8502 ...created as lig.182 [Success] ADDING: 0x2500 (BOX DRAWINGS LIGHT HORIZONTAL) \boxh ...selecting 9472 ...created as lig.183 [Success] ADDING: 0x2550 (BOX DRAWINGS DOUBLE HORIZONTAL) \boxH ...selecting 9552 ...created as lig.184 [Success] ADDING: 0x2502 (BOX DRAWINGS LIGHT VERTICAL) \boxv ...selecting 9474 ...created as lig.185 [Success] ADDING: 0x2551 (BOX DRAWINGS DOUBLE VERTICAL) \boxV ...selecting 9553 ...created as lig.186 [Success] ADDING: 0x2267 (GREATER-THAN OVER EQUAL TO) \geqq ...selecting 8807 ...created as lig.187 [Success] ADDING: 0x2269 (GREATER-THAN BUT NOT EQUAL TO) \gneq ...selecting 8809 ...created as lig.188 [Success] ADDING: 0x2266 (LESS-THAN OVER EQUAL TO) \leqq ...selecting 8806 ...created as lig.189 [Success] ADDING: 0x2268 (LESS-THAN BUT NOT EQUAL TO) \lneq ...selecting 8808 ...created as lig.190 [Success] ADDING: 0xac (NOT SIGN) \lnot ...selecting 172 ...created as lig.191 [Success] ADDING: 0x2642 (MALE SIGN) \male ...selecting 9794 ...created as lig.192 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. [1;30m[Success] ADDING: 0x2025 (TWO DOT LEADER) \nldr ...selecting 8229 ...created as lig.194 [Success] ADDING: 0x2224 (DOES NOT DIVIDE) \nmid ...selecting 8740 ...created as lig.195 [Success] ADDING: 0x2260 (NOT EQUAL TO) \not= ...selecting 8800 ...created as lig.196 [Success] ADDING: 0x226f (NOT GREATER-THAN) \not> ...selecting 8815 ...created as lig.197 [Success] ADDING: 0x2299 (CIRCLED DOT OPERATOR) \odot ...selecting 8857 ...created as lig.198 [Success] ADDING: 0x2003 (EM SPACE) \quad ...selecting 8195 ...created as lig.199 [Success] ADDING: 0x221a (SQUARE ROOT) \sqrt ...selecting 8730 ...created as lig.200 [Success] ADDING: 0x22c6 (STAR OPERATOR) \star ...selecting 8902 ...created as lig.201 [Success] ADDING: 0x7c (VERTICAL LINE) \vert ...selecting 124 ...created as lig.202 [Success] ADDING: 0x2016 (DOUBLE VERTICAL LINE) \Vert ...selecting 8214 ...created as lig.203 [Success] ADDING: 0x308 (COMBINING DIAERESIS) \ddot ...selecting 776 ...ERROR! Glyph cannot have 0 width ADDING: 0x391 (GREEK CAPITAL LETTER ALPHA) \Alpha ...selecting 913 ...created as lig.205 [Success] ADDING: 0x3b1 (GREEK SMALL LETTER ALPHA) \alpha ...selecting 945 ...created as lig.206 [Success] ADDING: 0x393 (GREEK CAPITAL LETTER GAMMA) \Gamma ...selecting 915 ...created as lig.207 [Success] ADDING: 0x3b3 (GREEK SMALL LETTER GAMMA) \gamma ...selecting 947 ...created as lig.208 [Success] ADDING: 0x394 (GREEK CAPITAL LETTER DELTA) \Delta ...selecting 916 ...created as lig.209 [Success] ADDING: 0x3b4 (GREEK SMALL LETTER DELTA) \delta ...selecting 948 ...created as lig.210 [Success] ADDING: 0x398 (GREEK CAPITAL LETTER THETA) \Theta ...selecting 920 ...created as lig.211 [Success] ADDING: 0x3b8 (GREEK SMALL LETTER THETA) \theta ...selecting 952 ...created as lig.212 [Success] ADDING: 0x39a (GREEK CAPITAL LETTER KAPPA) \Kappa ...selecting 922 ...created as lig.213 [Success] ADDING: 0x3ba (GREEK SMALL LETTER KAPPA) \kappa ...selecting 954 ...created as lig.214 [Success] ADDING: 0x3d6 (GREEK PI SYMBOL) \varpi ...selecting 982 ...created as lig.215 [Success] ADDING: 0x3a3 (GREEK CAPITAL LETTER SIGMA) \Sigma ...selecting 931 ...created as lig.216 [Success] ADDING: 0x3c3 (GREEK SMALL LETTER SIGMA) \sigma ...selecting 963 ...created as lig.217 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. (GREEK CAPITAL LETTER OMEGA) \Omega ...selecting 937 ...created as lig.218 [Success] ADDING: 0x3c9 (GREEK SMALL LETTER OMEGA) \omega ...selecting 969 ...created as lig.219 [Success] ADDING: 0x2207 (NABLA) \nalba ...selecting 8711 ...created as lig.220 [Success] ADDING: 0xd7 (MULTIPLICATION SIGN) \times ...selecting 215 ...created as lig.221 [Success] ADDING: 0x2261 (IDENTICAL TO) \equiv ...selecting 8801 ...created as lig.222 [Success] ADDING: 0x224d (EQUIVALENT TO) \asymp ...selecting 8781 ...created as lig.223 [Success] ADDING: 0x2243 (ASYMPTOTICALLY EQUAL TO) \simeq ...selecting 8771 ...created as lig.224 [Success] ADDING: 0x2250 (APPROACHES THE LIMIT) \doteq ...selecting 8784 ...created as lig.225 [Success] ADDING: 0x22a2 (RIGHT TACK) \vdash ...selecting 8866 ...created as lig.226 [Success] ADDING: 0x22a3 (LEFT TACK) \dashv ...selecting 8867 ...created as lig.227 [Success] ADDING: 0x2026 (HORIZONTAL ELLIPSIS) \ldots ...selecting 8230 ...created as lig.228 [Success] ADDING: 0x22ee (VERTICAL ELLIPSIS) \vdots ...selecting 8942 ...created as lig.229 [Success] ADDING: 0x22f1 (DOWN RIGHT DIAGONAL ELLIPSIS) \ddots ...selecting 8945 ...created as lig.230 [Success] ADDING: 0x2135 (ALEF SYMBOL) \aleph ...selecting 8501 ...created as lig.231 [Success] ADDING: 0x2032 (PRIME) \prime ...selecting 8242 ...created as lig.232 [Success] ADDING: 0x221e (INFINITY) \infty ...selecting 8734 ...created as lig.233 [Success] ADDING: 0x131 (LATIN SMALL LETTER DOTLESS I) \imath ...selecting 305 ...created as lig.234 [Success] ADDING: 0x2207 (NABLA) \nabla ...selecting 8711 ...created as lig.235 [Success] ADDING: 0xf6be (reduced info) ...selecting 63166 ...ERROR! Glyph cannot have 0 width ADDING: 0x266f (MUSIC SHARP SIGN) \sharp ...selecting 9839 ...created as lig.237 [Success] ADDING: 0x2220 (ANGLE) \angle ...selecting 8736 ...created as lig.238 [Success] ADDING: 0x2308 (LEFT CEILING) \lceil ...selecting 8968 ...created as lig.239 [Success] ADDING: 0x2309 (RIGHT CEILING) \rceil ...selecting 8969 ...created as lig.240 [Success] ADDING: 0x226e (NOT LESS-THAN) \nless ...selecting 8814 ...created as lig.241 [Success] ADDING: 0x226f (NOT GREATER-THAN) \ngrtr ...selecting 8815 ...created as lig.242 [Success] INTEGRAL) \iiint ...selecting 8749 ...created as lig.243 [Success] ADDING: 0x2210 (N-ARY COPRODUCT) \amalg ...selecting 8720 ...created as lig.244 [Success] ADDING: 0x2588 (FULL BLOCK) \block ...selecting 9608 ...created as lig.245 [Success] ADDING: 0x2510 (BOX DRAWINGS LIGHT DOWN AND LEFT) \boxdl ...selecting 9488 ...created as lig.246 [Success] ADDING: 0x2555 (BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE) \boxdL ...selecting 9557 ...created as lig.247 [Success] ADDING: 0x2556 (BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE) \boxDl ...selecting 9558 ...created as lig.248 [Success] ADDING: 0x2557 (BOX DRAWINGS DOUBLE DOWN AND LEFT) \boxDL ...selecting 9559 ...created as lig.249 [Success] ADDING: 0x250c (BOX DRAWINGS LIGHT DOWN AND RIGHT) \boxdr ...selecting 9484 ...created as lig.250 [Success] ADDING: 0x2552 (BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE) \boxdR ...selecting 9554 ...created as lig.251 [Success] ADDING: 0x2553 (BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE) \boxDr ...selecting 9555 ...created as lig.252 [Success] ADDING: 0x2554 (BOX DRAWINGS DOUBLE DOWN AND RIGHT) \boxDR ...selecting 9556 ...created as lig.253 [Success] ADDING: 0x252c (BOX DRAWINGS LIGHT DOWN AND HORIZONTAL) \boxhd ...selecting 9516 ...created as lig.254 [Success] ADDING: 0x2564 (BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE) \boxHd ...selecting 9572 ...created as lig.255 [Success] ADDING: 0x2565 (BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE) \boxhD ...selecting 9573 ...created as lig.256 [Success] ADDING: 0x2566 (BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL) \boxHD ...selecting 9574 ...created as lig.257 [Success] ADDING: 0x2534 (BOX DRAWINGS LIGHT UP AND HORIZONTAL) \boxhu ...selecting 9524 ...created as lig.258 [Success] ADDING: 0x2567 (BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE) \boxHu ...selecting 9575 ...created as lig.259 [Success] ADDING: 0x2568 (BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE) \boxhU ...selecting 9576 ...created as lig.260 [Success] ADDING: 0x2569 (BOX DRAWINGS DOUBLE UP AND HORIZONTAL) \boxHU ...selecting 9577 ...created as lig.261 [Success] ADDING: 0x2518 (BOX DRAWINGS LIGHT UP AND LEFT) \boxul ...selecting 9496 ...created as lig.262 [Success] ADDING: 0x255b (BOX DRAWINGS UP SINGLE AND LEFT DOUBLE) \boxuL ...selecting 9563 ...created as lig.263 [Success] ADDING: 0x255c (BOX DRAWINGS UP DOUBLE AND LEFT SINGLE) \boxUl ...selecting 9564 ...created as lig.264 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. [0m) \boxUL ...selecting 9565 ...created as lig.265 [Success] ADDING: 0x253c (BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL) \boxvh ...selecting 9532 ...created as lig.266 [Success] ADDING: 0x256a (BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE) \boxvH ...selecting 9578 ...created as lig.267 [Success] ADDING: 0x256b (BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE) \boxVh ...selecting 9579 ...created as lig.268 [Success] ADDING: 0x256c (BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL) \boxVH ...selecting 9580 ...created as lig.269 [Success] ADDING: 0x2524 (BOX DRAWINGS LIGHT VERTICAL AND LEFT) \boxvl ...selecting 9508 ...created as lig.270 [Success] ADDING: 0x2561 (BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE) \boxvL ...selecting 9569 ...created as lig.271 [Success] ADDING: 0x2562 (BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE) \boxVl ...selecting 9570 ...created as lig.272 [Success] ADDING: 0x2563 (BOX DRAWINGS DOUBLE VERTICAL AND LEFT) \boxVL ...selecting 9571 ...created as lig.273 [Success] ADDING: 0x251c (BOX DRAWINGS LIGHT VERTICAL AND RIGHT) \boxvr ...selecting 9500 ...created as lig.274 [Success] ADDING: 0x255e (BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE) \boxvR ...selecting 9566 ...created as lig.275 [Success] ADDING: 0x255f (BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE) \boxVr ...selecting 9567 ...created as lig.276 [Success] ADDING: 0x2560 (BOX DRAWINGS DOUBLE VERTICAL AND RIGHT) \boxVR ...selecting 9568 ...created as lig.277 [Success] ADDING: 0x2c7 (CARON) \check ...selecting 711 ...created as lig.278 [Success] ADDING: 0x2322 (FROWN) \frown ...selecting 8994 ...ERROR! Glyph cannot have 0 width ADDING: 0x2137 (GIMEL SYMBOL) \gimel ...selecting 8503 ...created as lig.280 [Success] ADDING: 0x2269 (GREATER-THAN BUT NOT EQUAL TO) \gneqq ...selecting 8809 ...created as lig.281 [Success] ADDING: 0x22e7 (GREATER-THAN BUT NOT EQUIVALENT TO) \gnsim ...selecting 8935 ...created as lig.282 [Success] ADDING: 0x32e1 (CIRCLED KATAKANA TU) \happy ...selecting 13025 ...ERROR! Glyph cannot have 0 width ADDING: 0x2e (FULL STOP) \ldotp ...selecting 46 ...created as lig.284 [Success] ADDING: 0x2584 (LOWER HALF BLOCK) \lhblk ...selecting 9604 ...created as lig.285 [Success] ADDING: 0x2268 (LESS-THAN BUT NOT EQUAL TO) \lneqq ...selecting 8808 ...created as lig.286 [Success] ADDING: 0x22e6 (LESS-THAN BUT NOT EQUIVALENT TO) \lnsim ...selecting 8934 ...created as lig.287 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 0x2295 (CIRCLED PLUS) \oplus ...selecting 8853 ...created as lig.288 [Success] ADDING: 0x260e (BLACK TELEPHONE) \phone ...selecting 9742 ...created as lig.289 [Success] ADDING: 0x263a (WHITE SMILING FACE) \smile ...selecting 9786 ...created as lig.290 [Success] ADDING: 0x2293 (SQUARE CAP) \sqcap ...selecting 8851 ...created as lig.291 [Success] ADDING: 0x2294 (SQUARE CUP) \sqcup ...selecting 8852 ...created as lig.292 [Success] ADDING: 0x2580 (UPPER HALF BLOCK) \uhblk ...selecting 9600 ...created as lig.293 [Success] ADDING: 0x228e (MULTISET UNION) \uplus ...selecting 8846 ...created as lig.294 [Success] ADDING: 0x22a8 (TRUE) \vDash ...selecting 8872 ...created as lig.295 [Success] ADDING: 0x22a9 (FORCES) \Vdash ...selecting 8873 ...created as lig.296 [Success] ADDING: 0x2227 (LOGICAL AND) \wedge ...selecting 8743 ...created as lig.297 [Success] ADDING: 0x303 (COMBINING TILDE) \tilde ...selecting 771 ...ERROR! Glyph cannot have 0 width ADDING: 0x300 (COMBINING GRAVE ACCENT) \grave ...selecting 768 ...ERROR! Glyph cannot have 0 width ADDING: 0x301 (COMBINING ACUTE ACCENT) \acute ...selecting 769 ...ERROR! Glyph cannot have 0 width ADDING: 0x338 (COMBINING LONG SOLIDUS OVERLAY) \slash ...selecting 824 ...ERROR! Glyph cannot have 0 width ADDING: 0x306 (COMBINING BREVE) \breve ...selecting 774 ...ERROR! Glyph cannot have 0 width ADDING: 0xa3 (POUND SIGN) \pounds ...selecting 163 ...created as lig.303 [Success] ADDING: 0x39b (GREEK CAPITAL LETTER LAMDA) \Lambda ...selecting 923 ...created as lig.304 [Success] ADDING: 0x3bb (GREEK SMALL LETTER LAMDA) \lambda ...selecting 955 ...created as lig.305 [Success] ADDING: 0x3f1 (GREEK RHO SYMBOL) \varrho ...selecting 1009 ...created as lig.306 [Success] ADDING: 0x3c6 (GREEK SMALL LETTER PHI) \varphi ...selecting 966 ...created as lig.307 [Success] ADDING: 0x22a7 (MODELS) \models ...selecting 8871 ...created as lig.308 [Success] ADDING: 0x227c (PRECEDES OR EQUAL TO) \preceq ...selecting 8828 ...created as lig.309 [Success] ADDING: 0x227d (SUCCEEDS OR EQUAL TO) \succeq ...selecting 8829 ...created as lig.310 [Success] ADDING: 0x2282 (SUBSET OF) \subset ...selecting 8834 ...created as lig.311 [Success] ADDING: 0x2283 (SUPERSET OF) \supset ...selecting 8835 ...created as lig.312 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 0x2248 (ALMOST EQUAL TO) \approx ...selecting 8776 ...created as lig.313 [Success] ADDING: 0x22c8 (BOWTIE) \bowtie ...selecting 8904 ...created as lig.314 [Success] ADDING: 0x221d (PROPORTIONAL TO) \propto ...selecting 8733 ...created as lig.315 [Success] ADDING: 0x21a6 (RIGHTWARDS ARROW FROM BAR) \mapsto ...selecting 8614 ...created as lig.316 [Success] ADDING: 0x2200 (FOR ALL) \forall ...selecting 8704 ...created as lig.317 [Success] ADDING: 0x2203 (THERE EXISTS) \exists ...selecting 8707 ...created as lig.318 [Success] ADDING: 0x22c2 (N-ARY INTERSECTION) \bigcap ...selecting 8898 ...created as lig.319 [Success] ADDING: 0x22c3 (N-ARY UNION) \bigcup ...selecting 8899 ...created as lig.320 [Success] ADDING: 0x2210 (N-ARY COPRODUCT) \coprod ...selecting 8720 ...created as lig.321 [Success] ADDING: 0x2228 (LOGICAL OR) \bigvee ...selecting 8744 ...created as lig.322 [Success] ADDING: 0x230a (LEFT FLOOR) \lfloor ...selecting 8970 ...created as lig.323 [Success] ADDING: 0x230b (RIGHT FLOOR) \rfloor ...selecting 8971 ...created as lig.324 [Success] ADDING: 0x3008 (LEFT ANGLE BRACKET) \langle ...selecting 12296 ...ERROR! Glyph cannot have 0 width ADDING: 0x3009 (RIGHT ANGLE BRACKET) \rangle ...selecting 12297 ...ERROR! Glyph cannot have 0 width ADDING: 0x22a1 (SQUARED DOT OPERATOR) \boxdot ...selecting 8865 ...created as lig.327 [Success] ADDING: 0x2022 (BULLET) \bullet ...selecting 8226 ...created as lig.328 [Success] ADDING: 0x224e (GEOMETRICALLY EQUIVALENT TO) \Bumpeq ...selecting 8782 ...created as lig.329 [Success] ADDING: 0x224f (DIFFERENCE BETWEEN) \bumpeq ...selecting 8783 ...created as lig.330 [Success] ADDING: 0x2257 (RING EQUAL TO) \circeq ...selecting 8791 ...created as lig.331 [Success] ADDING: 0x44c (CYRILLIC SMALL LETTER SOFT SIGN) \cprime ...selecting 1100 ...created as lig.332 [Success] ADDING: 0x42c (CYRILLIC CAPITAL LETTER SOFT SIGN) \Cprime ...selecting 1068 ...created as lig.333 [Success] ADDING: 0x2020 (DAGGER) \dagger ...selecting 8224 ...created as lig.334 [Success] ADDING: 0x2138 (DALET SYMBOL) \daleth ...selecting 8504 ...created as lig.335 [Success] ADDING: 0xb0 (DEGREE SIGN) \degree ...selecting 176 ...created as lig.336 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. uccess] ADDING: 0x230c (BOTTOM RIGHT CROP) \drcrop ...selecting 8972 ...created as lig.338 [Success] ADDING: 0x2256 (RING IN EQUAL TO) \eqcirc ...selecting 8790 ...created as lig.339 [Success] ADDING: 0x2640 (FEMALE SIGN) \female ...selecting 9792 ...created as lig.340 [Success] ADDING: 0x22d7 (GREATER-THAN WITH DOT) \gtrdot ...selecting 8919 ...created as lig.341 [Success] ADDING: 0x2273 (GREATER-THAN OR EQUIVALENT TO) \gtrsim ...selecting 8819 ...created as lig.342 [Success] ADDING: 0x127 (LATIN SMALL LETTER H WITH STROKE) \hstrok ...selecting 295 ...created as lig.343 [Success] ADDING: 0x126 (LATIN CAPITAL LETTER H WITH STROKE) \Hstrok ...selecting 294 ...created as lig.344 [Success] ADDING: 0x2043 (HYPHEN BULLET) \hybull ...selecting 8259 ...created as lig.345 [Success] ADDING: 0x7b (LEFT CURLY BRACKET) \lbrace ...selecting 123 ...created as lig.346 [Success] ADDING: 0x140 (LATIN SMALL LETTER L WITH MIDDLE DOT) \lmidot ...selecting 320 ...created as lig.347 [Success] ADDING: 0x13f (LATIN CAPITAL LETTER L WITH MIDDLE DOT) \Lmidot ...selecting 319 ...created as lig.348 [Success] ADDING: 0x22c9 (LEFT NORMAL FACTOR SEMIDIRECT PRODUCT) \ltimes ...selecting 8905 ...created as lig.349 [Success] ADDING: 0x25ae (BLACK VERTICAL RECTANGLE) \marker ...selecting 9646 ...created as lig.350 [Success] ADDING: 0x22ac (DOES NOT PROVE) \nvdash ...selecting 8876 ...created as lig.351 [Success] ADDING: 0x22ad (NOT TRUE) \nvDash ...selecting 8877 ...created as lig.352 [Success] ADDING: 0x22ae (DOES NOT FORCE) \nVdash ...selecting 8878 ...created as lig.353 [Success] ADDING: 0x22af (NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE) \nVDash ...selecting 8879 ...created as lig.354 [Success] ADDING: 0x2296 (CIRCLED MINUS) \ominus ...selecting 8854 ...created as lig.355 [Success] ADDING: 0x2298 (CIRCLED DIVISION SLASH) \oslash ...selecting 8856 ...created as lig.356 [Success] ADDING: 0x2297 (CIRCLED TIMES) \otimes ...selecting 8855 ...created as lig.357 [Success] ADDING: 0x22ca (RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT) \rtimes ...selecting 8906 ...created as lig.358 [Success] ADDING: 0x25a0 (BLACK SQUARE) \square ...selecting 9632 ...created as lig.359 [Success] ADDING: 0x22d0 (DOUBLE SUBSET) \Subset ...selecting 8912 ...created as lig.360 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ting 8913 ...created as lig.361 [Success] ADDING: 0x166 (LATIN CAPITAL LETTER T WITH STROKE) \Tstrok ...selecting 358 ...created as lig.362 [Success] ADDING: 0x167 (LATIN SMALL LETTER T WITH STROKE) \tstrok ...selecting 359 ...created as lig.363 [Success] ADDING: 0x230f (TOP LEFT CROP) \ulcrop ...selecting 8975 ...created as lig.364 [Success] ADDING: 0x230e (TOP RIGHT CROP) \urcrop ...selecting 8974 ...created as lig.365 [Success] ADDING: 0x22bb (XOR) \veebar ...selecting 8891 ...created as lig.366 [Success] ADDING: 0x22aa (TRIPLE VERTICAL BAR RIGHT TURNSTILE) \Vvdash ...selecting 8874 ...created as lig.367 [Success] ADDING: 0x395 (GREEK CAPITAL LETTER EPSILON) \Epsilon ...selecting 917 ...created as lig.368 [Success] ADDING: 0x3b5 (GREEK SMALL LETTER EPSILON) \epsilon ...selecting 949 ...created as lig.369 [Success] ADDING: 0x39f (GREEK CAPITAL LETTER OMICRON) \Omicron ...selecting 927 ...created as lig.370 [Success] ADDING: 0x3bf (GREEK SMALL LETTER OMICRON) \omicron ...selecting 959 ...created as lig.371 [Success] ADDING: 0x3a5 (GREEK CAPITAL LETTER UPSILON) \Upsilon ...selecting 933 ...created as lig.372 [Success] ADDING: 0x3c5 (GREEK SMALL LETTER UPSILON) \upsilon ...selecting 965 ...created as lig.373 [Success] ADDING: 0x2196 (NORTH WEST ARROW) \nwarrow ...selecting 8598 ...created as lig.374 [Success] ADDING: 0x2198 (SOUTH EAST ARROW) \searrow ...selecting 8600 ...created as lig.375 [Success] ADDING: 0x2199 (SOUTH WEST ARROW) \swarrow ...selecting 8601 ...created as lig.376 [Success] ADDING: 0x2191 (UPWARDS ARROW) \uparrow ...selecting 8593 ...created as lig.377 [Success] ADDING: 0x21d1 (UPWARDS DOUBLE ARROW) \Uparrow ...selecting 8657 ...created as lig.378 [Success] ADDING: 0x25c7 (WHITE DIAMOND) \Diamond ...selecting 9671 ...created as lig.379 [Success] ADDING: 0x266e (MUSIC NATURAL SIGN) \natural ...selecting 9838 ...created as lig.380 [Success] ADDING: 0x2202 (PARTIAL DIFFERENTIAL) \partial ...selecting 8706 ...created as lig.381 [Success] ADDING: 0x2299 (CIRCLED DOT OPERATOR) \bigodot ...selecting 8857 ...created as lig.382 [Success] ADDING: 0x223d (REVERSED TILDE) \backsim ...selecting 8765 ...created as lig.383 [Success] ADDING: 0x2235 (BECAUSE) \because ...selecting 8757 ...created as lig.384 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. lecting 8812 ...created as lig.385 [Success] ADDING: 0x25ef (LARGE CIRCLE) \bigcirc ...selecting 9711 ...created as lig.386 [Success] ADDING: 0x2605 (BLACK STAR) \bigstar ...selecting 9733 ...created as lig.387 [Success] ADDING: 0x229e (SQUARED PLUS) \boxplus ...selecting 8862 ...created as lig.388 [Success] ADDING: 0x42a (CYRILLIC CAPITAL LETTER HARD SIGN) \Cdprime ...selecting 1066 ...created as lig.389 [Success] ADDING: 0x44a (CYRILLIC SMALL LETTER HARD SIGN) \cdprime ...selecting 1098 ...created as lig.390 [Success] ADDING: 0x2021 (DOUBLE DAGGER) \ddagger ...selecting 8225 ...created as lig.391 [Success] ADDING: 0x22c4 (DIAMOND OPERATOR) \diamond ...selecting 8900 ...created as lig.392 [Success] ADDING: 0x3dc (GREEK LETTER DIGAMMA) \digamma ...selecting 988 ...created as lig.393 [Success] ADDING: 0x2214 (DOT PLUS) \dotplus ...selecting 8724 ...created as lig.394 [Success] ADDING: 0x2277 (GREATER-THAN OR LESS-THAN) \gtrless ...selecting 8823 ...created as lig.395 [Success] ADDING: 0x22d6 (LESS-THAN WITH DOT) \lessdot ...selecting 8918 ...created as lig.396 [Success] ADDING: 0x2276 (LESS-THAN OR GREATER-THAN) \lessgtr ...selecting 8822 ...created as lig.397 [Success] ADDING: 0x2272 (LESS-THAN OR EQUIVALENT TO) \lesssim ...selecting 8818 ...created as lig.398 [Success] ADDING: 0x25ca (LOZENGE) \lozenge ...selecting 9674 ...created as lig.399 [Success] ADDING: 0x2720 (MALTESE CROSS) \maltese ...selecting 10016 ...created as lig.400 [Success] ADDING: 0x2197 (NORTH EAST ARROW) \nearrow ...selecting 8599 ...created as lig.401 [Success] ADDING: 0x2204 (THERE DOES NOT EXIST) \nexists ...selecting 8708 ...created as lig.402 [Success] ADDING: 0x227e (PRECEDES OR EQUIVALENT TO) \precsim ...selecting 8830 ...created as lig.403 [Success] ADDING: 0x221f (RIGHT ANGLE) \sqangle ...selecting 8735 ...created as lig.404 [Success] ADDING: 0x227f (SUCCEEDS OR EQUIVALENT TO) \succsim ...selecting 8831 ...created as lig.405 [Success] ADDING: 0x3d1 (GREEK THETA SYMBOL) \vartheta ...selecting 977 ...created as lig.406 [Success] ADDING: 0x3f0 (GREEK KAPPA SYMBOL) \varkappa ...selecting 1008 ...created as lig.407 [Success] ADDING: 0x3c2 (GREEK SMALL LETTER FINAL SIGMA) \varsigma ...selecting 962 ...created as lig.408 [Success] 741 ...created as lig.409 [Success] ADDING: 0x2286 (SUBSET OF OR EQUAL TO) \subseteq ...selecting 8838 ...created as lig.410 [Success] ADDING: 0x2287 (SUPERSET OF OR EQUAL TO) \supseteq ...selecting 8839 ...created as lig.411 [Success] ADDING: 0x228f (SQUARE IMAGE OF) \sqsubset ...selecting 8847 ...created as lig.412 [Success] ADDING: 0x2290 (SQUARE ORIGINAL OF) \sqsupset ...selecting 8848 ...created as lig.413 [Success] ADDING: 0x219d (RIGHTWARDS WAVE ARROW) \leadsto* ...selecting 8605 ...created as lig.414 [Success] ADDING: 0x2205 (EMPTY SET) \emptyset ...selecting 8709 ...created as lig.415 [Success] ADDING: 0x25b3 (WHITE UP-POINTING TRIANGLE) \triangle ...selecting 9651 ...created as lig.416 [Success] ADDING: 0x2663 (BLACK CLUB SUIT) \clubsuit ...selecting 9827 ...created as lig.417 [Success] ADDING: 0x2294 (SQUARE CUP) \bigsqcup ...selecting 8852 ...created as lig.418 [Success] ADDING: 0x2295 (CIRCLED PLUS) \bigoplus ...selecting 8853 ...created as lig.419 [Success] ADDING: 0x228e (MULTISET UNION) \biguplus ...selecting 8846 ...created as lig.420 [Success] ADDING: 0x2227 (LOGICAL AND) \bigwedge ...selecting 8743 ...created as lig.421 [Success] ADDING: 0x224a (ALMOST EQUAL OR EQUAL TO) \approxeq ...selecting 8778 ...created as lig.422 [Success] ADDING: 0x224c (ALL EQUAL TO) \backcong ...selecting 8780 ...created as lig.423 [Success] ADDING: 0x22bc (NAND) \barwedge ...selecting 8892 ...created as lig.424 [Success] ADDING: 0x229f (SQUARED MINUS) \boxminus ...selecting 8863 ...created as lig.425 [Success] ADDING: 0x22a0 (SQUARED TIMES) \boxtimes ...selecting 8864 ...created as lig.426 [Success] ADDING: 0xae (REGISTERED SIGN) \circledR ...selecting 174 ...created as lig.427 [Success] ADDING: 0x24c8 (CIRCLED LATIN CAPITAL LETTER S) \circledS ...selecting 9416 ...ERROR! Glyph cannot have 0 width ADDING: 0x22ce (CURLY LOGICAL OR) \curlyvee ...selecting 8910 ...created as lig.429 [Success] ADDING: 0x2251 (GEOMETRICALLY EQUAL TO) \doteqdot ...selecting 8785 ...created as lig.430 [Success] ADDING: 0x22ba (INTERCALATE) \intercal ...selecting 8890 ...created as lig.431 [Success] ADDING: 0x231e (BOTTOM LEFT CORNER) \llcorner ...selecting 8990 ...created as lig.432 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 1;30mSuccess] ADDING: 0x22b8 (MULTIMAP) \multimap ...selecting 8888 ...created as lig.434 [Success] ADDING: 0x22e8 (PRECEDES BUT NOT EQUIVALENT TO) \precnsim ...selecting 8936 ...created as lig.435 [Success] ADDING: 0x2315 (TELEPHONE RECORDER) \recorder ...selecting 8981 ...ERROR! Glyph cannot have 0 width ADDING: 0x2216 (SET MINUS) \setminus ...selecting 8726 ...created as lig.437 [Success] ADDING: 0x22e9 (SUCCEEDS BUT NOT EQUIVALENT TO) \succnsim ...selecting 8937 ...created as lig.438 [Success] ADDING: 0xa2 (CENT SIGN) \textcent ...selecting 162 ...created as lig.439 [Success] ADDING: 0x20ac (EURO SIGN) \texteuro ...selecting 8364 ...created as lig.440 [Success] ADDING: 0x231c (TOP LEFT CORNER) \ulcorner ...selecting 8988 ...created as lig.441 [Success] ADDING: 0x231d (TOP RIGHT CORNER) \urcorner ...selecting 8989 ...created as lig.442 [Success] ADDING: 0x305 (COMBINING OVERLINE) \overline ...selecting 773 ...ERROR! Glyph cannot have 0 width ADDING: 0xa9 (COPYRIGHT SIGN) \copyright ...selecting 169 ...created as lig.444 [Success] ADDING: 0x21d3 (DOWNWARDS DOUBLE ARROW) \Downarrow ...selecting 8659 ...created as lig.445 [Success] ADDING: 0x2193 (DOWNWARDS ARROW) \downarrow ...selecting 8595 ...created as lig.446 [Success] ADDING: 0x2190 (LEFTWARDS ARROW) \leftarrow ...selecting 8592 ...created as lig.447 [Success] ADDING: 0x21d0 (LEFTWARDS DOUBLE ARROW) \Leftarrow ...selecting 8656 ...created as lig.448 [Success] ADDING: 0x5c (REVERSE SOLIDUS) \backslash ...selecting 92 ...created as lig.449 [Success] ADDING: 0x2665 (BLACK HEART SUIT) \heartsuit ...selecting 9829 ...created as lig.450 [Success] ADDING: 0x2660 (BLACK SPADE SUIT) \spadesuit ...selecting 9824 ...created as lig.451 [Success] ADDING: 0x2297 (CIRCLED TIMES) \bigotimes ...selecting 8855 ...created as lig.452 [Success] ADDING: 0x22cd (REVERSED TILDE EQUALS) \backsimeq ...selecting 8909 ...created as lig.453 [Success] ADDING: 0x2713 (CHECK MARK) \checkmark ...selecting 10003 ...created as lig.454 [Success] ADDING: 0x212e (ESTIMATED SYMBOL) \estimated ...selecting 8494 ...created as lig.455 [Success] ADDING: 0x22db (GREATER-THAN EQUAL TO OR LESS-THAN) \gtreqless ...selecting 8923 ...created as lig.456 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. 0m] ADDING: 0x22da (LESS-THAN EQUAL TO OR GREATER-THAN) \lesseqgtr ...selecting 8922 ...created as lig.458 [Success] ADDING: 0x301a (LEFT WHITE SQUARE BRACKET) \llbracket ...selecting 12314 ...ERROR! Glyph cannot have 0 width ADDING: 0x2268 (LESS-THAN BUT NOT EQUAL TO) \lvertneqq ...selecting 8808 ...created as lig.460 [Success] ADDING: 0x2271 (NEITHER GREATER-THAN NOR EQUAL TO) \ngeqslant ...selecting 8817 ...created as lig.461 [Success] ADDING: 0x2270 (NEITHER LESS-THAN NOR EQUAL TO) \nleqslant ...selecting 8816 ...created as lig.462 [Success] ADDING: 0x2226 (NOT PARALLEL TO) \nparallel ...selecting 8742 ...created as lig.463 [Success] ADDING: 0x22d4 (PITCHFORK) \pitchfork ...selecting 8916 ...created as lig.464 [Success] ADDING: 0x301b (RIGHT WHITE SQUARE BRACKET) \rrbracket ...selecting 12315 ...ERROR! Glyph cannot have 0 width ADDING: 0x2286 (SUBSET OF OR EQUAL TO) \subseteqq ...selecting 8838 ...created as lig.466 [Success] ADDING: 0x228a (SUBSET OF WITH NOT EQUAL TO) \subsetneq ...selecting 8842 ...created as lig.467 [Success] ADDING: 0x2287 (SUPERSET OF OR EQUAL TO) \supseteqq ...selecting 8839 ...created as lig.468 [Success] ADDING: 0x228b (SUPERSET OF WITH NOT EQUAL TO) \supsetneq ...selecting 8843 ...created as lig.469 [Success] ADDING: 0x2234 (THEREFORE) \therefore ...selecting 8756 ...created as lig.470 [Success] ADDING: 0x225c (DELTA EQUAL TO) \triangleq ...selecting 8796 ...created as lig.471 [Success] ADDING: 0x221d (PROPORTIONAL TO) \varpropto ...selecting 8733 ...created as lig.472 [Success] ADDING: 0x332 (COMBINING LOW LINE) \underline ...selecting 818 ...ERROR! Glyph cannot have 0 width ADDING: 0x3b5 (GREEK SMALL LETTER EPSILON) \varepsilon ...selecting 949 ...created as lig.474 [Success] ADDING: 0x2291 (SQUARE IMAGE OF OR EQUAL TO) \sqsubseteq ...selecting 8849 ...created as lig.475 [Success] ADDING: 0x2292 (SQUARE ORIGINAL OF OR EQUAL TO) \sqsupseteq ...selecting 8850 ...created as lig.476 [Success] ADDING: 0x21d2 (RIGHTWARDS DOUBLE ARROW) \Rightarrow ...selecting 8658 ...created as lig.477 [Success] ADDING: 0x2192 (RIGHTWARDS ARROW) \rightarrow ...selecting 8594 ...created as lig.478 [Success] ADDING: 0x27fc (LONG RIGHTWARDS ARROW FROM BAR) \longmapsto ...selecting 10236 ...created as lig.479 [Success] ADDING: 0x229b (CIRCLED ASTERISK OPERATOR) \circledast ...selecting 8859 ...created as lig.480 [Success] [0m (COMPLEMENT) \complement ...selecting 8705 ...created as lig.481 [Success] ADDING: 0x22cf (CURLY LOGICAL AND) \curlywedge ...selecting 8911 ...created as lig.482 [Success] ADDING: 0x22dd (EQUAL TO OR GREATER-THAN) \eqslantgtr ...selecting 8925 ...created as lig.483 [Success] ADDING: 0x22db (GREATER-THAN EQUAL TO OR LESS-THAN) \gtreqqless ...selecting 8923 ...created as lig.484 [Success] ADDING: 0x22da (LESS-THAN EQUAL TO OR GREATER-THAN) \lesseqqgtr ...selecting 8922 ...created as lig.485 [Success] ADDING: 0x21da (LEFTWARDS TRIPLE ARROW) \Lleftarrow ...selecting 8666 ...created as lig.486 [Success] ADDING: 0x219a (LEFTWARDS ARROW WITH STROKE) \nleftarrow ...selecting 8602 ...created as lig.487 [Success] ADDING: 0x21cd (LEFTWARDS DOUBLE ARROW WITH STROKE) \nLeftarrow ...selecting 8653 ...created as lig.488 [Success] ADDING: 0x2288 (NEITHER A SUBSET OF NOR EQUAL TO) \nsubseteqq ...selecting 8840 ...created as lig.489 [Success] ADDING: 0x2289 (NEITHER A SUPERSET OF NOR EQUAL TO) \nsupseteqq ...selecting 8841 ...created as lig.490 [Success] ADDING: 0x228a (SUBSET OF WITH NOT EQUAL TO) \subsetneqq ...selecting 8842 ...created as lig.491 [Success] ADDING: 0x228b (SUPERSET OF WITH NOT EQUAL TO) \supsetneqq ...selecting 8843 ...created as lig.492 [Success] ADDING: 0x211e (PRESCRIPTION TAKE) \textrecipe ...selecting 8478 ...created as lig.493 [Success] ADDING: 0x21c8 (UPWARDS PAIRED ARROWS) \upuparrows ...selecting 8648 ...created as lig.494 [Success] ADDING: 0x2195 (UP DOWN ARROW) \updownarrow ...selecting 8597 ...created as lig.495 [Success] ADDING: 0x21d5 (UP DOWN DOUBLE ARROW) \Updownarrow ...selecting 8661 ...created as lig.496 [Success] ADDING: 0x2666 (BLACK DIAMOND SUIT) \diamondsuit ...selecting 9830 ...created as lig.497 [Success] ADDING: 0x220d (SMALL CONTAINS AS MEMBER) \backepsilon ...selecting 8717 ...created as lig.498 [Success] ADDING: 0x25aa (BLACK SMALL SQUARE) \blacksquare ...selecting 9642 ...created as lig.499 [Success] ADDING: 0x229a (CIRCLED RING OPERATOR) \circledcirc ...selecting 8858 ...created as lig.500 [Success] ADDING: 0x229d (CIRCLED DASH) \circleddash ...selecting 8861 ...created as lig.501 [Success] ADDING: 0x22de (EQUAL TO OR PRECEDES) \curlyeqprec ...selecting 8926 ...created as lig.502 [Success] ADDING: 0x22df (EQUAL TO OR SUCCEEDS) \curlyeqsucc ...selecting 8927 ...created as lig.503 [Success] x22dc (EQUAL TO OR LESS-THAN) \eqslantless ...selecting 8924 ...created as lig.504 [Success] ADDING: 0x219b (RIGHTWARDS ARROW WITH STROKE) \nrightarrow ...selecting 8603 ...created as lig.505 [Success] ADDING: 0x21cf (RIGHTWARDS DOUBLE ARROW WITH STROKE) \nRightarrow ...selecting 8655 ...created as lig.506 [Success] ADDING: 0x227c (PRECEDES OR EQUAL TO) \preccurlyeq ...selecting 8828 ...created as lig.507 [Success] ADDING: 0x21db (RIGHTWARDS TRIPLE ARROW) \Rrightarrow ...selecting 8667 ...created as lig.508 [Success] ADDING: 0x227d (SUCCEEDS OR EQUAL TO) \succcurlyeq ...selecting 8829 ...created as lig.509 [Success] ADDING: 0x25b5 (WHITE UP-POINTING SMALL TRIANGLE) \vartriangle ...selecting 9653 ...created as lig.510 [Success] ADDING: 0x201e (DOUBLE LOW-9 QUOTATION MARK) \quotedblbase ...selecting 8222 ...created as lig.511 [Success] ADDING: 0x22 (QUOTATION MARK) \textquotedbl ...selecting 34 ...created as lig.512 [Success] ADDING: 0xe80b (reduced info) ...selecting 59403 ...ERROR! Glyph cannot have 0 width ADDING: 0xa3 (POUND SIGN) \mathsterling ...selecting 163 ...created as lig.514 [Success] ADDING: 0x2253 (IMAGE OF OR APPROXIMATELY EQUAL TO) \risingdotseq ...selecting 8787 ...created as lig.515 [Success] ADDING: 0x2117 (SOUND RECORDING COPYRIGHT) \textcircledP ...selecting 8471 ...created as lig.516 [Success] ADDING: 0xa4 (CURRENCY SIGN) \textcurrency ...selecting 164 ...created as lig.517 [Success] ADDING: 0x25bf (WHITE DOWN-POINTING SMALL TRIANGLE) \triangledown ...selecting 9663 ...created as lig.518 [Success] ADDING: 0x25c3 (WHITE LEFT-POINTING SMALL TRIANGLE) \triangleleft ...selecting 9667 ...created as lig.519 [Success] ADDING: 0xab (LEFT-POINTING DOUBLE ANGLE QUOTATION MARK) \guillemotleft ...selecting 171 ...created as lig.520 [Success] ADDING: 0x2039 (SINGLE LEFT-POINTING ANGLE QUOTATION MARK) \guilsinglleft ...selecting 8249 ...created as lig.521 [Success] ADDING: 0x27f8 (LONG LEFTWARDS DOUBLE ARROW) \Longleftarrow ...selecting 10232 ...created as lig.522 [Success] ADDING: 0x21a9 (LEFTWARDS ARROW WITH HOOK) \hookleftarrow ...selecting 8617 ...created as lig.523 [Success] ADDING: 0x25b3 (WHITE UP-POINTING TRIANGLE) \bigtriangleup ...selecting 9651 ...created as lig.524 [Success] ADDING: 0x25b4 (BLACK UP-POINTING SMALL TRIANGLE) \blacktriangle ...selecting 9652 ...created as lig.525 [Success] 26 [Success] ADDING: 0x22c7 (DIVISION TIMES) \divideontimes ...selecting 8903 ...created as lig.527 [Success] ADDING: 0x2252 (APPROXIMATELY EQUAL TO OR THE IMAGE OF) \fallingdotseq ...selecting 8786 ...created as lig.528 [Success] ADDING: 0x21a2 (LEFTWARDS ARROW WITH TAIL) \leftarrowtail ...selecting 8610 ...created as lig.529 [Success] ADDING: 0x21bc (LEFTWARDS HARPOON WITH BARB UPWARDS) \leftharpoonup ...selecting 8636 ...created as lig.530 [Success] ADDING: 0x21ab (LEFTWARDS ARROW WITH LOOP) \looparrowleft ...selecting 8619 ...created as lig.531 [Success] ADDING: 0x2041 (CARET INSERTION POINT) \mathchar"1356 ...selecting 8257 ...created as lig.532 [Success] ADDING: 0x2316 (POSITION INDICATOR) \mathchar"2208 ...selecting 8982 ...ERROR! Glyph cannot have 0 width ADDING: 0x2221 (MEASURED ANGLE) \measuredangle ...selecting 8737 ...created as lig.534 [Success] ADDING: 0x22ea (NOT NORMAL SUBGROUP OF) \ntriangleleft ...selecting 8938 ...created as lig.535 [Success] ADDING: 0xfe68 (SMALL REVERSE SOLIDUS) \smallsetminus ...selecting 65128 ...ERROR! Glyph cannot have 0 width ADDING: 0xa6 (BROKEN BAR) \textbrokenbar ...selecting 166 ...created as lig.537 [Success] ADDING: 0x2122 (TRADE MARK SIGN) \texttrademark ...selecting 8482 ...created as lig.538 [Success] ADDING: 0x25b9 (WHITE RIGHT-POINTING SMALL TRIANGLE) \triangleright ...selecting 9657 ...created as lig.539 [Success] ADDING: 0x21bf (UPWARDS HARPOON WITH BARB LEFTWARDS) \upharpoonleft ...selecting 8639 ...created as lig.540 [Success] ADDING: 0x335 (COMBINING SHORT STROKE OVERLAY) \strikethrough ...selecting 821 ...ERROR! Glyph cannot have 0 width ADDING: 0xbb (RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK) \guillemotright ...selecting 187 ...created as lig.542 [Success] ADDING: 0x203a (SINGLE RIGHT-POINTING ANGLE QUOTATION MARK) \guilsinglright ...selecting 8250 ...created as lig.543 [Success] ADDING: 0x201a (SINGLE LOW-9 QUOTATION MARK) \quotesinglbase ...selecting 8218 ...created as lig.544 [Success] ADDING: 0x21aa (RIGHTWARDS ARROW WITH HOOK) \hookrightarrow ...selecting 8618 ...created as lig.545 [Success] ADDING: 0x27f9 (LONG RIGHTWARDS DOUBLE ARROW) \Longrightarrow ...selecting 10233 ...created as lig.546 [Success] ADDING: 0x21d4 (LEFT RIGHT DOUBLE ARROW) \Leftrightarrow ...selecting 8660 ...created as lig.547 [Success] ADDING: 0x2194 (LEFT RIGHT ARROW) \leftrightarrow ...selecting 8596 ...created as lig.548 [Success] ANTICLOCKWISE TOP SEMICIRCLE ARROW) \curvearrowleft ...selecting 8630 ...created as lig.549 [Success] ADDING: 0x21e2 (RIGHTWARDS DASHED ARROW) \dashrightarrow ...selecting 8674 ...created as lig.550 [Success] ADDING: 0x2306 (PERSPECTIVE) \doublebarwedge ...selecting 8966 ...created as lig.551 [Success] ADDING: 0x21ca (DOWNWARDS PAIRED ARROWS) \downdownarrows ...selecting 8650 ...created as lig.552 [Success] ADDING: 0x21c7 (LEFTWARDS PAIRED ARROWS) \leftleftarrows ...selecting 8647 ...created as lig.553 [Success] ADDING: 0x22cb (LEFT SEMIDIRECT PRODUCT) \leftthreetimes ...selecting 8907 ...created as lig.554 [Success] ADDING: 0x21ac (RIGHTWARDS ARROW WITH LOOP) \looparrowright ...selecting 8620 ...created as lig.555 [Success] ADDING: 0x22eb (DOES NOT CONTAIN AS NORMAL SUBGROUP) \ntriangleright ...selecting 8939 ...created as lig.556 [Success] ADDING: 0x21a3 (RIGHTWARDS ARROW WITH TAIL) \rightarrowtail ...selecting 8611 ...created as lig.557 [Success] ADDING: 0x21c0 (RIGHTWARDS HARPOON WITH BARB UPWARDS) \rightharpoonup ...selecting 8640 ...created as lig.558 [Success] ADDING: 0x2222 (SPHERICAL ANGLE) \sphericalangle ...selecting 8738 ...created as lig.559 [Success] ADDING: 0x22b4 (NORMAL SUBGROUP OF OR EQUAL TO) \trianglelefteq ...selecting 8884 ...created as lig.560 [Success] ADDING: 0x21be (UPWARDS HARPOON WITH BARB RIGHTWARDS) \upharpoonright ...selecting 8638 ...created as lig.561 [Success] ADDING: 0x25bd (WHITE DOWN-POINTING TRIANGLE) \bigtriangledown ...selecting 9661 ...created as lig.562 [Success] ADDING: 0x21ba (ANTICLOCKWISE OPEN CIRCLE ARROW) \circlearrowleft ...selecting 8634 ...created as lig.563 [Success] ADDING: 0x21b7 (CLOCKWISE TOP SEMICIRCLE ARROW) \curvearrowright ...selecting 8631 ...created as lig.564 [Success] ADDING: 0x21c3 (DOWNWARDS HARPOON WITH BARB LEFTWARDS) \downharpoonleft ...selecting 8643 ...created as lig.565 [Success] ADDING: 0x21bd (LEFTWARDS HARPOON WITH BARB DOWNWARDS) \leftharpoondown ...selecting 8637 ...created as lig.566 [Success] ADDING: 0x21c6 (LEFTWARDS ARROW OVER RIGHTWARDS ARROW) \leftrightarrows ...selecting 8646 ...created as lig.567 [Success] ADDING: 0x21ae (LEFT RIGHT ARROW WITH STROKE) \nleftrightarrow ...selecting 8622 ...created as lig.568 [Success] ADDING: 0x21ce (LEFT RIGHT DOUBLE ARROW WITH STROKE) \nLeftrightarrow ...selecting 8654 ...created as lig.569 [Success] At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. ] ADDING: 0x21c4 (RIGHTWARDS ARROW OVER LEFTWARDS ARROW) \rightleftarrows ...selecting 8644 ...created as lig.571 [Success] ADDING: 0x21dd (RIGHTWARDS SQUIGGLE ARROW) \rightsquigarrow ...selecting 8669 ...created as lig.572 [Success] ADDING: 0x22cc (RIGHT SEMIDIRECT PRODUCT) \rightthreetimes ...selecting 8908 ...created as lig.573 [Success] ADDING: 0x266a (EIGHTH NOTE) \textmusicalnote ...selecting 9834 ...created as lig.574 [Success] ADDING: 0xaa (FEMININE ORDINAL INDICATOR) \textordfeminine ...selecting 170 ...created as lig.575 [Success] ADDING: 0x2030 (PER MILLE SIGN) \textperthousand ...selecting 8240 ...created as lig.576 [Success] ADDING: 0x22b5 (CONTAINS AS NORMAL SUBGROUP OR EQUAL TO) \trianglerighteq ...selecting 8885 ...created as lig.577 [Success] ADDING: 0x22b2 (NORMAL SUBGROUP OF) \vartriangleleft ...selecting 8882 ...created as lig.578 [Success] ADDING: 0x333 (COMBINING DOUBLE LOW LINE) \doubleunderline ...selecting 819 ...ERROR! Glyph cannot have 0 width ADDING: 0x21bb (CLOCKWISE OPEN CIRCLE ARROW) \circlearrowright ...selecting 8635 ...created as lig.580 [Success] ADDING: 0x21c2 (DOWNWARDS HARPOON WITH BARB RIGHTWARDS) \downharpoonright ...selecting 8642 ...created as lig.581 [Success] ADDING: 0x22ed (DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL) \ntrianglerighteq ...selecting 8941 ...created as lig.582 [Success] ADDING: 0x21c1 (RIGHTWARDS HARPOON WITH BARB DOWNWARDS) \rightharpoondown ...selecting 8641 ...created as lig.583 [Success] ADDING: 0x21c9 (RIGHTWARDS PAIRED ARROWS) \rightrightarrows ...selecting 8649 ...created as lig.584 [Success] ADDING: 0xba (MASCULINE ORDINAL INDICATOR) \textordmasculine ...selecting 186 ...created as lig.585 [Success] ADDING: 0x2423 (OPEN BOX) \textvisiblespace ...selecting 9251 ...created as lig.586 [Success] ADDING: 0x219e (LEFTWARDS TWO HEADED ARROW) \twoheadleftarrow ...selecting 8606 ...created as lig.587 [Success] ADDING: 0x22b3 (CONTAINS AS NORMAL SUBGROUP) \vartriangleright ...selecting 8883 ...created as lig.588 [Success] ADDING: 0x25be (BLACK DOWN-POINTING SMALL TRIANGLE) \blacktriangledown ...selecting 9662 ...created as lig.589 [Success] ADDING: 0x25c2 (BLACK LEFT-POINTING SMALL TRIANGLE) \blacktriangleleft ...selecting 9666 ...created as lig.590 [Success] ADDING: 0x21cb (LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON) \leftrightharpoons ...selecting 8651 ...created as lig.591 [Success] ```

tecosaur commented 5 years ago

Update 5

Got a subset of the symbols working :smiley:

Sorry for the pile of notifications I've just given you.

If you still have any patience, there are a few things that I can't work out how to get to work.

  1. Some symbols, which exist in both fonts, simply won't work I don't know why
  2. Lots of warnings such as At least one anchor point was lost when pasting from one font to another because no matching anchor class could be found in the new font. are showing up
  3. It would be good if there was no width correction, i.e. I'd rather not have the extra whitespace as seen below: image
  4. It will be working, I will add another ligature, it will no longer work, I comment out a large random chuck, the new ligature works, un-comment region, it stops working...

I imagine that (3) would be the easiest to fix, and if you can help with (4) it's really annoying.

tecosaur commented 5 years ago

@ToxicFrog if you can help with that list of 4 issues in any way I'd be hugely appreciative :smiley:.

ToxicFrog commented 5 years ago

Whoops, sorry, I haven't been keeping up on my GH notifications.

No idea on (1) or (2).

(3) is tricky. If it can be done, it would probably be done by messing with the left_side_bearing, right_side_bearing, and width of the ligature in correct_ligature_width. LSB and RSB are the left and right margins of the glyph in its bounding box, and width is the total horizontal width of the bounding box (the "advance").

Ligatures are characterized by large negative left bearings and normal advances and right bearings, meaning that the drawing of the ligature extends to the left "outside" the bounding box (which is what you want, since that covers all the characters that were replaced, not just the last one). So it's possible that by setting both bearings to negative values (thus yielding a negative advance as well), typing the ligature would cause its constituent characters to "condense" into the ligature, and the cursor to jump backwards.

That said, the documentation implies that setting a negative total advance is disallowed, or at least avoided; I don't know if it would actually work. Caveat scriptor.

(4) I have no idea on. What are you commenting out, parts of the ligature table? And what does "doesn't work" mean here -- it crashes? Fails to generate the output font? Generates it fine, but the ligatures don't work, or some of them don't? I wonder if there's some internal limit on the number of ligatures you can have, although it seems unlikely you'd be hitting it.