@simonklee/opentui-tex-native-source 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
The Fira Math Font
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Fira Math is a sans-serif font with Unicode math support. This font is a fork of
|
|
5
|
+
|
|
6
|
+
- [FiraSans](https://github.com/bBoxType/FiraSans)
|
|
7
|
+
- [FiraGO](https://github.com/bBoxType/FiraGO)
|
|
8
|
+
|
|
9
|
+
Usage
|
|
10
|
+
-----
|
|
11
|
+
|
|
12
|
+
Fira Math can be used via XeLaTeX or LuaLaTeX, with [`unicode-math`](https://ctan.org/pkg/unicode-math) package.
|
|
13
|
+
|
|
14
|
+
% Compiled with XeLaTeX or LuaLaTeX
|
|
15
|
+
\documentclass{article}
|
|
16
|
+
\usepackage{amsmath}
|
|
17
|
+
\usepackage[mathrm=sym]{unicode-math}
|
|
18
|
+
\setmathfont{Fira Math}
|
|
19
|
+
|
|
20
|
+
\begin{document}
|
|
21
|
+
\[
|
|
22
|
+
\int_0^{\mathrm{\pi}} \sin x \, \mathrm{d}x = 2
|
|
23
|
+
\]
|
|
24
|
+
\end{document}
|
|
25
|
+
|
|
26
|
+
You may try the [`firamath-otf`](https://ctan.org/pkg/firamath-otf) package as well.
|
|
27
|
+
|
|
28
|
+
Contributing
|
|
29
|
+
------------
|
|
30
|
+
|
|
31
|
+
[Issues](https://github.com/firamath/firamath/issues) and
|
|
32
|
+
[pull requests](https://github.com/firamath/firamath/pulls)
|
|
33
|
+
are always welcome.
|
|
34
|
+
|
|
35
|
+
License
|
|
36
|
+
-------
|
|
37
|
+
|
|
38
|
+
This Font Software is licensed under the [SIL Open Font License](http://scripts.sil.org/OFL), Version 1.1.
|
|
39
|
+
|
|
40
|
+
-----
|
|
41
|
+
|
|
42
|
+
Copyright (C) 2018–2020 by Xiangdong Zeng <xdzeng96@gmail.com>.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
###########################################################################
|
|
2
|
+
############ Latin Modern Collection of Fonts ############
|
|
3
|
+
###########################################################################
|
|
4
|
+
|
|
5
|
+
Font: Latin Modern Math
|
|
6
|
+
Authors: Bogus\l{}aw Jackowski, Piotr Strzelczyk and Piotr Pianowski
|
|
7
|
+
Version: 1.959
|
|
8
|
+
Date: 5 IX 2014
|
|
9
|
+
|
|
10
|
+
License:
|
|
11
|
+
% Copyright 2012--2014 for the Latin Modern math extensions by B. Jackowski,
|
|
12
|
+
% P. Strzelczyk and P. Pianowski (on behalf of TeX Users Groups).
|
|
13
|
+
%
|
|
14
|
+
% This work can be freely used and distributed under
|
|
15
|
+
% the GUST Font License (GFL -- see GUST-FONT-LICENSE.txt)
|
|
16
|
+
% which is actually an instance of the LaTeX Project Public License
|
|
17
|
+
% (LPPL -- see http://www.latex-project.org/lppl.txt).
|
|
18
|
+
%
|
|
19
|
+
% This work has the maintenance status "maintained". The Current Maintainer
|
|
20
|
+
% of this work is Bogus\l{}aw Jackowski, Piotr Strzelczyk and Piotr Pianowski.
|
|
21
|
+
%
|
|
22
|
+
% This work consists of the files listed
|
|
23
|
+
% in the MANIFEST-Latin-Modern-Math.txt file.
|
|
24
|
+
|
|
25
|
+
###########################################################################
|
|
26
|
+
############ A BRIEF DESCRIPTION OF THE FONT ############
|
|
27
|
+
###########################################################################
|
|
28
|
+
|
|
29
|
+
Latin Modern Math is a math companion for the Latin Modern family
|
|
30
|
+
of fonts (see http://www.gust.org.pl/projects/e-foundry/latin-modern) in
|
|
31
|
+
the OpenType format.
|
|
32
|
+
|
|
33
|
+
The math OTF fonts should contain a special table, MATH, described in the
|
|
34
|
+
confidential Microsoft document "The MATH table and OpenType Features
|
|
35
|
+
for Math Processing". Moreover, they should contain a broad collection
|
|
36
|
+
of special characters (see "Draft Unicode Technical Report #25.
|
|
37
|
+
UNICODE SUPPORT FOR MATHEMATICS" by Barbara Beeton, Asmus Freytag,
|
|
38
|
+
and Murray Sargent III). In particular, math OTF fonts are expected
|
|
39
|
+
to contain the following scripts: a basic serif script (regular, bold,
|
|
40
|
+
italic and bold italic), a calligraphic script (regular and bold),
|
|
41
|
+
a double-struck script, a fraktur script (regular and bold), a sans-serif
|
|
42
|
+
script (regular, bold, oblique and bold oblique), and a monospaced script.
|
|
43
|
+
|
|
44
|
+
The basic script is, obviously, Latin Modern. Some scripts, however,
|
|
45
|
+
are borrowed from other fonts (the current selection, however, may
|
|
46
|
+
be subject to change), belonging, however, to the "TeX circle":
|
|
47
|
+
|
|
48
|
+
* the calligraphic and fraktur alphabets are excerpted from the renowned
|
|
49
|
+
Euler family (http://en.wikipedia.org/wiki/AMS_Euler);
|
|
50
|
+
|
|
51
|
+
* the double struck script is excerpted from Alan Jeffrey's bbold font
|
|
52
|
+
(http://www.tug.org/texlive/Contents/live/texmf-dist/doc/latex/bbold/bbold.pdf)
|
|
53
|
+
|
|
54
|
+
* the sans serif and monospaced alphabets are excerpted from
|
|
55
|
+
the Latin Modern Sans and Latin Modern Mono fonts
|
|
56
|
+
(http://www.gust.org.pl/projects/e-foundry/latin-modern);
|
|
57
|
+
sans serif bold Greek symbols (required by the already mentioned
|
|
58
|
+
"Unicode Technical Report #25") were prepared using D.E. Knuth's
|
|
59
|
+
font sources with some manual tuning
|
|
60
|
+
|
|
61
|
+
The main math component, that is, the math extension, was programmed
|
|
62
|
+
from scratch, with an attempt to retain the visual compatiblility
|
|
63
|
+
with the original D.E. Knuth's fonts. In particular, all symbols
|
|
64
|
+
(with a few exceptions) appearing in the D.E. Knuth's "canonical" fonts
|
|
65
|
+
have the same width (rounded) as the corresponding Knuthian ones.
|
|
66
|
+
|
|
67
|
+
Note that the members of all the mentioned alphabets, except
|
|
68
|
+
the main roman alphabet, should be considerd symbols, not letters;
|
|
69
|
+
symbols are not expected to occur in a text stream; instead,
|
|
70
|
+
they are expected to appear lonely, perhaps with some embellishments
|
|
71
|
+
like subscripts, superscripts, primes, dots above and below, etc.
|
|
72
|
+
|
|
73
|
+
To produce the font, MetaType1 and the FontForge library were used:
|
|
74
|
+
the Type1 PostScript font containing all relevant characters was
|
|
75
|
+
generated with the MetaType1 engine, and the result was converted
|
|
76
|
+
into the OTF format with all the necessary data structures by
|
|
77
|
+
a Python script employing the FontForge library.
|
|
78
|
+
|
|
79
|
+
Recent changes (ver. 1.958 --> ver. 1.959) comprised
|
|
80
|
+
mainly interline settings in OTF tables (HHEA and
|
|
81
|
+
OS/2) and the correction of unicode slots assigned to
|
|
82
|
+
the contour integrals (glyphs `clockwise contour
|
|
83
|
+
integral', u+2232, and `anticlockwise contour
|
|
84
|
+
integral', u+2233, used to have swapped slots).
|
|
85
|
+
|
|
86
|
+
* * *
|
|
87
|
+
|
|
88
|
+
The TeX Gyre Math Project was launched and is supported by
|
|
89
|
+
TeX USERS GROUPS (CS TUG, DANTE eV, GUST, NTG, TUG India, TUG, UK TUG).
|
|
90
|
+
Hearty thanks to the representatives of these groups and also
|
|
91
|
+
to all people who helped with their work, comments, ideas,
|
|
92
|
+
remarks, bug reports, objections, hints, consolations, etc.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
###########################################################################
|
|
2
|
+
############ The TeX Gyre Collection of Fonts ############
|
|
3
|
+
###########################################################################
|
|
4
|
+
|
|
5
|
+
Font: TeX Gyre DejaVu Math
|
|
6
|
+
Authors: Bogus\l{}aw Jackowski, Piotr Strzelczyk and Piotr Pianowski
|
|
7
|
+
Version: 1.106
|
|
8
|
+
Date: 8 V 2016 / 19 V 2016 (documentation update)
|
|
9
|
+
|
|
10
|
+
License:
|
|
11
|
+
% Copyright 2016 for TeX Gyre math extensions by B. Jackowski,
|
|
12
|
+
% P. Strzelczyk and P. Pianowski (on behalf of TeX Users Groups).
|
|
13
|
+
%
|
|
14
|
+
% Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
|
|
15
|
+
% DejaVu changes are in public domain (see the LICENSE-DejaVu.txt file).
|
|
16
|
+
%
|
|
17
|
+
% This work can be freely used and distributed under
|
|
18
|
+
% the GUST Font License (GFL -- see GUST-FONT-LICENSE.txt)
|
|
19
|
+
% which is actually an instance of the LaTeX Project Public License
|
|
20
|
+
% (LPPL -- see http://www.latex-project.org/lppl.txt).
|
|
21
|
+
%
|
|
22
|
+
% This work has the maintenance status "maintained". The Current Maintainer
|
|
23
|
+
% of this work is Bogus\l{}aw Jackowski, Piotr Strzelczyk and Piotr Pianowski.
|
|
24
|
+
%
|
|
25
|
+
% This work consists of the files listed
|
|
26
|
+
% in the MANIFEST-TeX-Gyre-DejaVu-Math.txt file.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
###########################################################################
|
|
30
|
+
############ A BRIEF DESCRIPTION OF THE FONT ############
|
|
31
|
+
###########################################################################
|
|
32
|
+
|
|
33
|
+
TeX Gyre DejaVu Math is a math companion for the DejaVu Serif
|
|
34
|
+
family of fonts in the OpenType format;
|
|
35
|
+
see the LICENSE-DejaVu.txt file or http://dejavu-fonts.org/wiki/Main_Page
|
|
36
|
+
and http://dejavu-fonts.org/wiki/License .
|
|
37
|
+
|
|
38
|
+
The math OTF fonts should contain a special table, MATH,
|
|
39
|
+
described in the Microsoft specification "MATH -- The
|
|
40
|
+
mathematical typesetting table", ver. 1.7, March 2015
|
|
41
|
+
( http://www.microsoft.com/typography/otspec/math.htm ).
|
|
42
|
+
Moreover, they should contain a broad collection of
|
|
43
|
+
special characters (see "Technical Report #25.
|
|
44
|
+
UNICODE SUPPORT FOR MATHEMATICS" by Barbara Beeton,
|
|
45
|
+
Asmus Freytag, and Murray Sargent III, http://unicode.org/reports/tr25/ ).
|
|
46
|
+
In particular, math OTF scripts are expected to contain the following
|
|
47
|
+
scripts: a basic serif script (regular, bold, italic and
|
|
48
|
+
bold italic), a calligraphic script (regular and bold),
|
|
49
|
+
a double-struck script, a fraktur script (regular and
|
|
50
|
+
bold), a sans-serif script (regular, bold, oblique and
|
|
51
|
+
bold oblique), and a monospaced script.
|
|
52
|
+
|
|
53
|
+
Most of non-math glyphs have been excerpted from the original
|
|
54
|
+
DejaVu Serif, Sans, and Mono families of fonts; exception
|
|
55
|
+
is the fraktur script which we excerpted from the renowned Euler family
|
|
56
|
+
http://en.wikipedia.org/wiki/AMS_Euler (we used the old Type 1
|
|
57
|
+
AMS public domain fonts; note that after reshaping in 2009,
|
|
58
|
+
the Euler fonts have been released under the Open Font License),
|
|
59
|
+
calligraphic script, and Hebrew script (four symbols). The latter
|
|
60
|
+
two scripts, as well as math symbols (operators, relational symbols,
|
|
61
|
+
braces, arrows, accents etc.) have been designed to match visually
|
|
62
|
+
the basic font.
|
|
63
|
+
|
|
64
|
+
Note that the members of all the mentioned alphabets, except for
|
|
65
|
+
the main roman alphabet, should be considered symbols, not letters.
|
|
66
|
+
Symbols are not expected to occur in a text stream; instead,
|
|
67
|
+
they are expected to appear lonely, perhaps with some embellishments
|
|
68
|
+
like subscripts, superscripts, primes, dots above and below, etc.
|
|
69
|
+
|
|
70
|
+
To produce the font, MetaType1 and the FontForge library were used:
|
|
71
|
+
the Type1 PostScript font containing all relevant characters was
|
|
72
|
+
generated with the MetaType1 engine, and the result was converted
|
|
73
|
+
into the OTF format with all the necessary data structures by
|
|
74
|
+
a Python script employing the FontForge library.
|
|
75
|
+
|
|
76
|
+
* * *
|
|
77
|
+
|
|
78
|
+
The GUST e-Foundry Math Fonts Project was launched and is supported by
|
|
79
|
+
TeX USERS GROUPS (CS TUG, DANTE eV, GUST, NTG, TUG India, TUG, UK TUG).
|
|
80
|
+
Hearty thanks to the representatives of these groups and also
|
|
81
|
+
to all people who helped with their work, comments, ideas,
|
|
82
|
+
remarks, bug reports, objections, hints, consolations, etc.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
|
|
2
|
+
FONTLOG for XITS
|
|
3
|
+
-------------------
|
|
4
|
+
This file provides detailed information on the XITS font software. This
|
|
5
|
+
information should be distributed along with the XITS fonts and any derivative
|
|
6
|
+
works.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Basic Font Information
|
|
10
|
+
--------------------------
|
|
11
|
+
XITS is a Times-like typeface for mathematical and scientific publishing, based
|
|
12
|
+
on the STIX fonts project. The main mission of XITS is to provide a version of
|
|
13
|
+
STIX fonts enriched with the OpenType MATH extension, making it suitable for
|
|
14
|
+
high quality mathematical typesetting with OpenType MATH capable layout systems,
|
|
15
|
+
like MS Office 2007 and later and the TeX engines XeTeX and LuaTeX.
|
|
16
|
+
|
|
17
|
+
XITS development is currently hosted at:
|
|
18
|
+
http://github.com/alif-type/xits
|
|
19
|
+
|
|
20
|
+
Feature requests, bug reports and patches should be directed to our issue
|
|
21
|
+
tracker.
|
|
22
|
+
|
|
23
|
+
Information for Contributors
|
|
24
|
+
------------------------------
|
|
25
|
+
XITS is released under the OFL 1.1 - http://scripts.sil.org/OFL For information
|
|
26
|
+
on what you're allowed to change or modify, consult the OFL-1.1.txt and
|
|
27
|
+
OFL-FAQ.txt files. The OFL-FAQ also gives a very general rationale and various
|
|
28
|
+
recommendations regarding why you would want to contribute to the project or
|
|
29
|
+
make your own version of the font.
|
|
30
|
+
|
|
31
|
+
See the project website for the current master and the various branches:
|
|
32
|
+
http://github.com/alif-type/xits
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
ChangeLog
|
|
36
|
+
----------
|
|
37
|
+
2 July 2020 (Khaled Hosny) <XITS> Version 1.302
|
|
38
|
+
- Extend small capital i/ı variant to Azerbaijani and Crimean Tatar.
|
|
39
|
+
- THIS IS THE FINAL RELEASE OF XITS FONTS, NO FUTURE VERSIONS WILL BE
|
|
40
|
+
RELEASED.
|
|
41
|
+
|
|
42
|
+
7 September 2019 (Khaled Hosny) <XITS> Version 1.301
|
|
43
|
+
- Add some small caps glyphs for a few missed accented characters.
|
|
44
|
+
- Fix positions of superior and inferior figures.
|
|
45
|
+
- Improve small caps kerning.
|
|
46
|
+
|
|
47
|
+
30 August 2019 (Khaled Hosny) <XITS> Version 1.300
|
|
48
|
+
- Fix mis-encoded U+1D9B as U+1D98.
|
|
49
|
+
- Add top accent position to few accents in bold math font.
|
|
50
|
+
- Add minute and second signs to italic font.
|
|
51
|
+
- Add OpenType feature for superior figures.
|
|
52
|
+
- Fix thickness of connector part in division symbol.
|
|
53
|
+
- Add superior figures.
|
|
54
|
+
- Add ffj ligature.
|
|
55
|
+
- Fix displaced accented i glyphs.
|
|
56
|
+
- Add small caps to regular font.
|
|
57
|
+
- Add alternate old-style figures
|
|
58
|
+
- Add T and S with comma below for Romanian.
|
|
59
|
+
- Add scientific inferiors feature.
|
|
60
|
+
|
|
61
|
+
2 October 2018 (Khaled Hosny) <XITS> Version 1.200
|
|
62
|
+
- This is the final release with new features, from now only XITS is in
|
|
63
|
+
maintenance mode and only bug fixes will be made.
|
|
64
|
+
|
|
65
|
+
29 September 2018 (Khaled Hosny) <XITS> Version 1.109
|
|
66
|
+
- Improve Arabic math glyph considerably, they are much usable now.
|
|
67
|
+
- Add upright RTL integral alternates.
|
|
68
|
+
- Change ‘cv01’ feature for alternate Arabic math glyphs.
|
|
69
|
+
- Make the ‘hhea’ ascent/descent/line gap match the ‘OS/2’ typo metrics.
|
|
70
|
+
- Don’t set deprecated ForceBold in CFF Private dictionary.
|
|
71
|
+
- Fix script position with vertical bar on MS Word.
|
|
72
|
+
- Make vertical bar extensible in bold math font.
|
|
73
|
+
- Make MS Word linear fraction work better.
|
|
74
|
+
- Bundle WOFF fonts.
|
|
75
|
+
- Remove glyph overlap, some CFF rasterizers handle it badly.
|
|
76
|
+
- Fonts can be build with vanilla FontForge now.
|
|
77
|
+
- Builds are reproducible.
|
|
78
|
+
|
|
79
|
+
20 Jan 2014 (Khaled Hosny) <XITS> Version 1.108
|
|
80
|
+
- Add ‘latn’ and ‘dflt’ languages to math stylistic sets
|
|
81
|
+
- Add missing substitutions from ‘ss05’, ‘ss06’ and ‘ss07’ features
|
|
82
|
+
- Drop regular Arabic letters
|
|
83
|
+
- Drop the Arabic digits ‘locl’ feature
|
|
84
|
+
- Import Arabic alphanumeric math symbols and Arabic ray sign from Amiri font
|
|
85
|
+
- Add ‘ss10’ for \hbar variant of \hslash
|
|
86
|
+
- Fix ‘rtlm’ feature to follow the spec
|
|
87
|
+
|
|
88
|
+
28 May 2013 (Khaled Hosny) <XITS> Version 1.107
|
|
89
|
+
- Make ‘rtlm’ feature work with Firefox
|
|
90
|
+
- Disable fi ligatures with Turkish
|
|
91
|
+
- New/improved accent positioning for all math alphabets
|
|
92
|
+
- Italic correction for math alphabets accessible via stylistic sets
|
|
93
|
+
- Fix coverage of italic mathbb stylistic sets
|
|
94
|
+
- Make regular partial differential (U+2202) upright
|
|
95
|
+
- Rework bold integral summations
|
|
96
|
+
- Improve script positions of upright alphabet
|
|
97
|
+
|
|
98
|
+
28 May 2012 (Khaled Hosny) <XITS> Version 1.106
|
|
99
|
+
- Improve accent possitioning of bold script alphabet
|
|
100
|
+
- Fix integral italic correction of bold math font
|
|
101
|
+
- Add calligraphic alphabet bold math font
|
|
102
|
+
- Add upright integrals to bold math font
|
|
103
|
+
|
|
104
|
+
18 May 2012 (Khaled Hosny) <XITS> Version 1.105
|
|
105
|
+
- Remove ligatures and oldstyle figures from math font
|
|
106
|
+
- Move primes closer together
|
|
107
|
+
- Fix extensibility of combining over/under arrows
|
|
108
|
+
- Add 4 pre-built sizes for bar glyphs
|
|
109
|
+
- Initial bold math font
|
|
110
|
+
- Add under left right arrow
|
|
111
|
+
|
|
112
|
+
12 Feb 2012 (Khaled Hosny) <XITS> Version 1.104
|
|
113
|
+
- Fix various warnings reported vy `compareFamily` tool of AFDKO
|
|
114
|
+
- Fix primes size so that base and superscripted primes are identical in size
|
|
115
|
+
and a bit smaller than before
|
|
116
|
+
|
|
117
|
+
29 Nov 2011 (Khaled Hosny) <XITS> Version 1.103
|
|
118
|
+
- Remove erroneous dots from U+2A2B and add U+2A2C to XITS Bold
|
|
119
|
+
|
|
120
|
+
08 Nov 2011 (Khaled Hosny) <XITS> Version 1.102
|
|
121
|
+
- Fix inconsistent line spacing caused by inline math in MS Word
|
|
122
|
+
|
|
123
|
+
08 Oct 2011 (Khaled Hosny) <XITS> Version 1.101
|
|
124
|
+
- Support for numr and dnom features in XITS Regular
|
|
125
|
+
- Add Arabic comma to XITS Math
|
|
126
|
+
- Sync with STIXv1.1.0-beta1:
|
|
127
|
+
- New values for StackBottomShiftDown and StackBottomDisplayStyleShiftDown
|
|
128
|
+
- Sync PS private table in XITS Math
|
|
129
|
+
- Sync relevant glyph changes
|
|
130
|
+
|
|
131
|
+
18 Sep 2011 (Khaled Hosny) <XITS> Version 1.012
|
|
132
|
+
- Fix bug in \scriptscriptstyle primes with XeTeX
|
|
133
|
+
|
|
134
|
+
13 Jul 2011 (Khaled Hosny) <XITS> Version 1.011
|
|
135
|
+
- Initial right-to-left math support
|
|
136
|
+
- Add basic Arabic letters, digits and some math symbols
|
|
137
|
+
- Add support for overly accents
|
|
138
|
+
- Make uni2980, uni20E9, uni2223, uni2225, uni2AF4 and uni2AFC extensible
|
|
139
|
+
- Support math variants using variation selector (VS1)
|
|
140
|
+
- Add alternate negated symbols with vertical stroke
|
|
141
|
+
- Use the bar glyph from STIXVar.otf
|
|
142
|
+
- Fix FontForge warnings
|
|
143
|
+
- Fix swapped U+22D2 and U+22D3 glyphs
|
|
144
|
+
|
|
145
|
+
22 Apr 2011 (Khaled Hosny) <XITS> Version 1.010
|
|
146
|
+
- Make \over/underbrace and sisters less close to base glyphs
|
|
147
|
+
- Add upright integrals as stylistic set ss08
|
|
148
|
+
|
|
149
|
+
21 Apr 2011 (Khaled Hosny) <XITS> Version 1.009
|
|
150
|
+
- Don't hard code OS/2 code pages and Unicode ranges
|
|
151
|
+
- Fix StackBottomShiftDown and StackBottomDisplayStyleShiftDown math parameters
|
|
152
|
+
|
|
153
|
+
12 Jan 2011 (Khaled Hosny) <XITS> Version 1.008
|
|
154
|
+
- Fix sub/supercript positioning for uppercase script family
|
|
155
|
+
- Make \lgroup and \rgroup extensible
|
|
156
|
+
- Mark few more brackets extended shapes
|
|
157
|
+
- Make \lmoustache \rmoustache extensible
|
|
158
|
+
|
|
159
|
+
25 Oct 2010 (Khaled Hosny) <XITS> Version 1.007
|
|
160
|
+
- Add TopAccentHorizontal position to U+00B7, U+0131, U+0237, U+203E, U+22C5
|
|
161
|
+
- Add spaces and control characters U+0000-001F, U+2000-200F, U+2028-202F
|
|
162
|
+
- Tune script positioning for display integrals
|
|
163
|
+
- Disable smaller than text size integrals
|
|
164
|
+
- Rename fj ligature glyph to "f_j" for PDF search
|
|
165
|
+
- Assign un-encoded glyphs PUA code points
|
|
166
|
+
- Use U+23B7 slot for the glyph uni221A.base
|
|
167
|
+
- Change integral glyphs name suffixes to "small" and "display"
|
|
168
|
+
|
|
169
|
+
15 Jul 2010 (Khaled Hosny) <XITS> Version 1.006
|
|
170
|
+
- More italic correction to double struck alphabet
|
|
171
|
+
- Misc accents cleanup
|
|
172
|
+
- Remove wide variants of spacing accents
|
|
173
|
+
- Fine tuning of Latin and Greek top accent positioning
|
|
174
|
+
- Revise math constants, based on a default rule thickness of 66 instead of 50
|
|
175
|
+
- Draw a .notdef glyph instead of being empty, in the math font
|
|
176
|
+
- Make the bar glyph descend below the base line in the math font
|
|
177
|
+
|
|
178
|
+
08 Jul 2010 (Khaled Hosny) <XITS> Version 1.005
|
|
179
|
+
- Fix wrong style for italic double struck symbols
|
|
180
|
+
- Cover all small i and j letters in 'dtls' feature
|
|
181
|
+
- Add top accent position for math serif Greek
|
|
182
|
+
- Add vertical composition for floor and ceiling
|
|
183
|
+
- Increase RadicalDegreeBottomRaisePercent
|
|
184
|
+
- Add math bold digamma
|
|
185
|
+
- Add math bold, italic and bold italic double-struck stylistic sets
|
|
186
|
+
- Add math bold monospace digits stylistic set
|
|
187
|
+
- Add math italic sans-serif digits stylistic set
|
|
188
|
+
- Add math sans-serif Greek stylistic set
|
|
189
|
+
|
|
190
|
+
11 Jun 2010 (Khaled Hosny) <XITS> Version 1.004
|
|
191
|
+
- Fix the mysterious MS Office 2007 composition bug
|
|
192
|
+
|
|
193
|
+
10 Jun 2010 (Khaled Hosny) <XITS> Version 1.003
|
|
194
|
+
- Set OS/2 version to 4
|
|
195
|
+
- Add italic correction to math italic Greek and Latin
|
|
196
|
+
- Remove redundant math glyphs from text fonts
|
|
197
|
+
- Add 'dtls' feature and bold dotless i and j
|
|
198
|
+
- Add bold mathematical calligraphic alphabet
|
|
199
|
+
- Add mathematical calligraphic alphabet
|
|
200
|
+
|
|
201
|
+
6 Jun 2010 (Khaled Hosny) <XITS> Version 1.002
|
|
202
|
+
- Make OS/2 ascender/descender absolute values
|
|
203
|
+
- Move GSUB code to a font feature file
|
|
204
|
+
- Merge oldstyle figures from STIXNonUni* fonts
|
|
205
|
+
- Import the rest of STIXGeneral fonts
|
|
206
|
+
|
|
207
|
+
4 Jun 2010 (Khaled Hosny) <XITS Math> Version 1.001
|
|
208
|
+
- Edit various font metadata
|
|
209
|
+
- Initial release of "XITS Math"
|
|
210
|
+
- Add sub/superscript variants of primes
|
|
211
|
+
- Fix displaced \widehat and sisters
|
|
212
|
+
- Add italic correction, not all glyphs yet
|
|
213
|
+
- Fix the vertical positions of \[over|under]brace
|
|
214
|
+
- Ask FontForge to guess the BlueValues:
|
|
215
|
+
- Add 'frac' feature for text fractions
|
|
216
|
+
- Add oldstyle numbers
|
|
217
|
+
- Add Horizontal construction
|
|
218
|
+
- Add Vertical construction
|
|
219
|
+
- Add horizontal top accent position values
|
|
220
|
+
- Mark extended shapes
|
|
221
|
+
- Add horizontal variants
|
|
222
|
+
- Add vertical variants
|
|
223
|
+
- Add MATH table
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
Acknowledgements
|
|
227
|
+
-------------------------
|
|
228
|
+
If you make modifications be sure to add your name (N), email (E), web-address
|
|
229
|
+
(W) and description (D). This list is sorted by last name in alphabetical
|
|
230
|
+
order.)
|
|
231
|
+
|
|
232
|
+
N: Khaled Hosny
|
|
233
|
+
E: khaledhosny@eglug.org
|
|
234
|
+
W: https://github.com/alif-type
|
|
235
|
+
D: Engineer - OpenType MATH code
|
|
236
|
+
|
|
237
|
+
N: Daniel Benjamin Miller
|
|
238
|
+
E: dbmiller@dbmiller.org
|
|
239
|
+
W: https://dbmiller.org
|
|
240
|
+
D: Added and improved characters
|
|
241
|
+
|
|
242
|
+
N: STIX Fonts project
|
|
243
|
+
E: stix@aip.org
|
|
244
|
+
W: https://www.stixfonts.org
|
|
245
|
+
D: Original authors
|
|
246
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Copyright (c) 2001-2010, STI Pub Companies, consisting of the American Institute of Physics, the American Chemical Society, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. (www.stixfonts.org), with Reserved Font Name STIX Fonts, STIX Fonts (TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.
|
|
2
|
+
Copyright (c) 1998-2003, MicroPress, Inc. (www.micropress-inc.com), with Reserved Font Name TM Math.
|
|
3
|
+
Copyright (c) 1990, Elsevier, Inc.
|
|
4
|
+
Copyright (c) 2014, 2015, (URW)++ Design & Development.
|
|
5
|
+
Copyright (c) 2009-2019, Khaled Hosny.
|
|
6
|
+
Copyright (c) 2019, Daniel Benjamin Miller.
|
|
7
|
+
|
|
8
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
9
|
+
This license is copied below, and is also available with a FAQ at:
|
|
10
|
+
http://scripts.sil.org/OFL
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
-----------------------------------------------------------
|
|
14
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
15
|
+
-----------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
PREAMBLE
|
|
18
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
19
|
+
development of collaborative font projects, to support the font creation
|
|
20
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
21
|
+
open framework in which fonts may be shared and improved in partnership
|
|
22
|
+
with others.
|
|
23
|
+
|
|
24
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
25
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
26
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
27
|
+
redistributed and/or sold with any software provided that any reserved
|
|
28
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
29
|
+
however, cannot be released under any other type of license. The
|
|
30
|
+
requirement for fonts to remain under this license does not apply
|
|
31
|
+
to any document created using the fonts or their derivatives.
|
|
32
|
+
|
|
33
|
+
DEFINITIONS
|
|
34
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
35
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
36
|
+
include source files, build scripts and documentation.
|
|
37
|
+
|
|
38
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
39
|
+
copyright statement(s).
|
|
40
|
+
|
|
41
|
+
"Original Version" refers to the collection of Font Software components as
|
|
42
|
+
distributed by the Copyright Holder(s).
|
|
43
|
+
|
|
44
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
45
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
46
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
47
|
+
new environment.
|
|
48
|
+
|
|
49
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
50
|
+
writer or other person who contributed to the Font Software.
|
|
51
|
+
|
|
52
|
+
PERMISSION & CONDITIONS
|
|
53
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
54
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
55
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
56
|
+
Software, subject to the following conditions:
|
|
57
|
+
|
|
58
|
+
1) Neither the Font Software nor any of its individual components,
|
|
59
|
+
in Original or Modified Versions, may be sold by itself.
|
|
60
|
+
|
|
61
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
62
|
+
redistributed and/or sold with any software, provided that each copy
|
|
63
|
+
contains the above copyright notice and this license. These can be
|
|
64
|
+
included either as stand-alone text files, human-readable headers or
|
|
65
|
+
in the appropriate machine-readable metadata fields within text or
|
|
66
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
67
|
+
|
|
68
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
69
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
70
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
71
|
+
presented to the users.
|
|
72
|
+
|
|
73
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
74
|
+
Software shall not be used to promote, endorse or advertise any
|
|
75
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
76
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
77
|
+
permission.
|
|
78
|
+
|
|
79
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
80
|
+
must be distributed entirely under this license, and must not be
|
|
81
|
+
distributed under any other license. The requirement for fonts to
|
|
82
|
+
remain under this license does not apply to any document created
|
|
83
|
+
using the Font Software.
|
|
84
|
+
|
|
85
|
+
TERMINATION
|
|
86
|
+
This license becomes null and void if any of the above conditions are
|
|
87
|
+
not met.
|
|
88
|
+
|
|
89
|
+
DISCLAIMER
|
|
90
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
91
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
92
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
93
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
94
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
95
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
96
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
97
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
98
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[](https://travis-ci.com/alif-type/xits)
|
|
2
|
+
|
|
3
|
+
The XITS font project
|
|
4
|
+
======================
|
|
5
|
+
|
|
6
|
+
XITS is a Times-like typeface for mathematical and scientific publishing, based
|
|
7
|
+
on [STIX fonts][1]. The main mission of XITS is to provide a version of STIX
|
|
8
|
+
fonts enhanced with the OpenType `MATH` table, making it suitable for high
|
|
9
|
+
quality mathematic typesetting with OpenType math-capable layout systems, like
|
|
10
|
+
Microsoft Office 2007+, XeTeX and LuaTeX.
|
|
11
|
+
|
|
12
|
+
XITS fonts are distributed under the [Open Font License][2], version 1.1.
|
|
13
|
+
|
|
14
|
+
[1]: https://www.stixfonts.org
|
|
15
|
+
[2]: https://scripts.sil.org/OFL
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|