On 15 Sep 2016, at 20:19, Wolfgang Schuster
wrote:
Another input method is shown in the following video [1] where each symbol get its own command, e.g. \mbfitx is equal to {\bi x}.
This works on MacOS 10.12 in any application that uses the standard text services. One has an XML .plist file as listed below. Then in such an application, one turns on "Text Replacements". (The video shows TeXShop.) Using the .plist file below, \mbfitx is translated into ๐. The replacement text can be anything. ---- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <array> <dict> <key>phrase</key> <string>๐</string> <key>shortcut</key> <string>\mbfitx</string> </dict> <dict> <key>phrase</key> <string>๐</string> <key>shortcut</key> <string>\mbfity</string> </dict> <dict> <key>phrase</key> <string>๐</string> <key>shortcut</key> <string>\mbfitz</string> </dict> </array> </plist> ----