henningpohl / latex-emoji

Other
24 stars 3 forks source link

New version of images #2

Open albert-github opened 5 years ago

albert-github commented 5 years ago

Is there any chance of a new / extended set of images. Since 2016 there are some new images.

Looking at the v11.0 definition and attempting to run the generate_emoji_sty.py I noticed a number of differences in the layout of the table. The first line does not contain the relevant header but line 3 does so:

header = table.find('tr')

should be replaced by:

header = table.find_all('tr')[2]

Also the available columns changed:

            save_image('ios', fields['apple'], filename)
            save_image('android', fields['goog.'], filename)
            save_image('twitter', fields['twtr.'], filename)
            save_image('windows', fields['wind.'], filename)
            save_image('one', fields['one'], filename)
            save_image('bw', fields['chart'], filename)

new list:

        save_image('ios', fields['appl'], filename)
        save_image('android', fields['goog'], filename)
        save_image('twitter', fields['twtr'], filename)
        save_image('windows', fields['wind'], filename)
        save_image('one', fields['one'], filename)
        save_image('facebook', fields['fb'], filename)
        save_image('samsung', fields['sams'], filename)
        save_image('gmail', fields['gmail'], filename)
        save_image('softbank', fields['sb'], filename)
        save_image('docomo', fields['dcm'], filename)
        save_image('kddi', fields['kddi'], filename)

The used list in the code is for the emoji without skin tones. The, extra, list with skin tones can be found at: (http://www.unicode.org/emoji/charts/full-emoji-modifiers.html).

henningpohl commented 4 years ago

I probably won't have the time to get around to updating this any time soon. Sorry.

henningpohl commented 1 year ago

I did just update to the current version of the "full emoji list"(http://www.unicode.org/emoji/charts/full-emoji-list.html). That still doesn't include all the skin tone variants, though.