@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
|
@@ -0,0 +1,946 @@
|
|
|
1
|
+
%doge
|
|
2
|
+
当 🐶️ \rightarrow 0 时\\
|
|
3
|
+
\begin{array}{|l|l|}
|
|
4
|
+
\hline
|
|
5
|
+
\sin 🐶️ \sim 🐶️ & \tan 🐶️ \sim 🐶️\\
|
|
6
|
+
\ln(1 + 🐶️) \sim 🐶️ & e^🐶️ - 1 \sim 🐶️\\
|
|
7
|
+
\arcsin 🐶️ \sim 🐶️ & \arctan 🐶️ \sim 🐶️\\
|
|
8
|
+
\log_a(1+🐶️) \sim \frac{🐶️}{\ln a} & a^🐶️ - a \sim 🐶️\ln a\\
|
|
9
|
+
1 - \cos 🐶️ \sim \frac 12 🐶️^2 & \ln\left(🐶️+\sqrt{1+🐶️^2}\right) \sim 🐶️\\
|
|
10
|
+
🐶️-\sin🐶️ \sim \frac 16 🐶️^3 & \tan 🐶️ - 🐶️\sim \frac 13 🐶️^3\\
|
|
11
|
+
(1+🐶️)^\alpha-1 \sim \alpha🐶️ & \arcsin 🐶️ - 🐶️ \sim \frac 16 🐶️^3\\
|
|
12
|
+
\hline
|
|
13
|
+
\end{array}
|
|
14
|
+
|
|
15
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
16
|
+
|
|
17
|
+
%char
|
|
18
|
+
|
|
19
|
+
\text{
|
|
20
|
+
\char"68\char"65\char"6c\char"6c\char"6f\char"20\char"77\char"6f\char"72\char"6c\char"64\char"21\char"2665\char"fe0f\\
|
|
21
|
+
\char"4f60\char"597d\char"ff0c\char"4e16\char"754c\char"ff01\char"2665\char"fe0f\\
|
|
22
|
+
你好,世界!♥️\\
|
|
23
|
+
Unicodes with ZWJ:
|
|
24
|
+
\char"1f468\char"200d\char"1f469\char"200d\char"1f467
|
|
25
|
+
\char"1f468\char"200d\char"1f466
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
29
|
+
|
|
30
|
+
%Logo
|
|
31
|
+
\text{\mu\kern-.1em\TeX is a \LaTeX rendering library.}
|
|
32
|
+
\\
|
|
33
|
+
\text{\MicroTeX is a \LaTeX rendering library.}
|
|
34
|
+
\\
|
|
35
|
+
F(\omega)=\int_{-\infty}^{+\infty}f(t)e^{-i\omega_nt}dt
|
|
36
|
+
|
|
37
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
38
|
+
|
|
39
|
+
%Text
|
|
40
|
+
|
|
41
|
+
\text{What is real? How do you define 'real'?
|
|
42
|
+
If you're talking about what you can feel,
|
|
43
|
+
what you can smell, what you can taste and see,
|
|
44
|
+
then 'real' is simply electrical signals
|
|
45
|
+
interpreted by your brain.
|
|
46
|
+
\textbf{― Morpheus The Matrix}}
|
|
47
|
+
|
|
48
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
49
|
+
|
|
50
|
+
%Chinese
|
|
51
|
+
|
|
52
|
+
\text{这是一个 \LaTeX 排版引擎。}\\
|
|
53
|
+
\textsf{这是一个 \LaTeX 排版引擎。}\\
|
|
54
|
+
\textbf{这是一个 \LaTeX 排版引擎。}\\
|
|
55
|
+
\textit{这是一个 \LaTeX 排版引擎。}\\
|
|
56
|
+
|
|
57
|
+
\because\left\{
|
|
58
|
+
\begin{array}{ll}
|
|
59
|
+
v = v_球 + v_车\\
|
|
60
|
+
F = ma\\
|
|
61
|
+
E = \frac 12 mv^2
|
|
62
|
+
\end{array}
|
|
63
|
+
\right.
|
|
64
|
+
\\
|
|
65
|
+
\text{则有:}
|
|
66
|
+
\\
|
|
67
|
+
E = E_球 + E_车 = \frac 12mv^2
|
|
68
|
+
|
|
69
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
70
|
+
|
|
71
|
+
%Emoj test
|
|
72
|
+
F(x) = \displaystyle\int_🙂^😀f(x)dx\\
|
|
73
|
+
\log_😄️😅️=💧️\\
|
|
74
|
+
\displaystyle\sum_{i=0}^\infty💰️=🤣️\\
|
|
75
|
+
\prod_{i=0}^\infty i\times💰️=😭️\\
|
|
76
|
+
%ZWJ
|
|
77
|
+
\char"1f468+\char"1f469+\char"1f466=👨👩👦
|
|
78
|
+
|
|
79
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
80
|
+
|
|
81
|
+
%Text size
|
|
82
|
+
|
|
83
|
+
\tiny{\text{tiny text, scale = 0.5}}\\
|
|
84
|
+
\scriptsize{\text{scriptsize text, scale = 0.7}}\\
|
|
85
|
+
\footnotesize{\text{footnotsize, scale = 0.8}}\\
|
|
86
|
+
\small{\text{small text, scale = 0.9}}\\
|
|
87
|
+
\normalsize{\text{normal text, scale = 1}}\\
|
|
88
|
+
\large{\text{large text, scale = 1.2}}\\
|
|
89
|
+
\Large{\text{Large text, scale = 1.4}}\\
|
|
90
|
+
\LARGE{\text{LARGE text, scale = 1.8}}\\
|
|
91
|
+
\huge{\text{huge text, scale = 2}}\\
|
|
92
|
+
\Huge{\text{Huge text, scale = 2.5}}
|
|
93
|
+
\\
|
|
94
|
+
% resize
|
|
95
|
+
\resizebox{1em}{!}{\LaTeX}
|
|
96
|
+
\resizebox{!}{1em}{\LaTeX}
|
|
97
|
+
\resizebox{1em}{0.5em}{\LaTeX}
|
|
98
|
+
|
|
99
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
100
|
+
|
|
101
|
+
%Framed boxes
|
|
102
|
+
|
|
103
|
+
\fbox{\text{A framed box.}}\\
|
|
104
|
+
\doublebox{\text{A dobule framed box.}}\\
|
|
105
|
+
\shadowbox{\text{A shadow framed box.}}\\
|
|
106
|
+
\ovalbox{\text{An oval framed box.}}
|
|
107
|
+
|
|
108
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
109
|
+
|
|
110
|
+
%Left & middle & right
|
|
111
|
+
|
|
112
|
+
\left\{ x \middle| x \middle( x \middle) \ne\frac12\right\}
|
|
113
|
+
\\
|
|
114
|
+
\left.
|
|
115
|
+
\middle[
|
|
116
|
+
a^2+b^2
|
|
117
|
+
\middle]
|
|
118
|
+
+
|
|
119
|
+
\middle[
|
|
120
|
+
\sum\limits_{i=1}^{n}c_i
|
|
121
|
+
\middle]
|
|
122
|
+
\right.
|
|
123
|
+
\\
|
|
124
|
+
a=\left\{\Delta
|
|
125
|
+
\middle|
|
|
126
|
+
x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}
|
|
127
|
+
\middle|
|
|
128
|
+
\sum_{x=0}^{+\infty}
|
|
129
|
+
\right\}*b
|
|
130
|
+
\\
|
|
131
|
+
\lambda_l = \lim_{q \to 0^+}P\left(X_2 \leq F_2^{(-1)}(q)
|
|
132
|
+
\middle|
|
|
133
|
+
x_1 \leq F_1^{(-1)}(q)
|
|
134
|
+
\right)
|
|
135
|
+
\\
|
|
136
|
+
\lambda_l = \lim_{q \to 0^+}P\bigl(X_2 \leq F_2^{(-1)}(q)
|
|
137
|
+
\big|
|
|
138
|
+
x_1 \leq F_1^{(-1)}(q)
|
|
139
|
+
\bigr)
|
|
140
|
+
\\
|
|
141
|
+
{n \choose x}
|
|
142
|
+
{n \brack x}
|
|
143
|
+
{n \brace x}
|
|
144
|
+
{n \bangle x}
|
|
145
|
+
\\
|
|
146
|
+
\binom{n}{k} = \frac{n!}{k!(n-k)!}
|
|
147
|
+
|
|
148
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
149
|
+
|
|
150
|
+
%Fractions
|
|
151
|
+
\sfrac 12 + x + e^{\sfrac 12}\\
|
|
152
|
+
\ln e^{\sfrac 12} = \sfrac 12
|
|
153
|
+
\\
|
|
154
|
+
{x \above 10pt y}
|
|
155
|
+
{x \atop y}
|
|
156
|
+
{x \over y}
|
|
157
|
+
\frac{x}{y}
|
|
158
|
+
\\
|
|
159
|
+
{a \overwithdelims [] b}
|
|
160
|
+
{a+1 \overwithdelims .| b+2} + x
|
|
161
|
+
\\
|
|
162
|
+
{a+1 \atopwithdelims [] b}
|
|
163
|
+
{a+1 \atopwithdelims .| b} + x
|
|
164
|
+
\\
|
|
165
|
+
{a+1 \abovewithdelims [] 10pt b}
|
|
166
|
+
{a+1 \abovewithdelims .| 10pt b} + x
|
|
167
|
+
\\
|
|
168
|
+
x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}
|
|
169
|
+
\\
|
|
170
|
+
\genfrac[]{1pt}{0}{a+b}{c}a
|
|
171
|
+
\\
|
|
172
|
+
\genfrac[]{0pt}{0}{a+b}{c}b
|
|
173
|
+
\\
|
|
174
|
+
\frac{1}{1+
|
|
175
|
+
\frac{1}{1+x}}+a
|
|
176
|
+
\\
|
|
177
|
+
\frac{1}{1 + x}+a
|
|
178
|
+
\\
|
|
179
|
+
\frac{1}{1+
|
|
180
|
+
\frac{1}{1+
|
|
181
|
+
\frac{1}{1+
|
|
182
|
+
\frac{1}{1+
|
|
183
|
+
\frac{1}{1 + x}}}}}
|
|
184
|
+
\\
|
|
185
|
+
\cfrac{1}{1+
|
|
186
|
+
\cfrac{1}{1+
|
|
187
|
+
\cfrac{1}{1+
|
|
188
|
+
\cfrac{1}{1+
|
|
189
|
+
\cfrac{1}{1 + x}}}}}
|
|
190
|
+
|
|
191
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
192
|
+
|
|
193
|
+
%Radicals
|
|
194
|
+
|
|
195
|
+
\sqrt[4]{a}\\
|
|
196
|
+
\sqrt[\sum_{x=0}^{\infty}]{a}\sqrt{f}\\
|
|
197
|
+
\sqrt[\sum_{x=0}^{\infty}]{\sum\limits_{M=0}^{\xrightarrow[under]{above}}}
|
|
198
|
+
|
|
199
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
200
|
+
|
|
201
|
+
%X arrows
|
|
202
|
+
|
|
203
|
+
A\xleftarrow[\text{under}]{\text{above}}B
|
|
204
|
+
A\xrightarrow[\text{under}]{\text{above}}B\\
|
|
205
|
+
A\xleftrightarrow[\text{under}]{\text{above}}B
|
|
206
|
+
A\xRightarrow[\text{under}]{\text{above}}B\\
|
|
207
|
+
A\xLeftarrow[\text{under}]{\text{above}}B
|
|
208
|
+
A\xLeftrightarrow[\text{under}]{\text{above}}B\\
|
|
209
|
+
A\xhookleftarrow[\text{under}]{\text{above}}B
|
|
210
|
+
A\xhookrightarrow[\text{under}]{\text{above}}B\\
|
|
211
|
+
A\xmapsto[\text{under}]{\text{above}}B\\
|
|
212
|
+
A\xrightharpoondown[\text{under}]{\text{above}}B
|
|
213
|
+
A\xrightharpoonup[\text{under}]{\text{above}}B\\
|
|
214
|
+
A\xleftharpoondown[\text{under}]{\text{above}}B
|
|
215
|
+
A\xleftharpoonup[\text{under}]{\text{above}}B\\
|
|
216
|
+
A\xrightleftharpoons[\text{under}]{\text{above}}B
|
|
217
|
+
A\xleftrightharpoons[\text{under}]{\text{above}}B
|
|
218
|
+
|
|
219
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
220
|
+
|
|
221
|
+
%Over and under arrows
|
|
222
|
+
|
|
223
|
+
\overrightarrow{a+b+c}\\
|
|
224
|
+
\overleftarrow{a+b+c}\\
|
|
225
|
+
\overleftrightarrow{a+b+c}\\
|
|
226
|
+
\underrightarrow{a+b+c}\\
|
|
227
|
+
\underleftarrow{a+b+c}\\
|
|
228
|
+
\underleftrightarrow{a+b+c}
|
|
229
|
+
|
|
230
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
231
|
+
|
|
232
|
+
%Over and under delimiters
|
|
233
|
+
|
|
234
|
+
\overbrace{a+b-c\div e\times f}^\text{total}\\
|
|
235
|
+
\underbrace{a+b-c\div e\times f}_\text{total}\\
|
|
236
|
+
\overbrace{a+b}\underbrace{a+b}\\
|
|
237
|
+
\overbrack{a+b-c\div e\times f}\\
|
|
238
|
+
\underbrack{a+b-c\div e\times f}\\
|
|
239
|
+
\overbrack{a+b}\underbrack{a+b}\\
|
|
240
|
+
\overparen{a+b-c\div e\times f}\\
|
|
241
|
+
\underparen{a+b-c\div e\times f}\\
|
|
242
|
+
\overparen{a+b}\underparen{a+b}\\
|
|
243
|
+
\overline{a+b-c\div e\times f}\\
|
|
244
|
+
\underline{a+b-c\div e\times f}
|
|
245
|
+
|
|
246
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
247
|
+
|
|
248
|
+
%Delimiters
|
|
249
|
+
|
|
250
|
+
\Biggl(\biggl(\Bigl(\bigl(()\bigr)\Bigr)\biggr)\Biggr)
|
|
251
|
+
\\
|
|
252
|
+
\Biggl[\biggl[\Bigl[\bigl[[]\bigr]\Bigr]\biggr]\Biggr]
|
|
253
|
+
\\
|
|
254
|
+
\Biggl\{\biggl\{\Bigl\{\bigl\{\{\}\bigr\}\Bigr\}\biggr\}\Biggr\}
|
|
255
|
+
\\
|
|
256
|
+
\Biggl|\biggl|\Bigl|\bigl|||\bigr|\Bigr|\biggr|\Biggr|
|
|
257
|
+
|
|
258
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
259
|
+
|
|
260
|
+
%Cumulative scripts
|
|
261
|
+
M_x''' M'''_x M^{'''}_x M_x{'''} M^{\prime\backprime}
|
|
262
|
+
\\
|
|
263
|
+
M`M``M```M````
|
|
264
|
+
\\
|
|
265
|
+
M'M''M'''M''''M'''''
|
|
266
|
+
\\
|
|
267
|
+
M'^y M^y' M`^y M^y`
|
|
268
|
+
|
|
269
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
270
|
+
|
|
271
|
+
%Sidesets
|
|
272
|
+
|
|
273
|
+
\sideset{_x^y}{_a^b}\int_{M=0}^na \\
|
|
274
|
+
\sideset{_x^y}{_c^d}\sum_{M=0}^n \\
|
|
275
|
+
\int\limits_{M=0}^n \\
|
|
276
|
+
\sideset{_*^*}{_*^*}\prod_{i=0}^\infty x_i \\
|
|
277
|
+
|
|
278
|
+
\sideset{^\backprime}{'}
|
|
279
|
+
\sum_{x=1}^{\infty} x
|
|
280
|
+
\sideset{a_1^2}{}\sum_{x=1}^\infty x_0
|
|
281
|
+
\\
|
|
282
|
+
\sideset{_\text{left bottom}'''}{_{\text{right bottom}}'''}
|
|
283
|
+
\sum_{\text{quite long text}}^\infty x
|
|
284
|
+
\\
|
|
285
|
+
\sideset{}{'}
|
|
286
|
+
\sum_{n<k,\;\text{$n$ odd}} nE_n
|
|
287
|
+
\\
|
|
288
|
+
\sideset{}{'}
|
|
289
|
+
\sum^{n<k,\;\text{$n$ odd}} nE_n
|
|
290
|
+
\\
|
|
291
|
+
|
|
292
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
293
|
+
|
|
294
|
+
%Font styles
|
|
295
|
+
\textcolor{magenta}{mathbf:}\\
|
|
296
|
+
\mathbf{0123456789}\\
|
|
297
|
+
\mathbf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
298
|
+
\mathbf{abcdefghijklmnopqrstuvwxyz}\\
|
|
299
|
+
\mathbf{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
300
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
301
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
302
|
+
|
|
303
|
+
\mathbf{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
304
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
305
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
306
|
+
|
|
307
|
+
\mathbf{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
308
|
+
\Digamma\digamma}\\
|
|
309
|
+
|
|
310
|
+
\textcolor{magenta}{mathrm:}\\
|
|
311
|
+
\mathrm{0123456789}\\
|
|
312
|
+
\mathrm{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
313
|
+
\mathrm{abcdefghijklmnopqrstuvwxyz}\\
|
|
314
|
+
\mathrm{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
315
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
316
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
317
|
+
|
|
318
|
+
\mathrm{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
319
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
320
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
321
|
+
|
|
322
|
+
\mathrm{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
323
|
+
\Digamma\digamma}\\
|
|
324
|
+
|
|
325
|
+
\textcolor{magenta}{mathcal:}\\
|
|
326
|
+
\mathcal{0123456789}\\
|
|
327
|
+
\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
328
|
+
\mathcal{abcdefghijklmnopqrstuvwxyz}\\
|
|
329
|
+
\mathcal{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
330
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
331
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
332
|
+
|
|
333
|
+
\mathcal{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
334
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
335
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
336
|
+
|
|
337
|
+
\mathcal{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
338
|
+
\Digamma\digamma}\\
|
|
339
|
+
|
|
340
|
+
\textcolor{magenta}{mathscr:}\\
|
|
341
|
+
\mathscr{0123456789}\\
|
|
342
|
+
\mathscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
343
|
+
\mathscr{abcdefghijklmnopqrstuvwxyz}\\
|
|
344
|
+
\mathscr{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
345
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
346
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
347
|
+
|
|
348
|
+
\mathscr{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
349
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
350
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
351
|
+
|
|
352
|
+
\mathscr{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
353
|
+
\Digamma\digamma}\\
|
|
354
|
+
|
|
355
|
+
\textcolor{magenta}{mathfrak:}\\
|
|
356
|
+
\mathfrak{0123456789}\\
|
|
357
|
+
\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
358
|
+
\mathfrak{abcdefghijklmnopqrstuvwxyz}\\
|
|
359
|
+
\mathfrak{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
360
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
361
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
362
|
+
|
|
363
|
+
\mathfrak{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
364
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
365
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
366
|
+
|
|
367
|
+
\mathfrak{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
368
|
+
\Digamma\digamma}\\
|
|
369
|
+
|
|
370
|
+
\textcolor{magenta}{mathit:}\\
|
|
371
|
+
\mathit{0123456789}\\
|
|
372
|
+
\mathit{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
373
|
+
\mathit{abcdefghijklmnopqrstuvwxyz}\\
|
|
374
|
+
\mathit{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
375
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
376
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
377
|
+
|
|
378
|
+
\mathit{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
379
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
380
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
381
|
+
|
|
382
|
+
\mathit{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
383
|
+
\Digamma\digamma}\\
|
|
384
|
+
|
|
385
|
+
\textcolor{magenta}{mathbb:}\\
|
|
386
|
+
\mathbb{0123456789}\\
|
|
387
|
+
\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
388
|
+
\mathbb{abcdefghijklmnopqrstuvwxyz}\\
|
|
389
|
+
\mathbb{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
390
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
391
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
392
|
+
|
|
393
|
+
\mathbb{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
394
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
395
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
396
|
+
|
|
397
|
+
\mathbb{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
398
|
+
\Digamma\digamma}\\
|
|
399
|
+
|
|
400
|
+
\textcolor{magenta}{mathsf:}\\
|
|
401
|
+
\mathsf{0123456789}\\
|
|
402
|
+
\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
403
|
+
\mathsf{abcdefghijklmnopqrstuvwxyz}\\
|
|
404
|
+
\mathsf{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
405
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
406
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
407
|
+
|
|
408
|
+
\mathsf{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
409
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
410
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
411
|
+
|
|
412
|
+
\mathsf{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
413
|
+
\Digamma\digamma}\\
|
|
414
|
+
|
|
415
|
+
\textcolor{magenta}{mathtt:}\\
|
|
416
|
+
\mathtt{0123456789}\\
|
|
417
|
+
\mathtt{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
418
|
+
\mathtt{abcdefghijklmnopqrstuvwxyz}\\
|
|
419
|
+
\mathtt{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
420
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
421
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
422
|
+
|
|
423
|
+
\mathtt{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
424
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
425
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
426
|
+
|
|
427
|
+
\mathtt{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
428
|
+
\Digamma\digamma}\\
|
|
429
|
+
|
|
430
|
+
\textcolor{magenta}{mathbfit:}\\
|
|
431
|
+
\mathbfit{0123456789}\\
|
|
432
|
+
\mathbfit{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
433
|
+
\mathbfit{abcdefghijklmnopqrstuvwxyz}\\
|
|
434
|
+
\mathbfit{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
435
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
436
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
437
|
+
|
|
438
|
+
\mathbfit{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
439
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
440
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
441
|
+
|
|
442
|
+
\mathbfit{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
443
|
+
\Digamma\digamma}\\
|
|
444
|
+
|
|
445
|
+
\textcolor{magenta}{mathbfcal:}\\
|
|
446
|
+
\mathbfcal{0123456789}\\
|
|
447
|
+
\mathbfcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
448
|
+
\mathbfcal{abcdefghijklmnopqrstuvwxyz}\\
|
|
449
|
+
\mathbfcal{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
450
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
451
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
452
|
+
|
|
453
|
+
\mathbfcal{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
454
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
455
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
456
|
+
|
|
457
|
+
\mathbfcal{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
458
|
+
\Digamma\digamma}\\
|
|
459
|
+
|
|
460
|
+
\textcolor{magenta}{mathbffrak:}\\
|
|
461
|
+
\mathbffrak{0123456789}\\
|
|
462
|
+
\mathbffrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
463
|
+
\mathbffrak{abcdefghijklmnopqrstuvwxyz}\\
|
|
464
|
+
\mathbffrak{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
465
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
466
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
467
|
+
|
|
468
|
+
\mathbffrak{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
469
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
470
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
471
|
+
|
|
472
|
+
\mathbffrak{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
473
|
+
\Digamma\digamma}\\
|
|
474
|
+
|
|
475
|
+
\textcolor{magenta}{mathsfbf:}\\
|
|
476
|
+
\mathsfbf{0123456789}\\
|
|
477
|
+
\mathsfbf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
478
|
+
\mathsfbf{abcdefghijklmnopqrstuvwxyz}\\
|
|
479
|
+
\mathsfbf{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
480
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
481
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
482
|
+
|
|
483
|
+
\mathsfbf{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
484
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
485
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
486
|
+
|
|
487
|
+
\mathsfbf{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
488
|
+
\Digamma\digamma}\\
|
|
489
|
+
|
|
490
|
+
\textcolor{magenta}{mathsfit:}\\
|
|
491
|
+
\mathsfit{0123456789}\\
|
|
492
|
+
\mathsfit{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
493
|
+
\mathsfit{abcdefghijklmnopqrstuvwxyz}\\
|
|
494
|
+
\mathsfit{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
495
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
496
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
497
|
+
|
|
498
|
+
\mathsfit{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
499
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
500
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
501
|
+
|
|
502
|
+
\mathsfit{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
503
|
+
\Digamma\digamma}\\
|
|
504
|
+
|
|
505
|
+
\textcolor{magenta}{mathsfbfit:}\\
|
|
506
|
+
\mathsfbfit{0123456789}\\
|
|
507
|
+
\mathsfbfit{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\\
|
|
508
|
+
\mathsfbfit{abcdefghijklmnopqrstuvwxyz}\\
|
|
509
|
+
\mathsfbfit{\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
510
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
511
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla}\\
|
|
512
|
+
|
|
513
|
+
\mathsfbfit{\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
514
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
515
|
+
\upsilon\phi\chi\psi\omega}\\
|
|
516
|
+
|
|
517
|
+
\mathsfbfit{\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
518
|
+
\Digamma\digamma}\\
|
|
519
|
+
|
|
520
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
521
|
+
|
|
522
|
+
%Ligtures
|
|
523
|
+
|
|
524
|
+
% plain
|
|
525
|
+
\text{plain: ff fi fl ffi ffl}
|
|
526
|
+
\\
|
|
527
|
+
% fractions
|
|
528
|
+
\text{fractions: 1/2 3/4 1/5 2/5}
|
|
529
|
+
|
|
530
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
531
|
+
|
|
532
|
+
%Greeks
|
|
533
|
+
\Alpha\Beta\Gamma\Delta\Epsilon\Zeta\Eta\Theta\Iota
|
|
534
|
+
\Kappa\Lambda\Mu\Nu\Xi\Omicron\Pi\Rho\Sigma\Tau
|
|
535
|
+
\Upsilon\Phi\Chi\Psi\Omega\nabla
|
|
536
|
+
\\
|
|
537
|
+
\alpha\beta\gamma\delta\epsilon\zeta\eta\theta\iota
|
|
538
|
+
\kappa\lambda\mu\nu\xi\omicron\pi\rho\sigma\tau
|
|
539
|
+
\upsilon\phi\chi\psi\omega
|
|
540
|
+
\\
|
|
541
|
+
\partial\varepsilon\varkappa\varphi\varrho\varpi
|
|
542
|
+
\Digamma\digamma
|
|
543
|
+
|
|
544
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
545
|
+
|
|
546
|
+
%italics
|
|
547
|
+
|
|
548
|
+
TVYfab
|
|
549
|
+
|
|
550
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
551
|
+
|
|
552
|
+
%Z stack test
|
|
553
|
+
\stackinset{l}{0.2em}{b}{}{%
|
|
554
|
+
\fgcolor{#55ff0000}{\rule{1em}{1em}}
|
|
555
|
+
}{%
|
|
556
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
557
|
+
}
|
|
558
|
+
\kern10pt
|
|
559
|
+
\stackinset{l}{-0.2em}{b}{}{%
|
|
560
|
+
\fgcolor{#55ff0000}{\rule{1em}{1em}}
|
|
561
|
+
}{%
|
|
562
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
563
|
+
}
|
|
564
|
+
\kern10pt
|
|
565
|
+
\stackinset{l}{-0.2em}{b}{}{%
|
|
566
|
+
\fgcolor{#55ff0000}{\rule{2em}{1em}}
|
|
567
|
+
}{%
|
|
568
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
569
|
+
}
|
|
570
|
+
\kern10pt
|
|
571
|
+
\stackinset{l}{-1.1em}{b}{}{%
|
|
572
|
+
\fgcolor{#55ff0000}{\rule{2em}{1em}}
|
|
573
|
+
}{%
|
|
574
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
575
|
+
}
|
|
576
|
+
\\
|
|
577
|
+
\stackinset{c}{}{b}{}{%
|
|
578
|
+
\fgcolor{#55ff0000}{\rule{0.5em}{0.5em}}
|
|
579
|
+
}{%
|
|
580
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
581
|
+
}
|
|
582
|
+
\kern10pt
|
|
583
|
+
\stackinset{c}{-0.1em}{b}{}{%
|
|
584
|
+
\fgcolor{#55ff0000}{\rule{0.5em}{0.5em}}
|
|
585
|
+
}{%
|
|
586
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
587
|
+
}
|
|
588
|
+
\kern10pt
|
|
589
|
+
\stackinset{c}{-0.2em}{b}{}{%
|
|
590
|
+
\fgcolor{#55ff0000}{\rule{2em}{0.5em}}
|
|
591
|
+
}{%
|
|
592
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
593
|
+
}
|
|
594
|
+
\kern10pt
|
|
595
|
+
\stackinset{c}{-1em}{b}{}{%
|
|
596
|
+
\fgcolor{#55ff0000}{\rule{2em}{0.5em}}
|
|
597
|
+
}{%
|
|
598
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
599
|
+
}
|
|
600
|
+
\\
|
|
601
|
+
\stackinset{r}{}{b}{}{%
|
|
602
|
+
\fgcolor{#55ff0000}{\rule{0.5em}{0.5em}}
|
|
603
|
+
}{%
|
|
604
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
605
|
+
}
|
|
606
|
+
\kern10pt
|
|
607
|
+
\stackinset{r}{-0.1em}{b}{}{%
|
|
608
|
+
\fgcolor{#55ff0000}{\rule{0.5em}{0.5em}}
|
|
609
|
+
}{%
|
|
610
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
611
|
+
}
|
|
612
|
+
\kern10pt
|
|
613
|
+
\stackinset{r}{1em}{b}{}{%
|
|
614
|
+
\fgcolor{#55ff0000}{\rule{2em}{0.5em}}
|
|
615
|
+
}{%
|
|
616
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
617
|
+
}
|
|
618
|
+
\kern10pt
|
|
619
|
+
\stackinset{r}{0.5em}{b}{}{%
|
|
620
|
+
\fgcolor{#55ff0000}{\rule{2em}{0.5em}}
|
|
621
|
+
}{%
|
|
622
|
+
\fgcolor{#5500ff00}{\rule{1em}{1em}}
|
|
623
|
+
}
|
|
624
|
+
\\
|
|
625
|
+
\stackinset{l}{}{b}{}{%
|
|
626
|
+
\fgcolor{#55ff0000}{f}
|
|
627
|
+
}{%
|
|
628
|
+
\fgcolor{#5500ff00}{a}
|
|
629
|
+
}
|
|
630
|
+
\kern10pt
|
|
631
|
+
\stackinset{l}{}{t}{}{%
|
|
632
|
+
\fgcolor{#55ff0000}{f}
|
|
633
|
+
}{%
|
|
634
|
+
\fgcolor{#5500ff00}{a}
|
|
635
|
+
}
|
|
636
|
+
\kern10pt
|
|
637
|
+
\stackinset{c}{}{c}{10pt}{%
|
|
638
|
+
\fgcolor{#55ff0000}{a}
|
|
639
|
+
}{%
|
|
640
|
+
\fgcolor{#5500ff00}{f}
|
|
641
|
+
}
|
|
642
|
+
\kern10pt
|
|
643
|
+
\stackinset{c}{}{c}{-.3ex}{*}{0}
|
|
644
|
+
\\
|
|
645
|
+
\stackinset{c}{}{B}{}{%
|
|
646
|
+
\fgcolor{#55ff0000}{a}
|
|
647
|
+
}{%
|
|
648
|
+
\fgcolor{#5500ff00}{f}
|
|
649
|
+
}
|
|
650
|
+
\stackinset{c}{}{B}{0.1em}{%
|
|
651
|
+
\fgcolor{#55ff0000}{a}
|
|
652
|
+
}{%
|
|
653
|
+
\fgcolor{#5500ff00}{f}
|
|
654
|
+
}
|
|
655
|
+
\stackinset{c}{}{B}{-0.1em}{%
|
|
656
|
+
\fgcolor{#55ff0000}{a}
|
|
657
|
+
}{%
|
|
658
|
+
\fgcolor{#5500ff00}{f}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
662
|
+
|
|
663
|
+
%Scripts test
|
|
664
|
+
f_a {f_a}_a f^a \hat{f}^a {f^a}^a \\
|
|
665
|
+
|
|
666
|
+
a_x^2 f_x^2 f_{M=0}^{+\infty} A_x^2 \\
|
|
667
|
+
|
|
668
|
+
f_{\overset{!}{=}}^{\overset{\delta}{2}}
|
|
669
|
+
f_{\stackrel[a]{M=0}{f}}a
|
|
670
|
+
|
|
671
|
+
\stackinset{l}{}{B}{}{
|
|
672
|
+
\fgcolor{#55ff0000}{\sum_x^y}
|
|
673
|
+
}{
|
|
674
|
+
\fgcolor{#550000ff}{\sum_x}
|
|
675
|
+
}\\
|
|
676
|
+
|
|
677
|
+
% with math kern
|
|
678
|
+
\Gamma_x^y\Tau_x^y\\
|
|
679
|
+
|
|
680
|
+
% boxed
|
|
681
|
+
{maf}_x^y\\
|
|
682
|
+
{ma\sum}_x^ya\\
|
|
683
|
+
\sum_{x_{x_x}}^{y^{y^y}}
|
|
684
|
+
|
|
685
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
686
|
+
|
|
687
|
+
%Stack test
|
|
688
|
+
\stackrel[a]{!}{=}\\
|
|
689
|
+
\stackrel[f]{!}{=}\\
|
|
690
|
+
\stackrel[!]{f}{=}\\
|
|
691
|
+
\stackrel[a]{M=0}{=}
|
|
692
|
+
|
|
693
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
694
|
+
|
|
695
|
+
%Orphan symbols
|
|
696
|
+
\imath\jmath\nabla\partial\epsilon\vartheta\phi
|
|
697
|
+
\varkappa\varrho\varpi
|
|
698
|
+
|
|
699
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
700
|
+
|
|
701
|
+
%Accent test
|
|
702
|
+
\hat{a}\check{a}\tilde{a}\acute{a}\dot{a}\ddot{a}
|
|
703
|
+
\breve{a}\bar{a}\vec{a}\mathring{a}
|
|
704
|
+
\hat{,}\\
|
|
705
|
+
\widehat{aa}\widetilde{abcd}
|
|
706
|
+
\hat{\hat{A}}
|
|
707
|
+
\\
|
|
708
|
+
%fake accent
|
|
709
|
+
\accentset{\star}{d}
|
|
710
|
+
\accentset{\diamond}{h}
|
|
711
|
+
\tilde{\accentset{\circ}{\phi}}
|
|
712
|
+
|
|
713
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
714
|
+
|
|
715
|
+
%Cyrillic and Greek alphabet
|
|
716
|
+
\begin{array}{lr}
|
|
717
|
+
\mbox{\textcolor{Blue}{Russian}}&\mbox{\textcolor{Melon}{Greek}}\\
|
|
718
|
+
\mbox{привет мир}&\mbox{γειά κόσμο}\\
|
|
719
|
+
\mbox{привет мир}&\mbox{γειά κόσμο}\\
|
|
720
|
+
\textbf{\mbox{привет мир}}&\textbf{\mbox{γειά κόσμο}}\\
|
|
721
|
+
\textit{\mbox{привет мир}}&\textit{\mbox{γειά κόσμο}}\\
|
|
722
|
+
\textsf{\mbox{привет мир}}&\textsf{\mbox{γειά κόσμο}}\\
|
|
723
|
+
\texttt{\mbox{привет мир}}&\texttt{\mbox{γειά κόσμο}}\\
|
|
724
|
+
\textbf{\textit{\mbox{привет мир}}}&\textbf{\textit{\mbox{γειά κόσμο}}}\\
|
|
725
|
+
\textbf{\textsf{\mbox{привет мир}}}&\textbf{\textsf{\mbox{γειά κόσμο}}}\\
|
|
726
|
+
\textsf{\textit{\mbox{привет мир}}}&\textsf{\textit{\mbox{γειά κόσμο}}}\\
|
|
727
|
+
&\\
|
|
728
|
+
\mbox{\textcolor{Salmon}{Bulgarian}}&\mbox{\textcolor{Tan}{Serbian}}\\
|
|
729
|
+
\mbox{здравей свят}&\mbox{Хелло уорлд}\\
|
|
730
|
+
&\\
|
|
731
|
+
\mbox{\textcolor{Turquoise}{Bielorussian}}&\mbox{\textcolor{LimeGreen}{Ukrainian}}\\
|
|
732
|
+
\mbox{прывітаньне Свет}&\mbox{привіт світ}\\
|
|
733
|
+
\end{array}
|
|
734
|
+
|
|
735
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
736
|
+
|
|
737
|
+
%Complex formula test
|
|
738
|
+
\begin{array}{l}
|
|
739
|
+
\forall\varepsilon\in\mathbb{R}_+^*\ \exists\eta>0\ |x-x_0|\leq\eta\Longrightarrow|f(x)-f(x_0)|\leq\varepsilon\\
|
|
740
|
+
\det
|
|
741
|
+
\begin{bmatrix}
|
|
742
|
+
a_{11}&a_{12}&\cdots&a_{1n}\\
|
|
743
|
+
a_{21}&\ddots&&\vdots\\
|
|
744
|
+
\vdots&&\ddots&\vdots\\
|
|
745
|
+
a_{n1}&\cdots&\cdots&a_{nn}
|
|
746
|
+
\end{bmatrix}
|
|
747
|
+
\overset{\mathrm{def}}{=}\sum_{\sigma\in\mathfrak{S}_n}\varepsilon(\sigma)\prod_{k=1}^n a_{k\sigma(k)}\\
|
|
748
|
+
\sideset{_\alpha^\beta}{_\gamma^\delta}{\begin{pmatrix}a&b\\c&d\end{pmatrix}}\\
|
|
749
|
+
\int_0^\infty{x^{2n} e^{-a x^2}\,dx} = \frac{2n-1}{2a}
|
|
750
|
+
\int_0^\infty{x^{2(n-1)} e^{-a x^2}\,dx} = \frac{(2n-1)!!}{2^{n+1}} \sqrt{\frac{\pi}{a^{2n+1}}}\\
|
|
751
|
+
\int_a^b{f(x)\,dx} = (b - a) \sum\limits_{n = 1}^\infty
|
|
752
|
+
{\sum\limits_{m = 1}^{2^n - 1} {\left( { - 1} \right)^{m + 1} } } 2^{ - n} f(a + m\left( {b - a} \right)2^{-n} )\\
|
|
753
|
+
\int_{-\pi}^{\pi} \sin(\alpha x) \sin^n(\beta x) dx = \textstyle{\left \{
|
|
754
|
+
\begin{array}{cc}
|
|
755
|
+
(-1)^{(n+1)/2} (-1)^m \frac{2 \pi}{2^n} \binom{n}{m} & n \mbox{ odd},\ \alpha = \beta (2m-n) \\
|
|
756
|
+
0 & \mbox{otherwise} \\ \end{array} \right .}\\
|
|
757
|
+
L = \int_a^b \sqrt{ \left|\sum_{i,j=1}^ng_{ij}(\gamma(t))\left(\frac{d}{dt}x^i\circ\gamma(t)\right)
|
|
758
|
+
\left(\frac{d}{dt}x^j\circ\gamma(t)\right)\right|}\,dt\\
|
|
759
|
+
\begin{array}{rl}
|
|
760
|
+
s &= \int_a^b\left\|\frac{d}{dt}\vec{r}\,(u(t),v(t))\right\|\,dt \\
|
|
761
|
+
&= \int_a^b \sqrt{u'(t)^2\,\vec{r}_u\cdot\vec{r}_u + 2u'(t)v'(t)\, \vec{r}_u\cdot
|
|
762
|
+
\vec{r}_v+ v'(t)^2\,\vec{r}_v\cdot\vec{r}_v}\,\,\, dt.
|
|
763
|
+
\end{array}\\
|
|
764
|
+
\end{array}
|
|
765
|
+
|
|
766
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
767
|
+
|
|
768
|
+
\definecolor{gris}{gray}{0.9}
|
|
769
|
+
\definecolor{noir}{rgb}{0,0,0}
|
|
770
|
+
\definecolor{bleu}{rgb}{0,0,1}
|
|
771
|
+
\fatalIfCmdConflict{false}
|
|
772
|
+
\newcommand{\pa}{\left|}
|
|
773
|
+
\begin{array}{c}
|
|
774
|
+
\LaTeX\\
|
|
775
|
+
\begin{split}
|
|
776
|
+
|I_2| &= \pa\int_0^T\psi(t)\left\{ u(a,t)-\int_{\gamma(t)}^a \frac{d\theta}{k} (\theta,t) \int_a^\theta c(\xi)
|
|
777
|
+
u_t (\xi,t)\,d\xi\right\}dt\right|\\
|
|
778
|
+
&\le C_6 \Bigg|\pa f \int_\Omega \pa\widetilde{S}^{-1,0}_{a,-}
|
|
779
|
+
W_2(\Omega, \Gamma_1)\right|\ \right|\left| |u|\overset{\circ}{\to} W_2^{\widetilde{A}}(\Omega\Gamma_r,T)\right|\Bigg|\\
|
|
780
|
+
&\\
|
|
781
|
+
&\begin{pmatrix}
|
|
782
|
+
\alpha&\beta&\gamma&\delta\\
|
|
783
|
+
\aleph&\beth&\gimel&\daleth\\
|
|
784
|
+
\mathfrak{A}&\mathfrak{B}&\mathfrak{C}&\mathfrak{D}\\
|
|
785
|
+
\boldsymbol{\mathfrak{a}}&\boldsymbol{\mathfrak{b}}&\boldsymbol{\mathfrak{c}}&\boldsymbol{\mathfrak{d}}
|
|
786
|
+
\end{pmatrix}
|
|
787
|
+
\quad{(a+b)}^{\frac{n}{2}}=\sqrt{\sum_{k=0}^n\tbinom{n}{k}a^kb^{n-k}}\quad
|
|
788
|
+
\Biggl(\biggl(\Bigl(\bigl(()\bigr)\Bigr)\biggr)\Biggr)\\
|
|
789
|
+
&\forall\varepsilon\in\mathbb{R}_+^*\ \exists\eta>0\ |x-x_0|\leq\eta\Longrightarrow|f(x)-f(x_0)|\leq\varepsilon\\
|
|
790
|
+
&\det
|
|
791
|
+
\begin{bmatrix}
|
|
792
|
+
a_{11}&a_{12}&\cdots&a_{1n}\\
|
|
793
|
+
a_{21}&\ddots&&\vdots\\
|
|
794
|
+
\vdots&&\ddots&\vdots\\
|
|
795
|
+
a_{n1}&\cdots&\cdots&a_{nn}
|
|
796
|
+
\end{bmatrix}
|
|
797
|
+
\overset{\mathrm{def}}{=}\sum_{\sigma\in\mathfrak{S}_n}\varepsilon(\sigma)\prod_{k=1}^n a_{k\sigma(k)}\\
|
|
798
|
+
&\Delta f(x,y)=\frac{\partial^2f}{\partial x^2}+\frac{\partial^2f}{\partial y^2}\qquad\qquad \fcolorbox{noir}{gris}
|
|
799
|
+
{n!\underset{n\rightarrow+\infty}{\sim} {\left(\frac{n}{e}\right)}^n\sqrt{2\pi n}}\\
|
|
800
|
+
&\sideset{_\alpha^\beta}{_\gamma^\delta}{
|
|
801
|
+
\begin{pmatrix}
|
|
802
|
+
a&b\\
|
|
803
|
+
c&d
|
|
804
|
+
\end{pmatrix}}
|
|
805
|
+
\xrightarrow[T]{n\pm i-j}\sideset{^t}{}A\xleftarrow{\overrightarrow{u}\wedge\overrightarrow{v}}
|
|
806
|
+
\underleftrightarrow{\iint_{\mathds{R}^2}e^{-\left(x^2+y^2\right)}\,\mathrm{d}x\mathrm{d}y}
|
|
807
|
+
\end{split}\\
|
|
808
|
+
\rotatebox{30}{\sum_{n=1}^{+\infty}}\quad\mbox{Mirror rorriM}\reflectbox{\mbox{Mirror rorriM}}
|
|
809
|
+
\end{array}
|
|
810
|
+
|
|
811
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
812
|
+
|
|
813
|
+
\begin{array}{|c|l|||r|c|}
|
|
814
|
+
\hline
|
|
815
|
+
\text{Matrix}&\multicolumn{2}{|c|}{\text{Multicolumns}}&\text{Font sizes commands}\cr
|
|
816
|
+
\hline
|
|
817
|
+
\begin{pmatrix}
|
|
818
|
+
\alpha_{11}&\cdots&\alpha_{1n}\cr
|
|
819
|
+
\hdotsfor{3}\cr
|
|
820
|
+
\alpha_{n1}&\cdots&\alpha_{nn}
|
|
821
|
+
\end{pmatrix}
|
|
822
|
+
&\Large \text{Large Right}&\small \text{small Left}&\tiny \text{tiny Tiny}\cr
|
|
823
|
+
\hline
|
|
824
|
+
\multicolumn{4}{|c|}{\Huge \text{Huge Multicolumns}}\cr
|
|
825
|
+
\hline
|
|
826
|
+
\end{array}
|
|
827
|
+
|
|
828
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
829
|
+
|
|
830
|
+
\cornersize{0.2}
|
|
831
|
+
\begin{array}{cc}
|
|
832
|
+
\fbox{\text{A framed box with 🥰}}&\shadowbox{\text{A shadowed box}}\cr
|
|
833
|
+
\doublebox{\text{A double framed box}}&\ovalbox{\text{An oval framed box}}\cr
|
|
834
|
+
\end{array}
|
|
835
|
+
|
|
836
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
837
|
+
|
|
838
|
+
%Table test
|
|
839
|
+
\newcolumntype{s}{>{\color{#1234B6}}c}
|
|
840
|
+
\begin{array}{|c|c|c|s|}
|
|
841
|
+
\hline
|
|
842
|
+
\rowcolor{Tan}\multicolumn{4}{|c|}{\textcolor{white}{\bold{\text{Table Head}}}}\\
|
|
843
|
+
\hline
|
|
844
|
+
\text{Matrix}&\multicolumn{2}{|c|}{\text{Multicolumns}}&\text{Font size commands}\\
|
|
845
|
+
\hline
|
|
846
|
+
\begin{pmatrix}
|
|
847
|
+
\alpha_{11}&\cdots&\alpha_{1n}\\
|
|
848
|
+
\hdotsfor{3}\\
|
|
849
|
+
\alpha_{n1}&\cdots&\alpha_{nn}
|
|
850
|
+
\end{pmatrix}
|
|
851
|
+
&\large \text{Left}&\cellcolor{#00bde5}\small \textcolor{white}{\text{\bold{Right}}}
|
|
852
|
+
&\small \text{small Small}\\
|
|
853
|
+
\hline
|
|
854
|
+
\multicolumn{4}{|c|}{\text{Table Foot}}\\
|
|
855
|
+
\hline
|
|
856
|
+
\end{array}
|
|
857
|
+
|
|
858
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
859
|
+
|
|
860
|
+
\rlap{\overbrace{\phantom{1 + a + b + \cdots + z}}^{\text{total + 1}}}
|
|
861
|
+
1 + \underbrace{a + b + \cdots + z}_{\text{total}}
|
|
862
|
+
\\
|
|
863
|
+
\frac{a\cancel{b}}{\cancel{b}} = a;
|
|
864
|
+
\frac{a\bcancel{b}}{\bcancel{b}} = a;
|
|
865
|
+
\frac{a\xcancel{b}}{\xcancel{b}} = a;
|
|
866
|
+
\\
|
|
867
|
+
\text{A long division: }\longdiv{12345}{13}
|
|
868
|
+
|
|
869
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
870
|
+
|
|
871
|
+
\left\{
|
|
872
|
+
\begin{array}{l}
|
|
873
|
+
2a < -1,\\
|
|
874
|
+
a + 8 \ge 5,
|
|
875
|
+
\end{array}
|
|
876
|
+
\right.
|
|
877
|
+
\\
|
|
878
|
+
P_{r-j}=\begin{cases}
|
|
879
|
+
0& \text{if $r-j$ is odd},\\
|
|
880
|
+
r!\,(-1)^{(r-j)/2}& \text{if $r-j$ is even}.
|
|
881
|
+
\end{cases}\text{Cases}
|
|
882
|
+
\\
|
|
883
|
+
P_{r-j}=\left\{\begin{array}{@{}ll@{\,}}
|
|
884
|
+
0& \text{if $r-j$ is odd},\\
|
|
885
|
+
r!\,(-1)^{(r-j)/2}& \text{if $r-j$ is even}.
|
|
886
|
+
\end{array}\right.\text{Cases}
|
|
887
|
+
\\
|
|
888
|
+
P_{r-j}=\begin{cases}
|
|
889
|
+
4-x\geq 0 \\
|
|
890
|
+
3-x\geq 1
|
|
891
|
+
\end{cases}\text{Cases}
|
|
892
|
+
\\
|
|
893
|
+
\left\{\begin{array}{@{}ll}
|
|
894
|
+
1 & 2\\
|
|
895
|
+
3 & 4
|
|
896
|
+
\end{array}\right.\text{Equation}
|
|
897
|
+
\\
|
|
898
|
+
\left\{\begin{array}{l@{}l}
|
|
899
|
+
1 & 2\\
|
|
900
|
+
3 & 4
|
|
901
|
+
\end{array}\right.\text{Equation}
|
|
902
|
+
\\
|
|
903
|
+
\left\{\begin{array}{ll@{}}
|
|
904
|
+
1 & 2\\
|
|
905
|
+
3 & 4
|
|
906
|
+
\end{array}\right.\text{Equation}
|
|
907
|
+
\\
|
|
908
|
+
\begin{split}
|
|
909
|
+
H_c&=\frac{1}{2n} \sum^n_{l=0}(-1)^{l}(n-{l})^{p-2}
|
|
910
|
+
\sum_{l _1+\dots+ l _p=l}\prod^p_{i=1} \binom{n_i}{l _i}\\
|
|
911
|
+
&\quad\cdot[(n-l )-(n_i-l _i)]^{n_i-l _i}\cdot
|
|
912
|
+
\Bigl[(n-l )^2-\sum^p_{j=1}(n_i-l _i)^2\Bigr].
|
|
913
|
+
\end{split}
|
|
914
|
+
\\
|
|
915
|
+
\begin{align}
|
|
916
|
+
A_1&=N_0(\lambda;\Omega')-\phi(\lambda;\Omega'),\\
|
|
917
|
+
A_2&=\phi(\lambda;\Omega')-\phi(\lambda;\Omega),\\
|
|
918
|
+
\intertext{and}
|
|
919
|
+
A_3&=\mathcal{N}(\lambda;\omega).
|
|
920
|
+
\end{align}
|
|
921
|
+
|
|
922
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
923
|
+
|
|
924
|
+
\frac{\sum_{n > 0} z^n}
|
|
925
|
+
{\prod_{1\leq k\leq n} (1-q^k)}
|
|
926
|
+
\\
|
|
927
|
+
\frac{{\displaystyle\sum_{n > 0} z^n}}
|
|
928
|
+
{{\displaystyle\prod_{1\leq k\leq n} (1-q^k)}}
|
|
929
|
+
\\
|
|
930
|
+
\frac{{\displaystyle\sum\nolimits_{n> 0} z^n}}
|
|
931
|
+
{{\displaystyle\prod\nolimits_{1\leq k\leq n} (1-q^k)}}
|
|
932
|
+
|
|
933
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
934
|
+
|
|
935
|
+
\cfrac{1}{\sqrt{2}+
|
|
936
|
+
\cfrac{1}{\sqrt{2}+
|
|
937
|
+
\cfrac{1}{\sqrt{2}+\dotsb
|
|
938
|
+
}}}
|
|
939
|
+
\\
|
|
940
|
+
\biggl[
|
|
941
|
+
\sum_i a_i\biggl\lvert\sum_j x_{ij}
|
|
942
|
+
\biggr\rvert^p\biggr]^{1/p}
|
|
943
|
+
\\
|
|
944
|
+
\biggl[
|
|
945
|
+
\sum_i a_i\Bigl\lvert\sum_j x_{ij}
|
|
946
|
+
\Bigr\rvert^p\biggr]^{1/p}
|