init ctai
This commit is contained in:
parent
ae8225b2ce
commit
eda1c1a2e9
260
3rdparty/MicroTeX/CMakeLists.txt
vendored
Normal file
260
3rdparty/MicroTeX/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,260 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(LaTeX)
|
||||
|
||||
add_library(LaTeX "")
|
||||
FIND_PACKAGE(Qt6 REQUIRED Core Gui Widgets)
|
||||
if (MSVC)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
add_compile_options("/utf-8")
|
||||
target_compile_features(LaTeX PUBLIC cxx_std_17)
|
||||
else ()
|
||||
|
||||
# check if compiler has c++11/c++17 support
|
||||
|
||||
include(CheckCXXCompilerFlag)
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++17" COMPILER_SUPPORTS_CXX17)
|
||||
CHECK_CXX_COMPILER_FLAG("-std=c++20" COMPILER_SUPPORTS_CXX20)
|
||||
|
||||
# check gcc version
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
||||
if ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 9)
|
||||
# needs extra lib to use std::filesystem
|
||||
target_link_libraries(LaTeX PUBLIC "stdc++fs")
|
||||
endif ()
|
||||
if ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 8)
|
||||
# dose not have full c++17 features
|
||||
set(COMPILER_SUPPORTS_CXX17 OFF)
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
if (COMPILER_SUPPORTS_CXX20)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++20")
|
||||
elseif (COMPILER_SUPPORTS_CXX17)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17")
|
||||
elseif (COMPILER_SUPPORTS_CXX11)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
else ()
|
||||
message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no c++11 support. Please use a different one that supports c++11.")
|
||||
endif ()
|
||||
endif ()
|
||||
# copy res dir
|
||||
|
||||
file(COPY res DESTINATION .)
|
||||
if (MSVC)
|
||||
find_package(tinyxml2 CONFIG REQUIRED)
|
||||
target_link_libraries(LaTeX PRIVATE tinyxml2::tinyxml2)
|
||||
else ()
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(tinyxml2 REQUIRED IMPORTED_TARGET tinyxml2)
|
||||
target_link_libraries(LaTeX PRIVATE tinyxml2)
|
||||
endif ()
|
||||
|
||||
# source files
|
||||
target_sources(LaTeX PRIVATE
|
||||
# atom folder
|
||||
src/atom/atom_basic.cpp
|
||||
src/atom/atom_char.cpp
|
||||
src/atom/atom_impl.cpp
|
||||
src/atom/atom_matrix.cpp
|
||||
src/atom/atom_row.cpp
|
||||
src/atom/atom_space.cpp
|
||||
src/atom/colors_def.cpp
|
||||
src/atom/unit_conversion.cpp
|
||||
# box folder
|
||||
src/box/box.cpp
|
||||
src/box/box_factory.cpp
|
||||
src/box/box_group.cpp
|
||||
src/box/box_single.cpp
|
||||
# core folder
|
||||
src/core/core.cpp
|
||||
src/core/formula.cpp
|
||||
src/core/formula_def.cpp
|
||||
src/core/glue.cpp
|
||||
src/core/localized_num.cpp
|
||||
src/core/macro.cpp
|
||||
src/core/macro_def.cpp
|
||||
src/core/macro_impl.cpp
|
||||
src/core/parser.cpp
|
||||
# fonts folder
|
||||
src/fonts/alphabet.cpp
|
||||
src/fonts/font_basic.cpp
|
||||
src/fonts/font_info.cpp
|
||||
src/fonts/fonts.cpp
|
||||
# utils folder
|
||||
src/utils/string_utils.cpp
|
||||
src/utils/utf.cpp
|
||||
src/utils/utils.cpp
|
||||
# res folder
|
||||
src/res/builtin/formula_mappings.res.cpp
|
||||
src/res/builtin/symbol_mapping.res.cpp
|
||||
src/res/builtin/tex_param.res.cpp
|
||||
src/res/builtin/tex_symbols.res.cpp
|
||||
src/res/font/bi10.def.cpp
|
||||
src/res/font/bx10.def.cpp
|
||||
src/res/font/cmbsy10.def.cpp
|
||||
src/res/font/cmbx10.def.cpp
|
||||
src/res/font/cmbxti10.def.cpp
|
||||
src/res/font/cmex10.def.cpp
|
||||
src/res/font/cmmi10.def.cpp
|
||||
src/res/font/cmmi10_unchanged.def.cpp
|
||||
src/res/font/cmmib10.def.cpp
|
||||
src/res/font/cmmib10_unchanged.def.cpp
|
||||
src/res/font/cmr10.def.cpp
|
||||
src/res/font/cmss10.def.cpp
|
||||
src/res/font/cmssbx10.def.cpp
|
||||
src/res/font/cmssi10.def.cpp
|
||||
src/res/font/cmsy10.def.cpp
|
||||
src/res/font/cmti10.def.cpp
|
||||
src/res/font/cmti10_unchanged.def.cpp
|
||||
src/res/font/cmtt10.def.cpp
|
||||
src/res/font/dsrom10.def.cpp
|
||||
src/res/font/eufb10.def.cpp
|
||||
src/res/font/eufm10.def.cpp
|
||||
src/res/font/i10.def.cpp
|
||||
src/res/font/moustache.def.cpp
|
||||
src/res/font/msam10.def.cpp
|
||||
src/res/font/msbm10.def.cpp
|
||||
src/res/font/r10.def.cpp
|
||||
src/res/font/r10_unchanged.def.cpp
|
||||
src/res/font/rsfs10.def.cpp
|
||||
src/res/font/sb10.def.cpp
|
||||
src/res/font/sbi10.def.cpp
|
||||
src/res/font/si10.def.cpp
|
||||
src/res/font/special.def.cpp
|
||||
src/res/font/ss10.def.cpp
|
||||
src/res/font/stmary10.def.cpp
|
||||
src/res/font/tt10.def.cpp
|
||||
src/res/parser/font_parser.cpp
|
||||
src/res/parser/formula_parser.cpp
|
||||
src/res/reg/builtin_font_reg.cpp
|
||||
src/res/reg/builtin_syms_reg.cpp
|
||||
src/res/sym/amsfonts.def.cpp
|
||||
src/res/sym/amssymb.def.cpp
|
||||
src/res/sym/base.def.cpp
|
||||
src/res/sym/stmaryrd.def.cpp
|
||||
src/res/sym/symspecial.def.cpp
|
||||
|
||||
src/latex.cpp
|
||||
src/render.cpp
|
||||
)
|
||||
target_include_directories(LaTeX PUBLIC src)
|
||||
|
||||
# check operating system
|
||||
|
||||
if (QT)
|
||||
message(STATUS, "Cross platform build using Qt")
|
||||
target_compile_definitions(LaTeX PUBLIC -DBUILD_QT)
|
||||
find_package(QT NAMES Qt6 Qt5 COMPONENTS Gui Widgets PrintSupport REQUIRED)
|
||||
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Gui Widgets PrintSupport REQUIRED)
|
||||
target_sources(LaTeX PRIVATE
|
||||
src/platform/qt/graphic_qt.cpp
|
||||
)
|
||||
target_link_libraries(LaTeX PRIVATE
|
||||
Qt${QT_VERSION_MAJOR}::Gui
|
||||
)
|
||||
#add_executable(LaTeXQtSample
|
||||
# src/samples/qt_texwidget.cpp
|
||||
# src/samples/qt_mainwindow.cpp
|
||||
# src/samples/qt_main.cpp
|
||||
# )
|
||||
#target_link_libraries(LaTeXQtSample PRIVATE
|
||||
# Qt${QT_VERSION_MAJOR}::Widgets
|
||||
# Qt${QT_VERSION_MAJOR}::PrintSupport
|
||||
# LaTeX)
|
||||
#set_target_properties(LaTeXQtSample PROPERTIES OUTPUT_NAME LaTeX)
|
||||
#set_target_properties(LaTeXQtSample PROPERTIES AUTOMOC ON)
|
||||
elseif (SKIA)
|
||||
message(STATUS, "Cross platform build using Qt and Skia for rendering")
|
||||
target_compile_definitions(LaTeX PUBLIC -DBUILD_SKIA -DSK_GL)
|
||||
target_include_directories(LaTeX PUBLIC src)
|
||||
if (MSVC)
|
||||
find_package(skia REQUIRED)
|
||||
target_link_libraries(LaTeX INTERFACE skia skia::skia)
|
||||
else ()
|
||||
include_directories(../skia ../skia/include)
|
||||
link_directories(../skia)
|
||||
endif ()
|
||||
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Widgets REQUIRED)
|
||||
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Widgets REQUIRED)
|
||||
target_sources(LaTeX PRIVATE
|
||||
src/platform/skia/graphic_skia.cpp
|
||||
)
|
||||
target_link_libraries(LaTeX PRIVATE
|
||||
Qt${QT_VERSION_MAJOR}::Core
|
||||
)
|
||||
add_executable(LaTeXQtSkiaSample
|
||||
src/samples/qt_skiatexwidget.cpp
|
||||
src/samples/qt_mainwindow.cpp
|
||||
src/samples/qt_main.cpp
|
||||
)
|
||||
target_link_libraries(LaTeXQtSkiaSample PRIVATE
|
||||
Qt${QT_VERSION_MAJOR}::Widgets LaTeX)
|
||||
set_target_properties(LaTeXQtSkiaSample PROPERTIES OUTPUT_NAME LaTeX)
|
||||
set_target_properties(LaTeXQtSkiaSample PROPERTIES AUTOMOC ON)
|
||||
elseif (WIN32)
|
||||
message(STATUS "We are working on Windows")
|
||||
target_compile_definitions(LaTeX PUBLIC -DBUILD_WIN32 -D_HAS_STD_BYTE=0)
|
||||
add_executable(LaTeXWin32Sample WIN32
|
||||
src/platform/gdi_win/graphic_win32.cpp
|
||||
src/samples/win32_main.cpp
|
||||
)
|
||||
target_link_libraries(LaTeXWin32Sample PRIVATE gdiplus LaTeX)
|
||||
set_target_properties(LaTeXWin32Sample PROPERTIES OUTPUT_NAME LaTeX)
|
||||
elseif (UNIX)
|
||||
message(STATUS "We are working with GTK on a Unix like OS")
|
||||
target_compile_definitions(LaTeX PUBLIC -DBUILD_GTK)
|
||||
find_package(Fontconfig REQUIRED)
|
||||
pkg_check_modules(GTKMM REQUIRED IMPORTED_TARGET gtkmm-3.0)
|
||||
pkg_check_modules(GSVMM REQUIRED IMPORTED_TARGET gtksourceviewmm-3.0)
|
||||
pkg_check_modules(CairoMM REQUIRED IMPORTED_TARGET cairomm-1.0)
|
||||
target_sources(LaTeX PRIVATE
|
||||
src/platform/cairo/graphic_cairo.cpp
|
||||
)
|
||||
target_link_libraries(LaTeX PRIVATE
|
||||
PkgConfig::GTKMM #include <pangomm/fontdescription.h>
|
||||
PkgConfig::CairoMM #include <cairomm/context.h>
|
||||
Fontconfig::Fontconfig
|
||||
)
|
||||
add_executable(LaTeXGtkSample
|
||||
src/samples/gtkmm_main.cpp
|
||||
)
|
||||
target_link_libraries(LaTeXGtkSample PRIVATE
|
||||
PkgConfig::GSVMM
|
||||
LaTeX
|
||||
)
|
||||
set_target_properties(LaTeXGtkSample PROPERTIES OUTPUT_NAME LaTeX)
|
||||
else ()
|
||||
message(STATUS "We are working on a unknown platform")
|
||||
# other platforms...
|
||||
endif ()
|
||||
|
||||
# compile options
|
||||
|
||||
option(HAVE_LOG "If enable log" OFF)
|
||||
if (HAVE_LOG)
|
||||
#add_definitions(-DHAVE_LOG)
|
||||
endif ()
|
||||
|
||||
option(GRAPHICS_DEBUG "If enable graphics debug" OFF)
|
||||
if (GRAPHICS_DEBUG)
|
||||
#add_definitions(-DGRAPHICS_DEBUG)
|
||||
endif ()
|
||||
|
||||
option(MEM_CHECK "If compile for memory check only" OFF)
|
||||
if (MEM_CHECK)
|
||||
#add_definitions(-DMEM_CHECK)
|
||||
endif ()
|
||||
|
||||
option(QT "Compile using Qt instead of Win32/Gtk" ON)
|
||||
|
||||
|
||||
option(BUILD_EXAMPLE "Build examples" OFF)
|
||||
if (BUILD_EXAMPLE)
|
||||
#add_subdirectory(example)
|
||||
endif ()
|
||||
|
||||
21
3rdparty/MicroTeX/LICENSE
vendored
Normal file
21
3rdparty/MicroTeX/LICENSE
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2020 Nano Michael
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
9
3rdparty/MicroTeX/example/CMakeLists.txt
vendored
Normal file
9
3rdparty/MicroTeX/example/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
add_executable(latex2png latex2png.cpp)
|
||||
|
||||
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Gui REQUIRED)
|
||||
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui REQUIRED)
|
||||
target_link_libraries(latex2png PRIVATE
|
||||
LaTeX
|
||||
Qt${QT_VERSION_MAJOR}::Core
|
||||
Qt${QT_VERSION_MAJOR}::Gui
|
||||
)
|
||||
76
3rdparty/MicroTeX/example/latex2png.cpp
vendored
Normal file
76
3rdparty/MicroTeX/example/latex2png.cpp
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
//
|
||||
// Created by pikachu on 2021/5/11.
|
||||
//
|
||||
|
||||
|
||||
#include "latex.h"
|
||||
#include "platform/qt/graphic_qt.h"
|
||||
#include <QGuiApplication>
|
||||
#include <QFile>
|
||||
#include <QCommandLineParser>
|
||||
#include <QDebug>
|
||||
#include <QPainter>
|
||||
#include <QPixmap>
|
||||
#include <QTimer>
|
||||
|
||||
class TexGuard {
|
||||
public:
|
||||
TexGuard() {
|
||||
tex::LaTeX::init();
|
||||
}
|
||||
|
||||
~TexGuard() {
|
||||
tex::LaTeX::release();
|
||||
}
|
||||
};
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
QGuiApplication app(argc, argv);
|
||||
TexGuard texGuard;
|
||||
#ifdef BUILD_SKIA
|
||||
initGL();
|
||||
#endif
|
||||
if (argc != 3) {
|
||||
qDebug() << "Usage: latex2png tex_name png_name";
|
||||
return 1;
|
||||
}
|
||||
for (int i = 0; i < argc; i++) {
|
||||
qDebug() << i << argv[i];
|
||||
}
|
||||
QString texName = argv[1];
|
||||
QString pngName = argv[2];
|
||||
if (!pngName.endsWith(".png")) {
|
||||
pngName += ".png";
|
||||
}
|
||||
QFile file(texName);
|
||||
if (!file.exists()) {
|
||||
qDebug() << "file not exist." << texName;
|
||||
return 2;
|
||||
}
|
||||
auto ok = file.open(QIODevice::ReadOnly);
|
||||
if (!ok) {
|
||||
qDebug() << "file open fail." << texName;
|
||||
return 3;
|
||||
}
|
||||
QString latex = file.readAll();
|
||||
qDebug() << latex;
|
||||
auto render = tex::LaTeX::parse(
|
||||
latex.toStdWString(),
|
||||
600 - 0 * 2,
|
||||
20,
|
||||
20 / 3.f,
|
||||
0xff424242);
|
||||
qDebug() << render->getWidth() << render->getHeight();
|
||||
QPixmap img(render->getWidth(), render->getHeight());
|
||||
img.fill(Qt::white);
|
||||
QPainter painter(&img);
|
||||
painter.setRenderHint(QPainter::Antialiasing, true);
|
||||
tex::Graphics2D_qt g2(&painter);
|
||||
render->draw(g2, 0, 0);
|
||||
ok = img.save(pngName);
|
||||
if (!ok) {
|
||||
qDebug() << "save image fail." << pngName;
|
||||
return 4;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
74
3rdparty/MicroTeX/latex.qrc
vendored
Normal file
74
3rdparty/MicroTeX/latex.qrc
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>res/cyrillic/cyrillic.map.xml</file>
|
||||
<file>res/cyrillic/language_cyrillic.xml</file>
|
||||
<file>res/cyrillic/mappings_cyrillic.xml</file>
|
||||
<file>res/cyrillic/symbols_cyrillic.xml</file>
|
||||
<file>res/cyrillic/wnbx10.ttf</file>
|
||||
<file>res/cyrillic/wnbx10.xml</file>
|
||||
<file>res/cyrillic/wnbxti10.ttf</file>
|
||||
<file>res/cyrillic/wnbxti10.xml</file>
|
||||
<file>res/cyrillic/wnr10.ttf</file>
|
||||
<file>res/cyrillic/wnr10.xml</file>
|
||||
<file>res/cyrillic/wnss10.ttf</file>
|
||||
<file>res/cyrillic/wnss10.xml</file>
|
||||
<file>res/cyrillic/wnssbx10.ttf</file>
|
||||
<file>res/cyrillic/wnssbx10.xml</file>
|
||||
<file>res/cyrillic/wnssi10.ttf</file>
|
||||
<file>res/cyrillic/wnssi10.xml</file>
|
||||
<file>res/cyrillic/wnti10.ttf</file>
|
||||
<file>res/cyrillic/wnti10.xml</file>
|
||||
<file>res/cyrillic/wntt10.ttf</file>
|
||||
<file>res/cyrillic/wntt10.xml</file>
|
||||
<file>res/fonts/base/cmex10.ttf</file>
|
||||
<file>res/fonts/base/cmmi10.ttf</file>
|
||||
<file>res/fonts/base/cmmib10.ttf</file>
|
||||
<file>res/fonts/euler/eufb10.ttf</file>
|
||||
<file>res/fonts/euler/eufm10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmbx10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmbxti10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmss10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmssbx10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmssi10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmti10.ttf</file>
|
||||
<file>res/fonts/latin/optional/cmtt10.ttf</file>
|
||||
<file>res/fonts/latin/bi10.ttf</file>
|
||||
<file>res/fonts/latin/bx10.ttf</file>
|
||||
<file>res/fonts/latin/cmr10.ttf</file>
|
||||
<file>res/fonts/latin/i10.ttf</file>
|
||||
<file>res/fonts/latin/r10.ttf</file>
|
||||
<file>res/fonts/latin/sb10.ttf</file>
|
||||
<file>res/fonts/latin/sbi10.ttf</file>
|
||||
<file>res/fonts/latin/si10.ttf</file>
|
||||
<file>res/fonts/latin/ss10.ttf</file>
|
||||
<file>res/fonts/latin/tt10.ttf</file>
|
||||
<file>res/fonts/maths/optional/dsrom10.ttf</file>
|
||||
<file>res/fonts/maths/cmbsy10.ttf</file>
|
||||
<file>res/fonts/maths/cmsy10.ttf</file>
|
||||
<file>res/fonts/maths/msam10.ttf</file>
|
||||
<file>res/fonts/maths/msbm10.ttf</file>
|
||||
<file>res/fonts/maths/rsfs10.ttf</file>
|
||||
<file>res/fonts/maths/special.ttf</file>
|
||||
<file>res/fonts/maths/stmary10.ttf</file>
|
||||
<file>res/greek/fcmbipg.ttf</file>
|
||||
<file>res/greek/fcmbipg.xml</file>
|
||||
<file>res/greek/fcmbpg.ttf</file>
|
||||
<file>res/greek/fcmbpg.xml</file>
|
||||
<file>res/greek/fcmripg.ttf</file>
|
||||
<file>res/greek/fcmripg.xml</file>
|
||||
<file>res/greek/fcmrpg.ttf</file>
|
||||
<file>res/greek/fcmrpg.xml</file>
|
||||
<file>res/greek/fcsbpg.ttf</file>
|
||||
<file>res/greek/fcsbpg.xml</file>
|
||||
<file>res/greek/fcsropg.ttf</file>
|
||||
<file>res/greek/fcsropg.xml</file>
|
||||
<file>res/greek/fcsrpg.ttf</file>
|
||||
<file>res/greek/fcsrpg.xml</file>
|
||||
<file>res/greek/fctrpg.ttf</file>
|
||||
<file>res/greek/fctrpg.xml</file>
|
||||
<file>res/greek/greek.map.xml</file>
|
||||
<file>res/greek/language_greek.xml</file>
|
||||
<file>res/greek/mappings_greek.xml</file>
|
||||
<file>res/greek/symbols_greek.xml</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
507
3rdparty/MicroTeX/prebuilt/otf_clm.py
vendored
Normal file
507
3rdparty/MicroTeX/prebuilt/otf_clm.py
vendored
Normal file
@ -0,0 +1,507 @@
|
||||
#!/usr/bin/python2
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Parse open-type font file and convert to `clm` format file
|
||||
|
||||
import json
|
||||
import sys
|
||||
from functools import reduce, partial
|
||||
import fontforge
|
||||
import struct
|
||||
|
||||
|
||||
def chain(*fs):
|
||||
def _chain(f, g):
|
||||
return lambda x: g(f(x))
|
||||
return reduce(_chain, fs, lambda x: x)
|
||||
|
||||
|
||||
def fmap(f, it):
|
||||
return [j for i in it for j in f(i)]
|
||||
|
||||
|
||||
def do(f, x):
|
||||
f(x)
|
||||
return x
|
||||
|
||||
|
||||
def do_loop(f, xs):
|
||||
for x in xs:
|
||||
f(x)
|
||||
return xs
|
||||
|
||||
|
||||
def find_first(xs, predicate):
|
||||
for x in xs:
|
||||
if predicate(x):
|
||||
return x
|
||||
return None
|
||||
|
||||
|
||||
def read_math_consts(font):
|
||||
m = font.math
|
||||
return [
|
||||
m.ScriptPercentScaleDown,
|
||||
m.ScriptScriptPercentScaleDown,
|
||||
m.DelimitedSubFormulaMinHeight,
|
||||
m.DisplayOperatorMinHeight,
|
||||
m.MathLeading,
|
||||
m.AxisHeight,
|
||||
m.AccentBaseHeight,
|
||||
m.FlattenedAccentBaseHeight,
|
||||
m.SubscriptShiftDown,
|
||||
m.SubscriptTopMax,
|
||||
m.SubscriptBaselineDropMin,
|
||||
m.SuperscriptShiftUp,
|
||||
m.SuperscriptShiftUpCramped,
|
||||
m.SuperscriptBottomMin,
|
||||
m.SuperscriptBaselineDropMax,
|
||||
m.SubSuperscriptGapMin,
|
||||
m.SuperscriptBottomMaxWithSubscript,
|
||||
m.SpaceAfterScript,
|
||||
m.UpperLimitGapMin,
|
||||
m.UpperLimitBaselineRiseMin,
|
||||
m.LowerLimitGapMin,
|
||||
m.LowerLimitBaselineDropMin,
|
||||
m.StackTopShiftUp,
|
||||
m.StackTopDisplayStyleShiftUp,
|
||||
m.StackBottomShiftDown,
|
||||
m.StackBottomDisplayStyleShiftDown,
|
||||
m.StackGapMin,
|
||||
m.StackDisplayStyleGapMin,
|
||||
m.StretchStackTopShiftUp,
|
||||
m.StretchStackBottomShiftDown,
|
||||
m.StretchStackGapAboveMin,
|
||||
m.StretchStackGapBelowMin,
|
||||
m.FractionNumeratorShiftUp,
|
||||
m.FractionNumeratorDisplayStyleShiftUp,
|
||||
m.FractionDenominatorShiftDown,
|
||||
m.FractionDenominatorDisplayStyleShiftDown,
|
||||
m.FractionNumeratorGapMin,
|
||||
m.FractionNumeratorDisplayStyleGapMin,
|
||||
m.FractionRuleThickness,
|
||||
m.FractionDenominatorGapMin,
|
||||
m.FractionDenominatorDisplayStyleGapMin,
|
||||
m.SkewedFractionHorizontalGap,
|
||||
m.SkewedFractionVerticalGap,
|
||||
m.OverbarVerticalGap,
|
||||
m.OverbarRuleThickness,
|
||||
m.OverbarExtraAscender,
|
||||
m.UnderbarVerticalGap,
|
||||
m.UnderbarRuleThickness,
|
||||
m.UnderbarExtraDescender,
|
||||
m.RadicalVerticalGap,
|
||||
m.RadicalDisplayStyleVerticalGap,
|
||||
m.RadicalRuleThickness,
|
||||
m.RadicalExtraAscender,
|
||||
m.RadicalKernBeforeDegree,
|
||||
m.RadicalKernAfterDegree,
|
||||
m.RadicalDegreeBottomRaisePercent,
|
||||
m.MinConnectorOverlap
|
||||
]
|
||||
|
||||
|
||||
def read_metrics(glyph):
|
||||
'''
|
||||
Return a tuple to represents metrics, in (width, height, depth) order
|
||||
'''
|
||||
bounding_box = glyph.boundingBox()
|
||||
return (
|
||||
glyph.width,
|
||||
bounding_box[2],
|
||||
-bounding_box[1]
|
||||
)
|
||||
|
||||
|
||||
def read_variants(get_variants):
|
||||
'''
|
||||
Return a array of glyph names to represents variants
|
||||
'''
|
||||
variants = get_variants()
|
||||
if not variants:
|
||||
return []
|
||||
return variants.split(' ')
|
||||
|
||||
|
||||
def read_glyph_assembly(get_assembly):
|
||||
'''
|
||||
Return a tuple
|
||||
(
|
||||
italics_correction,
|
||||
(
|
||||
(glyph_name, flag, start_connector_length, end_connector_length, full_advance),
|
||||
...
|
||||
)
|
||||
)
|
||||
'''
|
||||
return get_assembly()
|
||||
|
||||
|
||||
def read_math_kern_record(glyph):
|
||||
'''
|
||||
Return a tuple contains 4 elements in clockwise direction, None means not represent
|
||||
(
|
||||
((correction_height, kerning), ...),
|
||||
None,
|
||||
...
|
||||
)
|
||||
'''
|
||||
return (
|
||||
glyph.mathKern.topLeft,
|
||||
glyph.mathKern.topRight,
|
||||
glyph.mathKern.bottomLeft,
|
||||
glyph.mathKern.bottomRight,
|
||||
)
|
||||
|
||||
|
||||
def read_math(glyph):
|
||||
return (
|
||||
glyph.italicCorrection,
|
||||
glyph.topaccent,
|
||||
read_variants(lambda: glyph.horizontalVariants),
|
||||
read_variants(lambda: glyph.verticalVariants),
|
||||
read_glyph_assembly(lambda: (
|
||||
glyph.horizontalComponentItalicCorrection,
|
||||
glyph.horizontalComponents,
|
||||
)),
|
||||
read_glyph_assembly(lambda: (
|
||||
glyph.verticalComponentItalicCorrection,
|
||||
glyph.verticalComponents,
|
||||
)),
|
||||
read_math_kern_record(glyph),
|
||||
)
|
||||
|
||||
|
||||
def read_kern(glyph, kern_subtable_names):
|
||||
'''
|
||||
Return array of tuples represents kerning
|
||||
[
|
||||
(glyph_name, kerning),
|
||||
...
|
||||
]
|
||||
'''
|
||||
return chain(
|
||||
partial(fmap, lambda subtable_name: glyph.getPosSub(subtable_name)),
|
||||
# only care about horizontal kerning
|
||||
partial(filter, lambda kern_info: kern_info[5] != 0),
|
||||
partial(map, lambda kern_info: (kern_info[2], kern_info[5],))
|
||||
)(kern_subtable_names)
|
||||
|
||||
|
||||
def read_glyph(glyph, is_math_font, kern_subtable_names):
|
||||
'''
|
||||
Return a tuple
|
||||
(
|
||||
metrics,
|
||||
kerning,
|
||||
math
|
||||
)
|
||||
'''
|
||||
return (
|
||||
read_metrics(glyph),
|
||||
read_kern(glyph, kern_subtable_names),
|
||||
None if not is_math_font else read_math(glyph),
|
||||
)
|
||||
|
||||
|
||||
def _read_lookup_subtables(
|
||||
font, is_target_lookup=lambda x: True, is_target_subtable=lambda x: True):
|
||||
'''
|
||||
Return a function to get the subtable names
|
||||
'''
|
||||
def _is_target_lookup(lookup_name):
|
||||
lookup_info = font.getLookupInfo(lookup_name)
|
||||
return lookup_info and is_target_lookup(lookup_info)
|
||||
|
||||
return chain(
|
||||
partial(filter, _is_target_lookup),
|
||||
partial(fmap, lambda lookup_name: font.getLookupSubtables(lookup_name)),
|
||||
partial(filter, is_target_subtable)
|
||||
)
|
||||
|
||||
|
||||
def read_kern_subtables(font):
|
||||
'''
|
||||
Return array of kerning subtable name
|
||||
'''
|
||||
return _read_lookup_subtables(
|
||||
font,
|
||||
lambda lookup_info: lookup_info[0] == 'gpos_pair',
|
||||
lambda subtable_name: not font.isKerningClass(subtable_name)
|
||||
)(font.gpos_lookups)
|
||||
|
||||
|
||||
def read_ligature_subtables(font):
|
||||
'''
|
||||
Return array of ligture subtable name
|
||||
'''
|
||||
return _read_lookup_subtables(
|
||||
font,
|
||||
lambda lookup_info: lookup_info[0] == 'gsub_ligature',
|
||||
)(font.gsub_lookups)
|
||||
|
||||
|
||||
def read_ligatures(glyph, liga_subtable_names):
|
||||
'''
|
||||
Return array of ligatures info represents by this glyph
|
||||
[
|
||||
((glyph_name, glyph_name, ...), glyph_id),
|
||||
...
|
||||
]
|
||||
'''
|
||||
get_ligas = chain(
|
||||
partial(fmap, lambda subtable_name: glyph.getPosSub(subtable_name)),
|
||||
partial(map, lambda liga_info: (liga_info[2:], glyph.originalgid,))
|
||||
)
|
||||
return get_ligas(liga_subtable_names)
|
||||
|
||||
|
||||
def read_kerning_class(font):
|
||||
'''
|
||||
Return array of kerning class table:
|
||||
(
|
||||
# glyphs on left
|
||||
(
|
||||
None, # first is None
|
||||
(glyph_name, glyph_name, ...),
|
||||
...
|
||||
),
|
||||
# glyphs on right
|
||||
(
|
||||
None, # first is None
|
||||
(glyph_name, glyph_name, ...),
|
||||
...
|
||||
),
|
||||
# kerning value
|
||||
(
|
||||
kerning_value,
|
||||
...
|
||||
)
|
||||
)
|
||||
'''
|
||||
get_tables = chain(
|
||||
_read_lookup_subtables(
|
||||
font,
|
||||
lambda lookup_info: lookup_info[0] == 'gpos_pair',
|
||||
lambda subtable_name: font.isKerningClass(subtable_name)
|
||||
),
|
||||
partial(map, lambda subtable_name: font.getKerningClass(subtable_name))
|
||||
)
|
||||
return get_tables(font.gpos_lookups)
|
||||
|
||||
|
||||
def write_clm_unicode_glyph_map(f, unicode_glyph_map):
|
||||
length = len(unicode_glyph_map)
|
||||
f.write(struct.pack('!H', length))
|
||||
sort_map = sorted(unicode_glyph_map, key=lambda x: x[0])
|
||||
for (codepoint, glyph_id,) in sort_map:
|
||||
f.write(struct.pack('!IH', codepoint, glyph_id))
|
||||
|
||||
|
||||
def write_clm_kerning_class(f, kerning_classes, glyph_name_id_map):
|
||||
length = len(kerning_classes)
|
||||
f.write(struct.pack('!H', length))
|
||||
|
||||
# map the names to (glyph, index_in_classes)
|
||||
write_classes = chain(
|
||||
partial(
|
||||
map,
|
||||
lambda (i, xs,): map(lambda x: (x, i,), xs)
|
||||
),
|
||||
partial(
|
||||
do,
|
||||
lambda xs: f.write(struct.pack('!H', len(xs)))
|
||||
),
|
||||
partial(fmap, lambda x: x),
|
||||
partial(
|
||||
map,
|
||||
lambda (name, index,): (glyph_name_id_map[name], index,)
|
||||
),
|
||||
partial(sorted, key=lambda x: x[0]),
|
||||
partial(
|
||||
do,
|
||||
lambda xs: f.write(struct.pack('!H', len(xs)))
|
||||
),
|
||||
partial(
|
||||
map,
|
||||
lambda (glyph, index,): struct.pack('!HH', glyph, index)
|
||||
),
|
||||
partial(
|
||||
do_loop,
|
||||
lambda bs: f.write(bs)
|
||||
)
|
||||
)
|
||||
|
||||
for (left, right, value,) in kerning_classes:
|
||||
write_classes(enumerate(left[1:]))
|
||||
write_classes(enumerate(right[1:]))
|
||||
column_count = len(right)
|
||||
for i, v in enumerate(value):
|
||||
if i < column_count or i % column_count == 0:
|
||||
continue
|
||||
f.write(struct.pack('!h', v))
|
||||
|
||||
|
||||
def write_ligas(f, ligas, glyph_name_id_map):
|
||||
forest = []
|
||||
|
||||
def add_node(glyphs, liga):
|
||||
children = forest
|
||||
child = None
|
||||
for (glyph, char,) in glyphs:
|
||||
child = find_first(children, lambda x: x['glyph'] == glyph)
|
||||
if not child:
|
||||
child = {'glyph': glyph, 'char': char,
|
||||
'liga': -1, 'children': []}
|
||||
children.append(child)
|
||||
children = child['children']
|
||||
child['liga'] = liga
|
||||
|
||||
for (chars, liga,) in ligas:
|
||||
add_node(
|
||||
map(lambda char: (glyph_name_id_map[char], char,), chars), liga)
|
||||
|
||||
def sort_children(children):
|
||||
for child in children:
|
||||
child['children'] = sort_children(child['children'])
|
||||
return sorted(children, key=lambda x: x['glyph'])
|
||||
|
||||
forest = sort_children(forest)
|
||||
|
||||
def write_node(node):
|
||||
f.write(struct.pack('!H', node['glyph']))
|
||||
f.write(struct.pack('!i', node['liga']))
|
||||
f.write(struct.pack('!H', len(node['children'])))
|
||||
for child in node['children']:
|
||||
write_node(child)
|
||||
|
||||
root = {'glyph': 0, 'char': 0, 'liga': -1, 'children': forest}
|
||||
write_node(root)
|
||||
|
||||
|
||||
def write_math_consts(f, consts):
|
||||
for v in consts:
|
||||
f.write(struct.pack('!h', v))
|
||||
|
||||
|
||||
def write_glyphs(f, glyphs, glyph_name_id_map, is_math_font):
|
||||
f.write(struct.pack('!H', len(glyphs)))
|
||||
|
||||
def write_metrics(metrics):
|
||||
for v in metrics:
|
||||
f.write(struct.pack('!h', v))
|
||||
|
||||
def write_kerns(kerns):
|
||||
if not kerns:
|
||||
f.write(struct.pack('!H', 0))
|
||||
return
|
||||
f.write(struct.pack('!H', len(kerns)))
|
||||
sorted_kerns = chain(
|
||||
partial(map, lambda x: (glyph_name_id_map[x[0]], x[1],)),
|
||||
partial(sorted, key=lambda x: x[0])
|
||||
)(kerns)
|
||||
for (glyph, value,) in sorted_kerns:
|
||||
f.write(struct.pack('!Hh', glyph, value))
|
||||
|
||||
def write_variants(variants):
|
||||
length = 0 if not variants else len(variants)
|
||||
f.write(struct.pack('!H', length))
|
||||
if length == 0:
|
||||
return
|
||||
ids = map(lambda x: glyph_name_id_map[x], variants)
|
||||
for i in ids:
|
||||
f.write(struct.pack('!H', i))
|
||||
|
||||
def write_glyph_assembly(assembly):
|
||||
if not assembly or not assembly[1]:
|
||||
f.write(struct.pack('?', False))
|
||||
return
|
||||
f.write(struct.pack('?', True))
|
||||
f.write(struct.pack('!H', len(assembly[1])))
|
||||
f.write(struct.pack('!h', assembly[0])) # italics correction
|
||||
for part in assembly[1]:
|
||||
f.write(struct.pack('!H', glyph_name_id_map[part[0]]))
|
||||
for v in part[1:]:
|
||||
f.write(struct.pack('!H', v))
|
||||
|
||||
def write_math_kern(math_kerns):
|
||||
for i in math_kerns:
|
||||
if not i:
|
||||
f.write(struct.pack('!H', 0))
|
||||
continue
|
||||
f.write(struct.pack('!H', len(i)))
|
||||
for (correction_height, value,) in i:
|
||||
f.write(struct.pack('!hh', correction_height, value))
|
||||
|
||||
def write_math(math):
|
||||
f.write(struct.pack('!h', math[0])) # italics correction
|
||||
f.write(struct.pack('!h', math[1])) # topaccent attachment
|
||||
write_variants(math[2]) # horizontal variants
|
||||
write_variants(math[3]) # vertical variants
|
||||
write_glyph_assembly(math[4]) # horizontal assembly
|
||||
write_glyph_assembly(math[5]) # vertical assembly
|
||||
write_math_kern(math[6]) # math kern
|
||||
|
||||
for glyph in glyphs:
|
||||
write_metrics(glyph[0])
|
||||
write_kerns(glyph[1])
|
||||
if is_math_font:
|
||||
write_math(glyph[2])
|
||||
|
||||
|
||||
def parse_otf(file_path, is_math_font, output_file_path):
|
||||
font = fontforge.open(file_path)
|
||||
|
||||
# read math constants
|
||||
math_consts = []
|
||||
if is_math_font:
|
||||
math_consts = read_math_consts(font)
|
||||
|
||||
# read kern subtables
|
||||
kern_subtable_names = read_kern_subtables(font)
|
||||
# read ligature subtables
|
||||
liga_subtable_names = read_ligature_subtables(font)
|
||||
# read kern class tables
|
||||
kern_class_tables = read_kerning_class(font)
|
||||
|
||||
unicode_glyph_map = []
|
||||
glyph_name_id_map = {}
|
||||
glyphs = []
|
||||
ligas = []
|
||||
|
||||
# read glyphs in GID order
|
||||
for glyph_name in font:
|
||||
glyph = font[glyph_name]
|
||||
|
||||
# unicode-glyph map
|
||||
if glyph.unicode != -1:
|
||||
unicode_glyph_map.append((glyph.unicode, glyph.originalgid,))
|
||||
|
||||
print(glyph.originalgid, glyph_name)
|
||||
glyph_name_id_map[glyph_name] = glyph.originalgid
|
||||
# glyph info
|
||||
glyphs.append(read_glyph(glyph, is_math_font, kern_subtable_names))
|
||||
|
||||
# read ligature
|
||||
liga_info = read_ligatures(glyph, liga_subtable_names)
|
||||
for l in liga_info:
|
||||
ligas.append(l)
|
||||
|
||||
em = font.em
|
||||
xheight = font.xHeight
|
||||
font.close()
|
||||
|
||||
with open(output_file_path, 'wb') as f:
|
||||
f.write(struct.pack('?', is_math_font))
|
||||
f.write(struct.pack('!H', em))
|
||||
f.write(struct.pack('!H', xheight))
|
||||
write_clm_unicode_glyph_map(f, unicode_glyph_map)
|
||||
write_clm_kerning_class(f, kern_class_tables, glyph_name_id_map)
|
||||
write_ligas(f, ligas, glyph_name_id_map)
|
||||
if is_math_font:
|
||||
write_math_consts(f, math_consts)
|
||||
write_glyphs(f, glyphs, glyph_name_id_map, is_math_font)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parse_otf(sys.argv[1], sys.argv[2] == 'true', sys.argv[3])
|
||||
0
3rdparty/MicroTeX/res/.clatexmath-res_root
vendored
Normal file
0
3rdparty/MicroTeX/res/.clatexmath-res_root
vendored
Normal file
73
3rdparty/MicroTeX/res/RES_README
vendored
Normal file
73
3rdparty/MicroTeX/res/RES_README
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
fonts/licences/OFL.txt
|
||||
fonts/licences/License_for_dsrom.txt
|
||||
fonts/licences/Knuth_License.txt
|
||||
fonts/euler/eufb10.ttf
|
||||
fonts/euler/eufm10.ttf
|
||||
fonts/base/cmmi10.ttf
|
||||
fonts/base/cmmib10.ttf
|
||||
fonts/base/cmex10.ttf
|
||||
fonts/latin/sb10.ttf
|
||||
fonts/latin/optional/cmss10.ttf
|
||||
fonts/latin/optional/cmtt10.ttf
|
||||
fonts/latin/optional/cmbxti10.ttf
|
||||
fonts/latin/optional/cmssbx10.ttf
|
||||
fonts/latin/optional/cmbx10.ttf
|
||||
fonts/latin/optional/cmti10.ttf
|
||||
fonts/latin/optional/cmssi10.ttf
|
||||
fonts/latin/i10.ttf
|
||||
fonts/latin/bi10.ttf
|
||||
fonts/latin/ss10.ttf
|
||||
fonts/latin/cmr10.ttf
|
||||
fonts/latin/tt10.ttf
|
||||
fonts/latin/si10.ttf
|
||||
fonts/latin/bx10.ttf
|
||||
fonts/latin/r10.ttf
|
||||
fonts/latin/sbi10.ttf
|
||||
fonts/maths/cmsy10.ttf
|
||||
fonts/maths/optional/dsrom10.ttf
|
||||
fonts/maths/rsfs10.ttf
|
||||
fonts/maths/special.ttf
|
||||
fonts/maths/msam10.ttf
|
||||
fonts/maths/stmary10.ttf
|
||||
fonts/maths/cmbsy10.ttf
|
||||
fonts/maths/msbm10.ttf
|
||||
greek/fcmrpg.ttf
|
||||
greek/fcsrpg.ttf
|
||||
greek/fcmbipg.ttf
|
||||
greek/fctrpg.ttf
|
||||
greek/fctrpg.xml
|
||||
greek/fcmbpg.xml
|
||||
greek/fcsbpg.ttf
|
||||
greek/fcmrpg.xml
|
||||
greek/language_greek.xml
|
||||
greek/fcmripg.ttf
|
||||
greek/fcsropg.ttf
|
||||
greek/fcsrpg.xml
|
||||
greek/fcsbpg.xml
|
||||
greek/greek.map.xml
|
||||
greek/mappings_greek.xml
|
||||
greek/fcsropg.xml
|
||||
greek/fcmbpg.ttf
|
||||
greek/symbols_greek.xml
|
||||
greek/fcmripg.xml
|
||||
greek/fcmbipg.xml
|
||||
cyrillic/wnbx10.xml
|
||||
cyrillic/cyrillic.map.xml
|
||||
cyrillic/wnssi10.ttf
|
||||
cyrillic/wntt10.ttf
|
||||
cyrillic/wnss10.xml
|
||||
cyrillic/wnssbx10.xml
|
||||
cyrillic/wntt10.xml
|
||||
cyrillic/wnti10.xml
|
||||
cyrillic/wnbxti10.xml
|
||||
cyrillic/wnbxti10.ttf
|
||||
cyrillic/symbols_cyrillic.xml
|
||||
cyrillic/wnssbx10.ttf
|
||||
cyrillic/wnbx10.ttf
|
||||
cyrillic/wnr10.xml
|
||||
cyrillic/wnti10.ttf
|
||||
cyrillic/language_cyrillic.xml
|
||||
cyrillic/wnr10.ttf
|
||||
cyrillic/wnssi10.xml
|
||||
cyrillic/mappings_cyrillic.xml
|
||||
cyrillic/wnss10.ttf
|
||||
261
3rdparty/MicroTeX/res/SAMPLES.tex
vendored
Normal file
261
3rdparty/MicroTeX/res/SAMPLES.tex
vendored
Normal file
@ -0,0 +1,261 @@
|
||||
%Side sets test
|
||||
\sideset{^\backprime}{'}
|
||||
\sum_{x=1}^{\infty} x
|
||||
\sideset{a_1^2}{}\sum_{x=1}^\infty x_0
|
||||
\\
|
||||
\sideset{_\text{left bottom}'''}{_{\text{right bottom}}'''}
|
||||
\sum_{\text{quite long text}}^\infty x
|
||||
\\
|
||||
\sideset{}{'}
|
||||
\sum_{n<k,\;\text{$n$ odd}} nE_n
|
||||
\\
|
||||
\sideset{}{'}
|
||||
\sum^{n<k,\;\text{$n$ odd}} nE_n
|
||||
\\
|
||||
M_x''' M'''_x M^{'''}_x M_x{'''} M^{\prime\backprime}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%Cyrillic and Greek alphabet
|
||||
\begin{array}{lr}
|
||||
\mbox{\textcolor{Blue}{Russian}}&\mbox{\textcolor{Melon}{Greek}}\\
|
||||
\mbox{привет мир}&\mbox{γειά κόσμο}\\
|
||||
\mbox{привет мир}&\mbox{γειά κόσμο}\\
|
||||
\mathbf{\mbox{привет мир}}&\mathbf{\mbox{γειά κόσμο}}\\
|
||||
\mathit{\mbox{привет мир}}&\mathit{\mbox{γειά κόσμο}}\\
|
||||
\mathsf{\mbox{привет мир}}&\mathsf{\mbox{γειά κόσμο}}\\
|
||||
\mathtt{\mbox{привет мир}}&\mathtt{\mbox{γειά κόσμο}}\\
|
||||
\mathbf{\mathit{\mbox{привет мир}}}&\mathbf{\mathit{\mbox{γειά κόσμο}}}\\
|
||||
\mathbf{\mathsf{\mbox{привет мир}}}&\mathbf{\mathsf{\mbox{γειά κόσμο}}}\\
|
||||
\mathsf{\mathit{\mbox{привет мир}}}&\mathsf{\mathit{\mbox{γειά κόσμο}}}\\
|
||||
&\\
|
||||
\mbox{\textcolor{Salmon}{Bulgarian}}&\mbox{\textcolor{Tan}{Serbian}}\\
|
||||
\mbox{здравей свят}&\mbox{Хелло уорлд}\\
|
||||
&\\
|
||||
\mbox{\textcolor{Turquoise}{Bielorussian}}&\mbox{\textcolor{LimeGreen}{Ukrainian}}\\
|
||||
\mbox{прывітаньне Свет}&\mbox{привіт світ}\\
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%Complex formula test
|
||||
\begin{array}{l}
|
||||
\forall\varepsilon\in\mathbb{R}_+^*\ \exists\eta>0\ |x-x_0|\leq\eta\Longrightarrow|f(x)-f(x_0)|\leq\varepsilon\\
|
||||
\det
|
||||
\begin{bmatrix}
|
||||
a_{11}&a_{12}&\cdots&a_{1n}\\
|
||||
a_{21}&\ddots&&\vdots\\
|
||||
\vdots&&\ddots&\vdots\\
|
||||
a_{n1}&\cdots&\cdots&a_{nn}
|
||||
\end{bmatrix}
|
||||
\overset{\mathrm{def}}{=}\sum_{\sigma\in\mathfrak{S}_n}\varepsilon(\sigma)\prod_{k=1}^n a_{k\sigma(k)}\\
|
||||
\sideset{_\alpha^\beta}{_\gamma^\delta}{\begin{pmatrix}a&b\\c&d\end{pmatrix}}\\
|
||||
\int_0^\infty{x^{2n} e^{-a x^2}\,dx} = \frac{2n-1}{2a}
|
||||
\int_0^\infty{x^{2(n-1)} e^{-a x^2}\,dx} = \frac{(2n-1)!!}{2^{n+1}} \sqrt{\frac{\pi}{a^{2n+1}}}\\
|
||||
\int_a^b{f(x)\,dx} = (b - a) \sum\limits_{n = 1}^\infty
|
||||
{\sum\limits_{m = 1}^{2^n - 1} {\left( { - 1} \right)^{m + 1} } } 2^{ - n} f(a + m\left( {b - a} \right)2^{-n} )\\
|
||||
\int_{-\pi}^{\pi} \sin(\alpha x) \sin^n(\beta x) dx = \textstyle{\left \{
|
||||
\begin{array}{cc}
|
||||
(-1)^{(n+1)/2} (-1)^m \frac{2 \pi}{2^n} \binom{n}{m} & n \mbox{ odd},\ \alpha = \beta (2m-n) \\
|
||||
0 & \mbox{otherwise} \\ \end{array} \right .}\\
|
||||
L = \int_a^b \sqrt{ \left|\sum_{i,j=1}^ng_{ij}(\gamma(t))\left(\frac{d}{dt}x^i\circ\gamma(t)\right)
|
||||
\left(\frac{d}{dt}x^j\circ\gamma(t)\right)\right|}\,dt\\
|
||||
\begin{array}{rl}
|
||||
s &= \int_a^b\left\|\frac{d}{dt}\vec{r}\,(u(t),v(t))\right\|\,dt \\
|
||||
&= \int_a^b \sqrt{u'(t)^2\,\vec{r}_u\cdot\vec{r}_u + 2u'(t)v'(t)\, \vec{r}_u\cdot
|
||||
\vec{r}_v+ v'(t)^2\,\vec{r}_v\cdot\vec{r}_v}\,\,\, dt.
|
||||
\end{array}\\
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\definecolor{gris}{gray}{0.9}
|
||||
\definecolor{noir}{rgb}{0,0,0}
|
||||
\definecolor{bleu}{rgb}{0,0,1}
|
||||
\fatalIfCmdConflict{false}
|
||||
\newcommand{\pa}{\left|}
|
||||
\begin{array}{c}
|
||||
\LaTeX\\
|
||||
\begin{split}
|
||||
&Тепловой\ поток\ \mathrm{Тепловой\ поток}\ \mathtt{Тепловой\ поток}\\
|
||||
&\boldsymbol{\mathrm{Тепловой\ поток}}\ \mathsf{Тепловой\ поток}\\
|
||||
|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)
|
||||
u_t (\xi,t)\,d\xi\right\}dt\right|\\
|
||||
&\le C_6 \Bigg|\pa f \int_\Omega \pa\widetilde{S}^{-1,0}_{a,-}
|
||||
W_2(\Omega, \Gamma_1)\right|\ \right|\left| |u|\overset{\circ}{\to} W_2^{\widetilde{A}}(\Omega\Gamma_r,T)\right|\Bigg|\\
|
||||
&\\
|
||||
&\begin{pmatrix}
|
||||
\alpha&\beta&\gamma&\delta\\
|
||||
\aleph&\beth&\gimel&\daleth\\
|
||||
\mathfrak{A}&\mathfrak{B}&\mathfrak{C}&\mathfrak{D}\\
|
||||
\boldsymbol{\mathfrak{a}}&\boldsymbol{\mathfrak{b}}&\boldsymbol{\mathfrak{c}}&\boldsymbol{\mathfrak{d}}
|
||||
\end{pmatrix}
|
||||
\quad{(a+b)}^{\frac{n}{2}}=\sqrt{\sum_{k=0}^n\tbinom{n}{k}a^kb^{n-k}}\quad
|
||||
\Biggl(\biggl(\Bigl(\bigl(()\bigr)\Bigr)\biggr)\Biggr)\\
|
||||
&\forall\varepsilon\in\mathbb{R}_+^*\ \exists\eta>0\ |x-x_0|\leq\eta\Longrightarrow|f(x)-f(x_0)|\leq\varepsilon\\
|
||||
&\det
|
||||
\begin{bmatrix}
|
||||
a_{11}&a_{12}&\cdots&a_{1n}\\
|
||||
a_{21}&\ddots&&\vdots\\
|
||||
\vdots&&\ddots&\vdots\\
|
||||
a_{n1}&\cdots&\cdots&a_{nn}
|
||||
\end{bmatrix}
|
||||
\overset{\mathrm{def}}{=}\sum_{\sigma\in\mathfrak{S}_n}\varepsilon(\sigma)\prod_{k=1}^n a_{k\sigma(k)}\\
|
||||
&\Delta f(x,y)=\frac{\partial^2f}{\partial x^2}+\frac{\partial^2f}{\partial y^2}\qquad\qquad \fcolorbox{noir}{gris}
|
||||
{n!\underset{n\rightarrow+\infty}{\sim} {\left(\frac{n}{e}\right)}^n\sqrt{2\pi n}}\\
|
||||
&\sideset{_\alpha^\beta}{_\gamma^\delta}{
|
||||
\begin{pmatrix}
|
||||
a&b\\
|
||||
c&d
|
||||
\end{pmatrix}}
|
||||
\xrightarrow[T]{n\pm i-j}\sideset{^t}{}A\xleftarrow{\overrightarrow{u}\wedge\overrightarrow{v}}
|
||||
\underleftrightarrow{\iint_{\mathds{R}^2}e^{-\left(x^2+y^2\right)}\,\mathrm{d}x\mathrm{d}y}
|
||||
\end{split}\\
|
||||
\rotatebox{30}{\sum_{n=1}^{+\infty}}\quad\mbox{Mirror rorriM}\reflectbox{\mbox{Mirror rorriM}}
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\begin{array}{|c|l|||r|c|}
|
||||
\hline
|
||||
\text{Matrix}&\multicolumn{2}{|c|}{\text{Multicolumns}}&\text{Font sizes commands}\cr
|
||||
\hline
|
||||
\begin{pmatrix}
|
||||
\alpha_{11}&\cdots&\alpha_{1n}\cr
|
||||
\hdotsfor{3}\cr
|
||||
\alpha_{n1}&\cdots&\alpha_{nn}
|
||||
\end{pmatrix}
|
||||
&\Large \text{Large Right}&\small \text{small Left}&\tiny \text{tiny Tiny}\cr
|
||||
\hline
|
||||
\multicolumn{4}{|c|}{\Huge \text{Huge Multicolumns}}\cr
|
||||
\hline
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\cornersize{0.2}
|
||||
\begin{array}{cc}
|
||||
\fbox{\text{A framed box with \textdbend}}&\shadowbox{\text{A shadowed box}}\cr
|
||||
\doublebox{\text{A double framed box}}&\ovalbox{\text{An oval framed box}}\cr
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%ASCII character
|
||||
\text{!"#'()*+,-./0123456789:<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]
|
||||
^_`abcdefghijklmnopqrstuvwxyz{|}~
|
||||
|
||||
¡¢£¤¥¦§¨©ª«¬
|
||||
®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%Table test
|
||||
\newcolumntype{s}{>{\color{#1234B6}}c}
|
||||
\begin{array}{|c|c|c|s|}
|
||||
\hline
|
||||
\rowcolor{Tan}\multicolumn{4}{|c|}{\textcolor{white}{\bold{\text{Table Head}}}}\\
|
||||
\hline
|
||||
\text{Matrix}&\multicolumn{2}{|c|}{\text{Multicolumns}}&\text{Font size commands}\\
|
||||
\hline
|
||||
\begin{pmatrix}
|
||||
\alpha_{11}&\cdots&\alpha_{1n}\\
|
||||
\hdotsfor{3}\\
|
||||
\alpha_{n1}&\cdots&\alpha_{nn}
|
||||
\end{pmatrix}
|
||||
&\large \text{Left}&\cellcolor{#00bde5}\small \textcolor{white}{\text{\bold{Right}}}
|
||||
&\small \text{small Small}\\
|
||||
\hline
|
||||
\multicolumn{4}{|c|}{\text{Table Foot}}\\
|
||||
\hline
|
||||
\end{array}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\rlap{\overbrace{\phantom{1 + a + b + \cdots + z}}^{\text{total + 1}}}
|
||||
1 + \underbrace{a + b + \cdots + z}_{\text{total}}
|
||||
\\
|
||||
\frac{a\cancel{b}}{\cancel{b}} = a;
|
||||
\frac{a\bcancel{b}}{\bcancel{b}} = a;
|
||||
\frac{a\xcancel{b}}{\xcancel{b}} = a;
|
||||
\\
|
||||
\text{A long division: }\longdiv{12345}{13}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\left\{
|
||||
\begin{array}{l}
|
||||
2a < -1,\\
|
||||
a + 8 \ge 5,
|
||||
\end{array}
|
||||
\right.
|
||||
\\
|
||||
P_{r-j}=\begin{cases}
|
||||
0& \text{if $r-j$ is odd},\\
|
||||
r!\,(-1)^{(r-j)/2}& \text{if $r-j$ is even}.
|
||||
\end{cases}\text{Cases}
|
||||
\\
|
||||
P_{r-j}=\left\{\begin{array}{@{}ll@{\,}}
|
||||
0& \text{if $r-j$ is odd},\\
|
||||
r!\,(-1)^{(r-j)/2}& \text{if $r-j$ is even}.
|
||||
\end{array}\right.\text{Cases}
|
||||
\\
|
||||
P_{r-j}=\begin{cases}
|
||||
4-x\geq 0 \\
|
||||
3-x\geq 1
|
||||
\end{cases}\text{Cases}
|
||||
\\
|
||||
\left\{\begin{array}{@{}ll}
|
||||
1 & 2\\
|
||||
3 & 4
|
||||
\end{array}\right.\text{Equation}
|
||||
\\
|
||||
\left\{\begin{array}{l@{}l}
|
||||
1 & 2\\
|
||||
3 & 4
|
||||
\end{array}\right.\text{Equation}
|
||||
\\
|
||||
\left\{\begin{array}{ll@{}}
|
||||
1 & 2\\
|
||||
3 & 4
|
||||
\end{array}\right.\text{Equation}
|
||||
\\
|
||||
\begin{split}
|
||||
H_c&=\frac{1}{2n} \sum^n_{l=0}(-1)^{l}(n-{l})^{p-2}
|
||||
\sum_{l _1+\dots+ l _p=l}\prod^p_{i=1} \binom{n_i}{l _i}\\
|
||||
&\quad\cdot[(n-l )-(n_i-l _i)]^{n_i-l _i}\cdot
|
||||
\Bigl[(n-l )^2-\sum^p_{j=1}(n_i-l _i)^2\Bigr].
|
||||
\end{split}
|
||||
\\
|
||||
\begin{align}
|
||||
A_1&=N_0(\lambda;\Omega’)-\phi(\lambda;\Omega’),\\
|
||||
A_2&=\phi(\lambda;\Omega’)-\phi(\lambda;\Omega),\\
|
||||
\intertext{and}
|
||||
A_3&=\mathcal{N}(\lambda;\omega).
|
||||
\end{align}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\frac{\sum_{n > 0} z^n}
|
||||
{\prod_{1\leq k\leq n} (1-q^k)}
|
||||
\\
|
||||
\frac{{\displaystyle\sum_{n > 0} z^n}}
|
||||
{{\displaystyle\prod_{1\leq k\leq n} (1-q^k)}}
|
||||
\\
|
||||
\frac{{\displaystyle\sum\nolimits_{n> 0} z^n}}
|
||||
{{\displaystyle\prod\nolimits_{1\leq k\leq n} (1-q^k)}}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\cfrac{1}{\sqrt{2}+
|
||||
\cfrac{1}{\sqrt{2}+
|
||||
\cfrac{1}{\sqrt{2}+\dotsb
|
||||
}}}
|
||||
\\
|
||||
\biggl[
|
||||
\sum_i a_i\biggl\lvert\sum_j x_{ij}
|
||||
\biggr\rvert^p\biggr]^{1/p}
|
||||
\\
|
||||
\biggl[
|
||||
\sum_i a_i\Bigl\lvert\sum_j x_{ij}
|
||||
\Bigr\rvert^p\biggr]^{1/p}
|
||||
674
3rdparty/MicroTeX/res/cyrillic/LICENSE
vendored
Normal file
674
3rdparty/MicroTeX/res/cyrillic/LICENSE
vendored
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
100
3rdparty/MicroTeX/res/cyrillic/cyrillic.map.xml
vendored
Normal file
100
3rdparty/MicroTeX/res/cyrillic/cyrillic.map.xml
vendored
Normal file
@ -0,0 +1,100 @@
|
||||
<?xml version='1.0'?>
|
||||
<SymbolMappings>
|
||||
<SymbolMapping name="dotlessi" ch="305" fontId="wnr10"/>
|
||||
<!-- Modern Russian -->
|
||||
<SymbolMapping name="CYRA" ch="1040" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRB" ch="1041" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRV" ch="1042" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRG" ch="1043" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRD" ch="1044" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRE" ch="1045" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRYO" ch="1025" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRZH" ch="1046" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRZ" ch="1047" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRI" ch="1048" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRIO" ch="1049" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRK" ch="1050" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRL" ch="1051" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRM" ch="1052" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRN" ch="1053" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRO" ch="1054" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRP" ch="1055" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRR" ch="1056" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRS" ch="1057" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRT" ch="1058" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRU" ch="1059" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRF" ch="1060" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRH" ch="1061" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRC" ch="1062" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRCH" ch="1063" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRSH" ch="1064" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRSHCH" ch="1065" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRHRDSN" ch="1066" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRY" ch="1067" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRSFTSN" ch="1068" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYREREV" ch="1069" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRYU" ch="1070" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRYA" ch="1071" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyra" ch="1072" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrb" ch="1073" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrv" ch="1074" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrg" ch="1075" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrd" ch="1076" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyre" ch="1077" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyryo" ch="1105" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrzh" ch="1078" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrz" ch="1079" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyri" ch="1080" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrio" ch="1081" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrk" ch="1082" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrl" ch="1083" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrm" ch="1084" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrn" ch="1085" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyro" ch="1086" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrp" ch="1087" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrr" ch="1088" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrs" ch="1089" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrt" ch="1090" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyru" ch="1091" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrf" ch="1092" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrh" ch="1093" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrc" ch="1094" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrch" ch="1095" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrsh" ch="1096" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrshch" ch="1097" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrhrdsn" ch="1098" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyry" ch="1099" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrsftsn" ch="1100" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrerev" ch="1101" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyryu" ch="1102" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrya" ch="1103" fontId="wnr10"/>
|
||||
<!-- Ukrainian -->
|
||||
<SymbolMapping name="CYRIE" ch="1028" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRII" ch="1030" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrie" ch="1108" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrii" ch="1110" fontId="wnr10"/>
|
||||
<!-- Other slavic languages and Old Russian -->
|
||||
<SymbolMapping name="CYRDJE" ch="1026" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRDZE" ch="1029" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRJE" ch="1032" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRLJE" ch="1033" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRNJE" ch="1034" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRTSHE" ch="1035" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRDZHE" ch="1039" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRIZH" ch="1140" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRYAT" ch="1122" fontId="wnr10"/>
|
||||
<SymbolMapping name="CYRFITA" ch="1138" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrdje" ch="1106" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrdze" ch="1109" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrje" ch="1112" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrlje" ch="1113" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrnje" ch="1114" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrtshe" ch="1115" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrdzhe" ch="1119" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrizh" ch="1141" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyryat" ch="1123" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrfita" ch="1139" fontId="wnr10"/>
|
||||
<!-- Accent -->
|
||||
<SymbolMapping name="cyrbreve" ch="774" fontId="wnr10"/>
|
||||
<SymbolMapping name="cyrddot" ch="776" fontId="wnr10"/>
|
||||
</SymbolMappings>
|
||||
27
3rdparty/MicroTeX/res/cyrillic/language_cyrillic.xml
vendored
Normal file
27
3rdparty/MicroTeX/res/cyrillic/language_cyrillic.xml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version='1.0'?>
|
||||
<!--
|
||||
language_cyrillic.xml
|
||||
-->
|
||||
|
||||
<TeXFont>
|
||||
|
||||
<SymbolMappings>
|
||||
<Mapping include="cyrillic.map.xml" />
|
||||
</SymbolMappings>
|
||||
|
||||
<FontDescriptions>
|
||||
<Metrics include="wnr10.xml" />
|
||||
<Metrics include="wnti10.xml" />
|
||||
<Metrics include="wntt10.xml" />
|
||||
<Metrics include="wnss10.xml" />
|
||||
<Metrics include="wnssi10.xml" />
|
||||
<Metrics include="wnssbx10.xml" />
|
||||
<Metrics include="wnbx10.xml" />
|
||||
<Metrics include="wnbxti10.xml" />
|
||||
</FontDescriptions>
|
||||
|
||||
<TeXSymbols include="symbols_cyrillic.xml" />
|
||||
|
||||
<FormulaSettings include="mappings_cyrillic.xml" />
|
||||
|
||||
</TeXFont>
|
||||
116
3rdparty/MicroTeX/res/cyrillic/mappings_cyrillic.xml
vendored
Normal file
116
3rdparty/MicroTeX/res/cyrillic/mappings_cyrillic.xml
vendored
Normal file
@ -0,0 +1,116 @@
|
||||
<?xml version='1.0'?>
|
||||
<!--
|
||||
mappings_cyrillic.xml
|
||||
-->
|
||||
|
||||
<FormulaSettings>
|
||||
<CharacterToSymbolMappings>
|
||||
<Map char="ı" symbol="dotlessi"/>
|
||||
<Map char="А" symbol="CYRA"/>
|
||||
<Map char="Б" symbol="CYRB"/>
|
||||
<Map char="В" symbol="CYRV"/>
|
||||
<Map char="Г" symbol="CYRG"/>
|
||||
<Map char="Д" symbol="CYRD"/>
|
||||
<Map char="Е" symbol="CYRE"/>
|
||||
<Map char="Ё" symbol="CYRYO"/>
|
||||
<Map char="Ж" symbol="CYRZH"/>
|
||||
<Map char="З" symbol="CYRZ"/>
|
||||
<Map char="И" symbol="CYRI"/>
|
||||
<Map char="Й" symbol="CYRIO"/>
|
||||
<Map char="К" symbol="CYRK"/>
|
||||
<Map char="Л" symbol="CYRL"/>
|
||||
<Map char="М" symbol="CYRM"/>
|
||||
<Map char="Н" symbol="CYRN"/>
|
||||
<Map char="О" symbol="CYRO"/>
|
||||
<Map char="П" symbol="CYRP"/>
|
||||
<Map char="Р" symbol="CYRR"/>
|
||||
<Map char="С" symbol="CYRS"/>
|
||||
<Map char="Т" symbol="CYRT"/>
|
||||
<Map char="У" symbol="CYRU"/>
|
||||
<Map char="Ф" symbol="CYRF"/>
|
||||
<Map char="Х" symbol="CYRH"/>
|
||||
<Map char="Ц" symbol="CYRC"/>
|
||||
<Map char="Ч" symbol="CYRCH"/>
|
||||
<Map char="Ш" symbol="CYRSH"/>
|
||||
<Map char="Щ" symbol="CYRSHCH"/>
|
||||
<Map char="Ъ" symbol="CYRHRDSN"/>
|
||||
<Map char="Ы" symbol="CYRY"/>
|
||||
<Map char="Ь" symbol="CYRSFTSN"/>
|
||||
<Map char="Э" symbol="CYREREV"/>
|
||||
<Map char="Ю" symbol="CYRYU"/>
|
||||
<Map char="Я" symbol="CYRYA"/>
|
||||
<Map char="а" symbol="cyra"/>
|
||||
<Map char="б" symbol="cyrb"/>
|
||||
<Map char="в" symbol="cyrv"/>
|
||||
<Map char="г" symbol="cyrg"/>
|
||||
<Map char="д" symbol="cyrd"/>
|
||||
<Map char="е" symbol="cyre"/>
|
||||
<Map char="ё" symbol="cyryo"/>
|
||||
<Map char="ж" symbol="cyrzh"/>
|
||||
<Map char="з" symbol="cyrz"/>
|
||||
<Map char="и" symbol="cyri"/>
|
||||
<Map char="й" symbol="cyrio"/>
|
||||
<Map char="к" symbol="cyrk"/>
|
||||
<Map char="л" symbol="cyrl"/>
|
||||
<Map char="м" symbol="cyrm"/>
|
||||
<Map char="н" symbol="cyrn"/>
|
||||
<Map char="о" symbol="cyro"/>
|
||||
<Map char="п" symbol="cyrp"/>
|
||||
<Map char="р" symbol="cyrr"/>
|
||||
<Map char="с" symbol="cyrs"/>
|
||||
<Map char="т" symbol="cyrt"/>
|
||||
<Map char="у" symbol="cyru"/>
|
||||
<Map char="ф" symbol="cyrf"/>
|
||||
<Map char="х" symbol="cyrh"/>
|
||||
<Map char="ц" symbol="cyrc"/>
|
||||
<Map char="ч" symbol="cyrch"/>
|
||||
<Map char="ш" symbol="cyrsh"/>
|
||||
<Map char="щ" symbol="cyrshch"/>
|
||||
<Map char="ъ" symbol="cyrhrdsn"/>
|
||||
<Map char="ы" symbol="cyry"/>
|
||||
<Map char="ь" symbol="cyrsftsn"/>
|
||||
<Map char="э" symbol="cyrerev"/>
|
||||
<Map char="ю" symbol="cyryu"/>
|
||||
<Map char="я" symbol="cyrya"/>
|
||||
<Map char="Є" symbol="CYRIE"/>
|
||||
<Map char="І" symbol="CYRII"/>
|
||||
<Map char="є" symbol="cyrie"/>
|
||||
<Map char="і" symbol="cyrii"/>
|
||||
<Map char="Ђ" symbol="CYRDJE"/>
|
||||
<Map char="Ѕ" symbol="CYRDZE"/>
|
||||
<Map char="Ј" symbol="CYRJE"/>
|
||||
<Map char="Љ" symbol="CYRLJE"/>
|
||||
<Map char="Њ" symbol="CYRNJE"/>
|
||||
<Map char="Ћ" symbol="CYRTSHE"/>
|
||||
<Map char="Џ" symbol="CYRDZHE"/>
|
||||
<Map char="Ѵ" symbol="CYRIZH"/>
|
||||
<Map char="Ѣ" symbol="CYRYAT"/>
|
||||
<Map char="Ѳ" symbol="CYRFITA"/>
|
||||
<Map char="ђ" symbol="cyrdje"/>
|
||||
<Map char="ѕ" symbol="cyrdze"/>
|
||||
<Map char="ј" symbol="cyrje"/>
|
||||
<Map char="љ" symbol="cyrlje"/>
|
||||
<Map char="њ" symbol="cyrnje"/>
|
||||
<Map char="ћ" symbol="cyrtshe"/>
|
||||
<Map char="џ" symbol="cyrdzhe"/>
|
||||
<Map char="ѵ" symbol="cyrizh"/>
|
||||
<Map char="ѣ" symbol="cyryat"/>
|
||||
<Map char="ѳ" symbol="cyrfita"/>
|
||||
</CharacterToSymbolMappings>
|
||||
|
||||
<CharacterToFormulaMappings>
|
||||
<Map char="Ѐ" formula="\`\CYRE"/>
|
||||
<Map char="Ѓ" formula="\'\CYRG"/>
|
||||
<Map char="Ї" formula="\cyrddot\CYRII"/>
|
||||
<Map char="ї" formula="\cyrddot\dotlessi"/>
|
||||
<Map char="Ѓ" formula="\'\CYRG"/>
|
||||
<Map char="Ѓ" formula="\'\CYRK"/>
|
||||
<Map char="Ѝ" formula="\`\CYRI"/>
|
||||
<Map char="Ў" formula="\cyrbreve\CYRU"/>
|
||||
<Map char="ѐ" formula="\`\cyre"/>
|
||||
<Map char="ѓ" formula="\'\cyrg"/>
|
||||
<Map char="ќ" formula="\'\cyrk"/>
|
||||
<Map char="ѝ" formula="\`\cyri"/>
|
||||
<Map char="ў" formula="\cyrbreve\cyru"/>
|
||||
</CharacterToFormulaMappings>
|
||||
</FormulaSettings>
|
||||
104
3rdparty/MicroTeX/res/cyrillic/symbols_cyrillic.xml
vendored
Normal file
104
3rdparty/MicroTeX/res/cyrillic/symbols_cyrillic.xml
vendored
Normal file
@ -0,0 +1,104 @@
|
||||
<?xml version='1.0'?>
|
||||
<!--
|
||||
symbols_cyrillic.xml
|
||||
-->
|
||||
|
||||
<TeXSymbols>
|
||||
<Symbol name="dotlessi" type="ord"/>
|
||||
<Symbol name="cyrbreve" type="acc"/>
|
||||
<Symbol name="cyrddot" type="acc"/>
|
||||
<Symbol name="CYRA" type="ord"/>
|
||||
<Symbol name="CYRB" type="ord"/>
|
||||
<Symbol name="CYRV" type="ord"/>
|
||||
<Symbol name="CYRG" type="ord"/>
|
||||
<Symbol name="CYRD" type="ord"/>
|
||||
<Symbol name="CYRE" type="ord"/>
|
||||
<Symbol name="CYRYO" type="ord"/>
|
||||
<Symbol name="CYRZH" type="ord"/>
|
||||
<Symbol name="CYRZ" type="ord"/>
|
||||
<Symbol name="CYRE" type="ord"/>
|
||||
<Symbol name="CYRI" type="ord"/>
|
||||
<Symbol name="CYRIO" type="ord"/>
|
||||
<Symbol name="CYRK" type="ord"/>
|
||||
<Symbol name="CYRL" type="ord"/>
|
||||
<Symbol name="CYRM" type="ord"/>
|
||||
<Symbol name="CYRN" type="ord"/>
|
||||
<Symbol name="CYRO" type="ord"/>
|
||||
<Symbol name="CYRP" type="ord"/>
|
||||
<Symbol name="CYRR" type="ord"/>
|
||||
<Symbol name="CYRS" type="ord"/>
|
||||
<Symbol name="CYRT" type="ord"/>
|
||||
<Symbol name="CYRU" type="ord"/>
|
||||
<Symbol name="CYRF" type="ord"/>
|
||||
<Symbol name="CYRH" type="ord"/>
|
||||
<Symbol name="CYRC" type="ord"/>
|
||||
<Symbol name="CYRCH" type="ord"/>
|
||||
<Symbol name="CYRSH" type="ord"/>
|
||||
<Symbol name="CYRSHCH" type="ord"/>
|
||||
<Symbol name="CYRHRDSN" type="ord"/>
|
||||
<Symbol name="CYRY" type="ord"/>
|
||||
<Symbol name="CYRSFTSN" type="ord"/>
|
||||
<Symbol name="CYREREV" type="ord"/>
|
||||
<Symbol name="CYRYU" type="ord"/>
|
||||
<Symbol name="CYRYA" type="ord"/>
|
||||
<Symbol name="cyra" type="ord"/>
|
||||
<Symbol name="cyrb" type="ord"/>
|
||||
<Symbol name="cyrv" type="ord"/>
|
||||
<Symbol name="cyrg" type="ord"/>
|
||||
<Symbol name="cyrd" type="ord"/>
|
||||
<Symbol name="cyre" type="ord"/>
|
||||
<Symbol name="cyryo" type="ord"/>
|
||||
<Symbol name="cyrzh" type="ord"/>
|
||||
<Symbol name="cyrz" type="ord"/>
|
||||
<Symbol name="cyre" type="ord"/>
|
||||
<Symbol name="cyri" type="ord"/>
|
||||
<Symbol name="cyrio" type="ord"/>
|
||||
<Symbol name="cyrk" type="ord"/>
|
||||
<Symbol name="cyrl" type="ord"/>
|
||||
<Symbol name="cyrm" type="ord"/>
|
||||
<Symbol name="cyrn" type="ord"/>
|
||||
<Symbol name="cyro" type="ord"/>
|
||||
<Symbol name="cyrp" type="ord"/>
|
||||
<Symbol name="cyrr" type="ord"/>
|
||||
<Symbol name="cyrs" type="ord"/>
|
||||
<Symbol name="cyrt" type="ord"/>
|
||||
<Symbol name="cyru" type="ord"/>
|
||||
<Symbol name="cyrf" type="ord"/>
|
||||
<Symbol name="cyrh" type="ord"/>
|
||||
<Symbol name="cyrc" type="ord"/>
|
||||
<Symbol name="cyrch" type="ord"/>
|
||||
<Symbol name="cyrsh" type="ord"/>
|
||||
<Symbol name="cyrshch" type="ord"/>
|
||||
<Symbol name="cyrhrdsn" type="ord"/>
|
||||
<Symbol name="cyry" type="ord"/>
|
||||
<Symbol name="cyrsftsn" type="ord"/>
|
||||
<Symbol name="cyrerev" type="ord"/>
|
||||
<Symbol name="cyryu" type="ord"/>
|
||||
<Symbol name="cyrya" type="ord"/>
|
||||
<!-- Ukrainian -->
|
||||
<Symbol name="CYRIE" type="ord"/>
|
||||
<Symbol name="CYRII" type="ord"/>
|
||||
<Symbol name="cyrie" type="ord"/>
|
||||
<Symbol name="cyrii" type="ord"/>
|
||||
<!-- Other slavic languages and Old Russian -->
|
||||
<Symbol name="CYRDJE" type="ord"/>
|
||||
<Symbol name="CYRDZE" type="ord"/>
|
||||
<Symbol name="CYRJE" type="ord"/>
|
||||
<Symbol name="CYRLJE" type="ord"/>
|
||||
<Symbol name="CYRNJE" type="ord"/>
|
||||
<Symbol name="CYRTSHE" type="ord"/>
|
||||
<Symbol name="CYRDZHE" type="ord"/>
|
||||
<Symbol name="CYRIZH" type="ord"/>
|
||||
<Symbol name="CYRYAT" type="ord"/>
|
||||
<Symbol name="CYRFITA" type="ord"/>
|
||||
<Symbol name="cyrdje" type="ord"/>
|
||||
<Symbol name="cyrdze" type="ord"/>
|
||||
<Symbol name="cyrje" type="ord"/>
|
||||
<Symbol name="cyrlje" type="ord"/>
|
||||
<Symbol name="cyrnje" type="ord"/>
|
||||
<Symbol name="cyrtshe" type="ord"/>
|
||||
<Symbol name="cyrdzhe" type="ord"/>
|
||||
<Symbol name="cyrizh" type="ord"/>
|
||||
<Symbol name="cyryat" type="ord"/>
|
||||
<Symbol name="cyrfita" type="ord"/>
|
||||
</TeXSymbols>
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnbx10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnbx10.ttf
vendored
Normal file
Binary file not shown.
615
3rdparty/MicroTeX/res/cyrillic/wnbx10.xml
vendored
Normal file
615
3rdparty/MicroTeX/res/cyrillic/wnbx10.xml
vendored
Normal file
@ -0,0 +1,615 @@
|
||||
<Font name="wnbx10.ttf" id="wnbx10" space="0.383331" xHeight="0.444445" quad="1.149994" unicode="95" itVersion="wnbxti10" ssVersion="wnssbx10" ttVersion="wntt10">
|
||||
<Char code="1034" width="1.234021" height="0.686111" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.234021" height="0.686111" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.901384" height="0.686111" depth="0.194445" />
|
||||
<Char code="1069" width="0.830551" height="0.686111" >
|
||||
<Kern code="1040" val="-0.031944"/>
|
||||
<Kern code="1044" val="-0.031944"/>
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1059" val="-0.031944"/>
|
||||
<Kern code="1140" val="-0.031944"/>
|
||||
<Kern code="1071" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.43611" height="0.686111" >
|
||||
<Kern code="1030" val="0.031944"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.830551" height="0.686111" />
|
||||
<Char code="1026" width="0.959717" height="0.686111" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.8784685" height="0.686111" />
|
||||
<Char code="1114" width="0.86319" height="0.444445" >
|
||||
<Kern code="1091" val="-0.063889"/>
|
||||
<Kern code="1141" val="-0.063889"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1092" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.86319" height="0.444445" >
|
||||
<Kern code="1091" val="-0.063889"/>
|
||||
<Kern code="1141" val="-0.063889"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1092" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.6388855" height="0.444445" depth="0.162038" />
|
||||
<Char code="1101" width="0.511108" height="0.444445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.319443" height="0.694445" />
|
||||
<Char code="1108" width="0.50472" height="0.444445" />
|
||||
<Char code="1106" width="0.606941" height="0.694445" depth="0.194445" />
|
||||
<Char code="1115" width="0.6388855" height="0.694445" />
|
||||
<Char code="1070" width="1.273605" height="0.686111" >
|
||||
<Kern code="1040" val="-0.031944"/>
|
||||
<Kern code="1044" val="-0.031944"/>
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1059" val="-0.031944"/>
|
||||
<Kern code="1140" val="-0.031944"/>
|
||||
<Kern code="1071" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.366656" height="0.686111" >
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.031944"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.901384" height="0.894394" />
|
||||
<Char code="1025" width="0.755551" height="0.894394" />
|
||||
<Char code="1140" width="0.945828" height="0.686111" italic="0.015973" >
|
||||
<Kern code="1040" val="-0.127777"/>
|
||||
<Kern code="1071" val="-0.127777"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1072" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.095833"/>
|
||||
<Kern code="1139" val="-0.095833"/>
|
||||
<Kern code="1077" val="-0.095833"/>
|
||||
<Kern code="1105" val="-0.095833"/>
|
||||
<Kern code="1076" val="-0.127777"/>
|
||||
<Kern code="1083" val="-0.127777"/>
|
||||
<Kern code="1113" val="-0.127777"/>
|
||||
<Kern code="1103" val="-0.127777"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.89444" height="0.686111" >
|
||||
<Kern code="1040" val="-0.031944"/>
|
||||
<Kern code="1044" val="-0.031944"/>
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1059" val="-0.031944"/>
|
||||
<Kern code="1140" val="-0.031944"/>
|
||||
<Kern code="1071" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.6388855" height="0.686111" />
|
||||
<Char code="1071" width="0.901384" height="0.686111" />
|
||||
<Char code="1102" width="0.862495" height="0.444445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1078" width="0.958328" height="0.444445" >
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1089" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1081" width="0.6388855" height="0.652727" />
|
||||
<Char code="1105" width="0.5270815" height="0.686111" />
|
||||
<Char code="1141" width="0.685414" height="0.444445" italic="0.015973" >
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1089" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
<Kern code="1076" val="-0.063889"/>
|
||||
<Kern code="1083" val="-0.063889"/>
|
||||
<Kern code="1113" val="-0.063889"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.511108" height="0.444445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.4536085" height="0.444445" />
|
||||
<Char code="1103" width="0.6076355" height="0.444445" />
|
||||
<Char code="776" width="0.574997" height="0.686111" />
|
||||
<Char code="1122" width="0.945828" height="0.75" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.574997" height="0.652727" />
|
||||
<Char code="1123" width="0.574997" height="0.652727" >
|
||||
<Kern code="1091" val="-0.063889"/>
|
||||
<Kern code="1141" val="-0.063889"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1092" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.6388855" height="0.472223" />
|
||||
<Char code="305" width="0.319443" height="0.444445" />
|
||||
<Char code="187" width="0.6388855" height="0.472223" />
|
||||
<Char code="1040" width="0.86944" height="0.686111" >
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.818051" height="0.686111" />
|
||||
<Char code="1062" width="0.901384" height="0.686111" depth="0.194445" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.901384" height="0.686111" depth="0.194445" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.755551" height="0.686111" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.958328" height="0.686111" >
|
||||
<Kern code="1040" val="-0.031944"/>
|
||||
<Kern code="1044" val="-0.031944"/>
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1059" val="-0.031944"/>
|
||||
<Kern code="1140" val="-0.031944"/>
|
||||
<Kern code="1071" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.691663" height="0.686111" >
|
||||
<Kern code="1040" val="-0.095833"/>
|
||||
<Kern code="1044" val="-0.095833"/>
|
||||
<Kern code="1071" val="-0.095833"/>
|
||||
<Kern code="1051" val="-0.031944"/>
|
||||
<Kern code="1033" val="-0.031944"/>
|
||||
<Kern code="1072" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.095833"/>
|
||||
<Kern code="1139" val="-0.095833"/>
|
||||
<Kern code="1077" val="-0.095833"/>
|
||||
<Kern code="1105" val="-0.095833"/>
|
||||
<Kern code="1089" val="-0.095833"/>
|
||||
<Kern code="1108" val="-0.095833"/>
|
||||
<Kern code="1092" val="-0.095833"/>
|
||||
<Kern code="1076" val="-0.095833"/>
|
||||
<Kern code="1083" val="-0.095833"/>
|
||||
<Kern code="1113" val="-0.095833"/>
|
||||
<Kern code="1103" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.86944" height="0.686111" >
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.031944"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.901384" height="0.686111" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.594441" height="0.686111" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.901384" height="0.686111" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.031944"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.901384" height="0.686111" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="1.091661" height="0.686111" />
|
||||
<Char code="1053" width="0.901384" height="0.686111" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.863884" height="0.686111" >
|
||||
<Kern code="1040" val="-0.031944"/>
|
||||
<Kern code="1044" val="-0.031944"/>
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1059" val="-0.031944"/>
|
||||
<Kern code="1140" val="-0.031944"/>
|
||||
<Kern code="1071" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.901384" height="0.686111" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.901384" height="0.686111" />
|
||||
<Char code="1056" width="0.786107" height="0.686111" >
|
||||
<Kern code="1040" val="-0.095833"/>
|
||||
<Kern code="1044" val="-0.095833"/>
|
||||
<Kern code="1051" val="-0.095833"/>
|
||||
<Kern code="1033" val="-0.095833"/>
|
||||
<Kern code="1071" val="-0.095833"/>
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
<Kern code="1076" val="-0.095833"/>
|
||||
<Kern code="1083" val="-0.095833"/>
|
||||
<Kern code="1113" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.830551" height="0.686111" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.799995" height="0.686111" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.095833"/>
|
||||
<Kern code="1044" val="-0.095833"/>
|
||||
<Kern code="1071" val="-0.095833"/>
|
||||
<Kern code="1051" val="-0.031944"/>
|
||||
<Kern code="1033" val="-0.031944"/>
|
||||
<Kern code="1072" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.095833"/>
|
||||
<Kern code="1139" val="-0.095833"/>
|
||||
<Kern code="1077" val="-0.095833"/>
|
||||
<Kern code="1105" val="-0.095833"/>
|
||||
<Kern code="1089" val="-0.095833"/>
|
||||
<Kern code="1108" val="-0.095833"/>
|
||||
<Kern code="1092" val="-0.095833"/>
|
||||
<Kern code="1076" val="-0.095833"/>
|
||||
<Kern code="1083" val="-0.095833"/>
|
||||
<Kern code="1113" val="-0.095833"/>
|
||||
<Kern code="1103" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.86944" height="0.686111" italic="0.015973" >
|
||||
<Kern code="1040" val="-0.095833"/>
|
||||
<Kern code="1071" val="-0.095833"/>
|
||||
<Kern code="1044" val="-0.063889"/>
|
||||
<Kern code="1051" val="-0.063889"/>
|
||||
<Kern code="1033" val="-0.063889"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1072" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.095833"/>
|
||||
<Kern code="1139" val="-0.095833"/>
|
||||
<Kern code="1077" val="-0.095833"/>
|
||||
<Kern code="1105" val="-0.095833"/>
|
||||
<Kern code="1089" val="-0.095833"/>
|
||||
<Kern code="1108" val="-0.095833"/>
|
||||
<Kern code="1076" val="-0.095833"/>
|
||||
<Kern code="1083" val="-0.095833"/>
|
||||
<Kern code="1113" val="-0.095833"/>
|
||||
<Kern code="1103" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.818051" height="0.686111" />
|
||||
<Char code="1065" width="1.3312435" height="0.686111" depth="0.194445" />
|
||||
<Char code="1064" width="1.3312435" height="0.686111" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="1.124994" height="0.686111" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.702774" height="0.686111" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.818051" height="0.686111" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1066" width="1.006938" height="0.686111" >
|
||||
<Kern code="1046" val="-0.031944"/>
|
||||
<Kern code="1061" val="-0.031944"/>
|
||||
<Kern code="1054" val="-0.031944"/>
|
||||
<Kern code="1060" val="-0.031944"/>
|
||||
<Kern code="1138" val="-0.031944"/>
|
||||
<Kern code="1057" val="-0.031944"/>
|
||||
<Kern code="1028" val="-0.031944"/>
|
||||
<Kern code="1058" val="-0.095833"/>
|
||||
<Kern code="1066" val="-0.095833"/>
|
||||
<Kern code="1026" val="-0.095833"/>
|
||||
<Kern code="1035" val="-0.095833"/>
|
||||
<Kern code="1122" val="-0.095833"/>
|
||||
<Kern code="1063" val="-0.095833"/>
|
||||
<Kern code="1059" val="-0.095833"/>
|
||||
<Kern code="1140" val="-0.127777"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.559024" height="0.444445" >
|
||||
<Kern code="1095" val="-0.031944"/>
|
||||
<Kern code="1091" val="-0.031944"/>
|
||||
<Kern code="1141" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1073" width="0.574997" height="0.694445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.6388855" height="0.444445" depth="0.162038" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.6388855" height="0.444445" depth="0.162038" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.5270815" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.89444" height="0.694445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.49583" height="0.444445" >
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1083" val="-0.031944"/>
|
||||
<Kern code="1113" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1093" width="0.606941" height="0.444445" >
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1089" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1080" width="0.6388855" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.351387" height="0.694445" depth="0.194445" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.6388855" height="0.444445" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1089" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.6388855" height="0.444445" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.766663" height="0.444445" />
|
||||
<Char code="1085" width="0.6388855" height="0.444445" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.574997" height="0.444445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.6388855" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.6388855" height="0.444445" />
|
||||
<Char code="1088" width="0.6388855" height="0.444445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.511108" height="0.444445" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1078" val="-0.031944"/>
|
||||
<Kern code="1093" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.544441" height="0.444445" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1076" val="-0.031944"/>
|
||||
<Kern code="1083" val="-0.031944"/>
|
||||
<Kern code="1113" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.606941" height="0.444445" depth="0.194445" italic="0.015973" >
|
||||
<Kern code="1072" val="-0.031944"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1089" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
<Kern code="1077" val="-0.031944"/>
|
||||
<Kern code="1105" val="-0.031944"/>
|
||||
<Kern code="1103" val="-0.031944"/>
|
||||
<Kern code="1076" val="-0.063889"/>
|
||||
<Kern code="1083" val="-0.063889"/>
|
||||
<Kern code="1113" val="-0.063889"/>
|
||||
</Char>
|
||||
<Char code="1074" width="0.574997" height="0.444445" />
|
||||
<Char code="1097" width="0.941663" height="0.444445" depth="0.162038" />
|
||||
<Char code="1096" width="0.941663" height="0.444445" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.830551" height="0.444445" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.511108" height="0.444445" italic="0.006389" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.574997" height="0.444445" >
|
||||
<Kern code="1091" val="-0.063889"/>
|
||||
<Kern code="1141" val="-0.063889"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1092" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.687495" height="0.444445" >
|
||||
<Kern code="1091" val="-0.063889"/>
|
||||
<Kern code="1141" val="-0.063889"/>
|
||||
<Kern code="1090" val="-0.031944"/>
|
||||
<Kern code="1098" val="-0.031944"/>
|
||||
<Kern code="1123" val="-0.031944"/>
|
||||
<Kern code="1095" val="-0.095833"/>
|
||||
<Kern code="1086" val="-0.031944"/>
|
||||
<Kern code="1139" val="-0.031944"/>
|
||||
<Kern code="1092" val="-0.031944"/>
|
||||
<Kern code="1108" val="-0.031944"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnbxti10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnbxti10.ttf
vendored
Normal file
Binary file not shown.
707
3rdparty/MicroTeX/res/cyrillic/wnbxti10.xml
vendored
Normal file
707
3rdparty/MicroTeX/res/cyrillic/wnbxti10.xml
vendored
Normal file
@ -0,0 +1,707 @@
|
||||
<Font name="wnbxti10.ttf" id="wnbxti10" space="0.414441" xHeight="0.444445" quad="1.182211" unicode="95" romanVersion="wnbx10" ttVersion="wntt10" ssVersion="wnssbx10">
|
||||
<Char code="1034" width="1.198877" height="0.686111" italic="0.032991" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.198877" height="0.686111" italic="0.032991" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.894992" height="0.686111" depth="0.194445" italic="0.172084" />
|
||||
<Char code="1069" width="0.826658" height="0.686111" italic="0.090625" >
|
||||
<Kern code="1040" val="-0.029445"/>
|
||||
<Kern code="1044" val="-0.029445"/>
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1059" val="-0.029445"/>
|
||||
<Kern code="1140" val="-0.029445"/>
|
||||
<Kern code="1071" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.471664" height="0.686111" italic="0.156807" >
|
||||
<Kern code="1030" val="0.029445"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.826658" height="0.686111" italic="0.142084" />
|
||||
<Char code="1026" width="0.943324" height="0.686111" italic="0.12903" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.870825" height="0.686111" italic="0.084864" />
|
||||
<Char code="1114" width="0.82666" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1092" val="-0.029445"/>
|
||||
<Kern code="1108" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.797215" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1092" val="-0.029445"/>
|
||||
<Kern code="1108" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.62055" height="0.444445" depth="0.194445" italic="0.094261" />
|
||||
<Char code="1101" width="0.511606" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.355553" height="0.693255" italic="0.113872" />
|
||||
<Char code="1108" width="0.511606" height="0.444445" italic="0.081667" />
|
||||
<Char code="1106" width="0.532217" height="0.694445" depth="0.194445" italic="0.077777" />
|
||||
<Char code="1115" width="0.591105" height="0.694445" italic="0.094261" />
|
||||
<Char code="1070" width="1.236933" height="0.686111" italic="0.090625" >
|
||||
<Kern code="1040" val="-0.029445"/>
|
||||
<Kern code="1044" val="-0.029445"/>
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1059" val="-0.029445"/>
|
||||
<Kern code="1140" val="-0.029445"/>
|
||||
<Kern code="1071" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.318319" height="0.686111" italic="0.142084" >
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.894992" height="0.894394" italic="0.172084" />
|
||||
<Char code="1025" width="0.756659" height="0.894394" italic="0.114306" />
|
||||
<Char code="1140" width="0.934436" height="0.686111" italic="0.186251" >
|
||||
<Kern code="1040" val="-0.117777"/>
|
||||
<Kern code="1071" val="-0.117777"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1072" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.088333"/>
|
||||
<Kern code="1139" val="-0.088333"/>
|
||||
<Kern code="1077" val="-0.088333"/>
|
||||
<Kern code="1105" val="-0.088333"/>
|
||||
<Kern code="1080" val="-0.117777"/>
|
||||
<Kern code="1081" val="-0.117777"/>
|
||||
<Kern code="1094" val="-0.117777"/>
|
||||
<Kern code="1096" val="-0.117777"/>
|
||||
<Kern code="1097" val="-0.117777"/>
|
||||
<Kern code="1100" val="-0.117777"/>
|
||||
<Kern code="1099" val="-0.117777"/>
|
||||
<Kern code="1091" val="-0.117777"/>
|
||||
<Kern code="1141" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.117777"/>
|
||||
<Kern code="1083" val="-0.117777"/>
|
||||
<Kern code="1084" val="-0.117777"/>
|
||||
<Kern code="1113" val="-0.117777"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.885547" height="0.686111" italic="0.090625" >
|
||||
<Kern code="1040" val="-0.029445"/>
|
||||
<Kern code="1044" val="-0.029445"/>
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1059" val="-0.029445"/>
|
||||
<Kern code="1140" val="-0.029445"/>
|
||||
<Kern code="1071" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.649994" height="0.686111" italic="0.11264" />
|
||||
<Char code="1071" width="0.894992" height="0.686111" italic="0.172084" />
|
||||
<Char code="1102" width="0.835492" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1078" width="1.209432" height="0.444445" italic="0.052223" />
|
||||
<Char code="1081" width="0.649994" height="0.652727" italic="0.094261" />
|
||||
<Char code="1105" width="0.511606" height="0.686111" italic="0.085002" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1141" width="0.723051" height="0.444445" italic="0.1258335" >
|
||||
<Kern code="1083" val="-0.088333"/>
|
||||
<Kern code="1084" val="-0.088333"/>
|
||||
<Kern code="1113" val="-0.088333"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.532217" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.486941" height="0.444445" italic="0.081667" />
|
||||
<Char code="1103" width="0.62055" height="0.444445" italic="0.094261" />
|
||||
<Char code="776" width="0.591105" height="0.686111" italic="0.112642" />
|
||||
<Char code="1122" width="0.934436" height="0.75" italic="0.099202" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.591105" height="0.652727" italic="0.092905" />
|
||||
<Char code="1123" width="0.826658" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1092" val="-0.029445"/>
|
||||
<Kern code="1108" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.649994" height="0.472223" italic="0.008611" />
|
||||
<Char code="305" width="0.355553" height="0.444445" italic="0.094261" />
|
||||
<Char code="187" width="0.649994" height="0.472223" />
|
||||
<Char code="1040" width="0.865547" height="0.686111" >
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.81666" height="0.686111" italic="0.055418" />
|
||||
<Char code="1062" width="0.894992" height="0.686111" depth="0.194445" italic="0.172084" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.894992" height="0.686111" depth="0.194445" italic="0.172084" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.756659" height="0.686111" italic="0.114306" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.944435" height="0.686111" italic="0.090625" >
|
||||
<Kern code="1040" val="-0.029445"/>
|
||||
<Kern code="1044" val="-0.029445"/>
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1059" val="-0.029445"/>
|
||||
<Kern code="1140" val="-0.029445"/>
|
||||
<Kern code="1071" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.697771" height="0.686111" italic="0.12903" >
|
||||
<Kern code="1040" val="-0.088333"/>
|
||||
<Kern code="1044" val="-0.088333"/>
|
||||
<Kern code="1071" val="-0.088333"/>
|
||||
<Kern code="1051" val="-0.029445"/>
|
||||
<Kern code="1033" val="-0.029445"/>
|
||||
<Kern code="1072" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.088333"/>
|
||||
<Kern code="1139" val="-0.088333"/>
|
||||
<Kern code="1077" val="-0.088333"/>
|
||||
<Kern code="1105" val="-0.088333"/>
|
||||
<Kern code="1089" val="-0.088333"/>
|
||||
<Kern code="1108" val="-0.088333"/>
|
||||
<Kern code="1092" val="-0.088333"/>
|
||||
<Kern code="1080" val="-0.088333"/>
|
||||
<Kern code="1081" val="-0.088333"/>
|
||||
<Kern code="1094" val="-0.088333"/>
|
||||
<Kern code="1096" val="-0.088333"/>
|
||||
<Kern code="1097" val="-0.088333"/>
|
||||
<Kern code="1100" val="-0.088333"/>
|
||||
<Kern code="1099" val="-0.088333"/>
|
||||
<Kern code="1091" val="-0.088333"/>
|
||||
<Kern code="1141" val="-0.088333"/>
|
||||
<Kern code="1098" val="-0.088333"/>
|
||||
<Kern code="1083" val="-0.088333"/>
|
||||
<Kern code="1084" val="-0.088333"/>
|
||||
<Kern code="1113" val="-0.088333"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.865547" height="0.686111" italic="0.156807" >
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.894992" height="0.686111" italic="0.172084" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.61055" height="0.686111" italic="0.145001" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.894992" height="0.686111" italic="0.142084" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.894992" height="0.686111" italic="0.172084" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="1.072767" height="0.686111" italic="0.172084" />
|
||||
<Char code="1053" width="0.894992" height="0.686111" italic="0.172084" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.854991" height="0.686111" italic="0.090625" >
|
||||
<Kern code="1040" val="-0.029445"/>
|
||||
<Kern code="1044" val="-0.029445"/>
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1059" val="-0.029445"/>
|
||||
<Kern code="1140" val="-0.029445"/>
|
||||
<Kern code="1071" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.894992" height="0.686111" italic="0.172084" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.894992" height="0.686111" italic="0.172084" />
|
||||
<Char code="1056" width="0.787214" height="0.686111" italic="0.099202" >
|
||||
<Kern code="1040" val="-0.088333"/>
|
||||
<Kern code="1044" val="-0.088333"/>
|
||||
<Kern code="1051" val="-0.088333"/>
|
||||
<Kern code="1033" val="-0.088333"/>
|
||||
<Kern code="1071" val="-0.088333"/>
|
||||
<Kern code="1072" val="-0.029445"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1077" val="-0.029445"/>
|
||||
<Kern code="1105" val="-0.029445"/>
|
||||
<Kern code="1076" val="-0.088333"/>
|
||||
<Kern code="1083" val="-0.088333"/>
|
||||
<Kern code="1113" val="-0.088333"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.826658" height="0.686111" italic="0.142084" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.796103" height="0.686111" italic="0.12903" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.088333"/>
|
||||
<Kern code="1044" val="-0.088333"/>
|
||||
<Kern code="1071" val="-0.088333"/>
|
||||
<Kern code="1051" val="-0.029445"/>
|
||||
<Kern code="1033" val="-0.029445"/>
|
||||
<Kern code="1072" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.088333"/>
|
||||
<Kern code="1139" val="-0.088333"/>
|
||||
<Kern code="1077" val="-0.088333"/>
|
||||
<Kern code="1105" val="-0.088333"/>
|
||||
<Kern code="1089" val="-0.088333"/>
|
||||
<Kern code="1108" val="-0.088333"/>
|
||||
<Kern code="1092" val="-0.088333"/>
|
||||
<Kern code="1080" val="-0.088333"/>
|
||||
<Kern code="1081" val="-0.088333"/>
|
||||
<Kern code="1094" val="-0.088333"/>
|
||||
<Kern code="1096" val="-0.088333"/>
|
||||
<Kern code="1097" val="-0.088333"/>
|
||||
<Kern code="1100" val="-0.088333"/>
|
||||
<Kern code="1099" val="-0.088333"/>
|
||||
<Kern code="1091" val="-0.088333"/>
|
||||
<Kern code="1141" val="-0.088333"/>
|
||||
<Kern code="1098" val="-0.088333"/>
|
||||
<Kern code="1083" val="-0.088333"/>
|
||||
<Kern code="1084" val="-0.088333"/>
|
||||
<Kern code="1113" val="-0.088333"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.865547" height="0.686111" italic="0.186251" >
|
||||
<Kern code="1040" val="-0.088333"/>
|
||||
<Kern code="1071" val="-0.088333"/>
|
||||
<Kern code="1044" val="-0.058888"/>
|
||||
<Kern code="1051" val="-0.058888"/>
|
||||
<Kern code="1033" val="-0.058888"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1072" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.088333"/>
|
||||
<Kern code="1139" val="-0.088333"/>
|
||||
<Kern code="1077" val="-0.088333"/>
|
||||
<Kern code="1105" val="-0.088333"/>
|
||||
<Kern code="1089" val="-0.088333"/>
|
||||
<Kern code="1108" val="-0.088333"/>
|
||||
<Kern code="1080" val="-0.117777"/>
|
||||
<Kern code="1081" val="-0.117777"/>
|
||||
<Kern code="1094" val="-0.117777"/>
|
||||
<Kern code="1096" val="-0.117777"/>
|
||||
<Kern code="1097" val="-0.117777"/>
|
||||
<Kern code="1100" val="-0.117777"/>
|
||||
<Kern code="1099" val="-0.117777"/>
|
||||
<Kern code="1091" val="-0.117777"/>
|
||||
<Kern code="1141" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.117777"/>
|
||||
<Kern code="1083" val="-0.117777"/>
|
||||
<Kern code="1084" val="-0.117777"/>
|
||||
<Kern code="1113" val="-0.117777"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.81666" height="0.686111" italic="0.069758" />
|
||||
<Char code="1065" width="1.293599" height="0.686111" depth="0.194445" italic="0.172084" />
|
||||
<Char code="1064" width="1.293599" height="0.686111" italic="0.172084" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="1.101102" height="0.686111" italic="0.172084" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.708882" height="0.686111" italic="0.099202" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.81666" height="0.686111" italic="0.032991" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.988047" height="0.686111" italic="0.032991" >
|
||||
<Kern code="1046" val="-0.029445"/>
|
||||
<Kern code="1061" val="-0.029445"/>
|
||||
<Kern code="1054" val="-0.029445"/>
|
||||
<Kern code="1060" val="-0.029445"/>
|
||||
<Kern code="1138" val="-0.029445"/>
|
||||
<Kern code="1057" val="-0.029445"/>
|
||||
<Kern code="1028" val="-0.029445"/>
|
||||
<Kern code="1058" val="-0.088333"/>
|
||||
<Kern code="1066" val="-0.088333"/>
|
||||
<Kern code="1026" val="-0.088333"/>
|
||||
<Kern code="1035" val="-0.088333"/>
|
||||
<Kern code="1122" val="-0.088333"/>
|
||||
<Kern code="1063" val="-0.088333"/>
|
||||
<Kern code="1059" val="-0.088333"/>
|
||||
<Kern code="1140" val="-0.117777"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1082" val="-0.029445"/>
|
||||
<Kern code="1085" val="-0.029445"/>
|
||||
<Kern code="1114" val="-0.029445"/>
|
||||
<Kern code="1087" val="-0.029445"/>
|
||||
<Kern code="1090" val="-0.029445"/>
|
||||
<Kern code="1102" val="-0.029445"/>
|
||||
<Kern code="1123" val="-0.029445"/>
|
||||
<Kern code="1110" val="-0.029445"/>
|
||||
<Kern code="1080" val="-0.029445"/>
|
||||
<Kern code="1081" val="-0.029445"/>
|
||||
<Kern code="1094" val="-0.029445"/>
|
||||
<Kern code="1096" val="-0.029445"/>
|
||||
<Kern code="1097" val="-0.029445"/>
|
||||
<Kern code="1100" val="-0.029445"/>
|
||||
<Kern code="1099" val="-0.029445"/>
|
||||
<Kern code="1091" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.570494" height="0.444445" italic="0.094261" />
|
||||
<Char code="1073" width="0.549883" height="0.694445" italic="0.167501" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.655884" height="0.444445" depth="0.194445" italic="0.094261" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.549883" height="0.694445" italic="0.112694" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.511606" height="0.444445" italic="0.085002" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1092" width="0.785437" height="0.694445" depth="0.194445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.488052" height="0.444445" italic="0.085002" />
|
||||
<Char code="1093" width="0.648885" height="0.444445" italic="0.1258335" />
|
||||
<Char code="1080" width="0.649994" height="0.444445" italic="0.094261" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.355553" height="0.693255" depth="0.194445" italic="0.167204" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.591105" height="0.444445" italic="0.111112" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.62055" height="0.444445" italic="0.094261" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.856104" height="0.444445" italic="0.094261" />
|
||||
<Char code="1085" width="0.649994" height="0.444445" italic="0.094261" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.549883" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.649994" height="0.444445" italic="0.094261" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.62055" height="0.444445" italic="0.094261" />
|
||||
<Char code="1088" width="0.585216" height="0.444445" depth="0.194445" italic="0.078611" >
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.511606" height="0.444445" italic="0.052223" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1092" val="-0.058888"/>
|
||||
<Kern code="1072" val="-0.058888"/>
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.944435" height="0.444445" italic="0.094261" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.591105" height="0.444445" depth="0.194445" italic="0.105001" />
|
||||
<Char code="1074" width="0.570494" height="0.444445" italic="0.085002" />
|
||||
<Char code="1097" width="0.950325" height="0.444445" depth="0.194445" italic="0.094261" />
|
||||
<Char code="1096" width="0.944435" height="0.444445" italic="0.094261" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.767771" height="0.444445" italic="0.094261" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.532217" height="0.444445" italic="0.052223" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.591105" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1092" val="-0.029445"/>
|
||||
<Kern code="1108" val="-0.029445"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.561663" height="0.444445" italic="0.078611" >
|
||||
<Kern code="1083" val="-0.029445"/>
|
||||
<Kern code="1084" val="-0.029445"/>
|
||||
<Kern code="1113" val="-0.029445"/>
|
||||
<Kern code="1141" val="-0.029445"/>
|
||||
<Kern code="1098" val="-0.029445"/>
|
||||
<Kern code="1095" val="-0.088333"/>
|
||||
<Kern code="1086" val="-0.029445"/>
|
||||
<Kern code="1139" val="-0.029445"/>
|
||||
<Kern code="1092" val="-0.029445"/>
|
||||
<Kern code="1108" val="-0.029445"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnr10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnr10.ttf
vendored
Normal file
Binary file not shown.
615
3rdparty/MicroTeX/res/cyrillic/wnr10.xml
vendored
Normal file
615
3rdparty/MicroTeX/res/cyrillic/wnr10.xml
vendored
Normal file
@ -0,0 +1,615 @@
|
||||
<Font name="wnr10.ttf" id="wnr10" space="0.333334" xHeight="0.430555" quad="1.000003" unicode="95" boldVersion="wnbx10" ssVersion="wnss10" ttVersion="wntt10" itVersion="wnti10">
|
||||
<Char code="1034" width="1.083338" height="0.683332" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.083338" height="0.683332" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.777781" height="0.683332" depth="0.194445" />
|
||||
<Char code="1069" width="0.722224" height="0.683332" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
<Kern code="1071" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.361112" height="0.683332" >
|
||||
<Kern code="1030" val="0.027779"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.722224" height="0.683332" />
|
||||
<Char code="1026" width="0.8611145" height="0.683332" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.763891" height="0.683332" />
|
||||
<Char code="1114" width="0.763891" height="0.430555" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.763891" height="0.430555" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.555557" height="0.430555" depth="0.162038" italic="0.001389" />
|
||||
<Char code="1101" width="0.444446" height="0.430555" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.277779" height="0.667859" />
|
||||
<Char code="1108" width="0.43889" height="0.430555" />
|
||||
<Char code="1106" width="0.527781" height="0.694445" depth="0.194445" />
|
||||
<Char code="1115" width="0.555557" height="0.694445" />
|
||||
<Char code="1070" width="1.125003" height="0.683332" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
<Kern code="1071" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.194448" height="0.683332" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.777781" height="0.891615" />
|
||||
<Char code="1025" width="0.680557" height="0.891615" />
|
||||
<Char code="1140" width="0.8194475" height="0.683332" italic="0.013888" >
|
||||
<Kern code="1040" val="-0.111112"/>
|
||||
<Kern code="1071" val="-0.111112"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.111112"/>
|
||||
<Kern code="1083" val="-0.111112"/>
|
||||
<Kern code="1113" val="-0.111112"/>
|
||||
<Kern code="1103" val="-0.111112"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.777781" height="0.683332" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
<Kern code="1071" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.555557" height="0.683332" />
|
||||
<Char code="1071" width="0.777781" height="0.683332" />
|
||||
<Char code="1102" width="0.750003" height="0.430555" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1078" width="0.833336" height="0.430555" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1081" width="0.555557" height="0.638838" italic="0.001389" />
|
||||
<Char code="1105" width="0.444446" height="0.659131" />
|
||||
<Char code="1141" width="0.587503" height="0.430555" italic="0.013888" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.444446" height="0.430555" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.394445" height="0.430555" />
|
||||
<Char code="1103" width="0.541669" height="0.430555" italic="0.001389" />
|
||||
<Char code="776" width="0.500002" height="0.659131" />
|
||||
<Char code="1122" width="0.8194475" height="0.75" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.500002" height="0.638838" />
|
||||
<Char code="1123" width="0.500002" height="0.638838" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.555557" height="0.483335" />
|
||||
<Char code="305" width="0.277779" height="0.430555" />
|
||||
<Char code="187" width="0.555557" height="0.483335" />
|
||||
<Char code="1040" width="0.750002" height="0.683332" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.708336" height="0.683332" />
|
||||
<Char code="1062" width="0.777781" height="0.683332" depth="0.194445" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.777781" height="0.683332" depth="0.194445" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.680557" height="0.683332" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.833336" height="0.683332" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
<Kern code="1071" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.625002" height="0.683332" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1071" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.027779"/>
|
||||
<Kern code="1033" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.750002" height="0.683332" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.777781" height="0.683332" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.51389" height="0.683332" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.777781" height="0.683332" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.777781" height="0.683332" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.916669" height="0.683332" />
|
||||
<Char code="1053" width="0.777781" height="0.683332" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.777781" height="0.683332" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
<Kern code="1071" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.777781" height="0.683332" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.777781" height="0.683332" />
|
||||
<Char code="1056" width="0.680557" height="0.683332" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.083334"/>
|
||||
<Kern code="1033" val="-0.083334"/>
|
||||
<Kern code="1071" val="-0.083334"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.722224" height="0.683332" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.722224" height="0.683332" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1071" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.027779"/>
|
||||
<Kern code="1033" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.750002" height="0.683332" italic="0.013888" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1071" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.055555"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.708336" height="0.683332" />
|
||||
<Char code="1065" width="1.125003" height="0.683332" depth="0.194445" />
|
||||
<Char code="1064" width="1.125003" height="0.683332" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.972226" height="0.683332" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.611113" height="0.683332" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.708336" height="0.683332" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.888893" height="0.683332" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.083334"/>
|
||||
<Kern code="1140" val="-0.111112"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.500002" height="0.430555" >
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1091" val="-0.027779"/>
|
||||
<Kern code="1141" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1073" width="0.500002" height="0.694445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.555557" height="0.430555" depth="0.162038" italic="0.001389" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.555557" height="0.430555" depth="0.162038" italic="0.001389" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.444446" height="0.430555" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.7777815" height="0.694445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.444446" height="0.430555" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1093" width="0.527781" height="0.430555" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1080" width="0.555557" height="0.430555" italic="0.001389" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.305557" height="0.667859" depth="0.194445" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.555557" height="0.430555" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.555557" height="0.430555" italic="0.001389" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.666669" height="0.430555" italic="0.001389" />
|
||||
<Char code="1085" width="0.555557" height="0.430555" italic="0.001389" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.500002" height="0.430555" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.555557" height="0.430555" italic="0.001389" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.555557" height="0.430555" italic="0.001389" />
|
||||
<Char code="1088" width="0.555557" height="0.430555" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.444446" height="0.430555" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.500002" height="0.430555" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.527781" height="0.430555" depth="0.194445" italic="0.013888" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1074" width="0.500002" height="0.430555" />
|
||||
<Char code="1097" width="0.805559" height="0.430555" depth="0.162038" italic="0.001389" />
|
||||
<Char code="1096" width="0.805559" height="0.430555" italic="0.001389" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.722224" height="0.430555" italic="0.001389" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.444446" height="0.430555" italic="0.005556" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.500002" height="0.430555" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.611113" height="0.430555" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnss10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnss10.ttf
vendored
Normal file
Binary file not shown.
605
3rdparty/MicroTeX/res/cyrillic/wnss10.xml
vendored
Normal file
605
3rdparty/MicroTeX/res/cyrillic/wnss10.xml
vendored
Normal file
@ -0,0 +1,605 @@
|
||||
<Font name="wnss10.ttf" id="wnss10" space="0.333334" xHeight="0.444445" quad="1.000003" unicode="95" romanVersion="wnr10" ttVersion="wntt10" boldVersion="wnssbx10" itVersion="wnssi10">
|
||||
<Char code="1034" width="1.020838" height="0.694445" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.037504" height="0.694445" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.694448" height="0.694445" depth="0.194445" />
|
||||
<Char code="1069" width="0.638891" height="0.694445" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.277781" height="0.694445" >
|
||||
<Kern code="1030" val="0.027779"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.638891" height="0.694445" />
|
||||
<Char code="1026" width="0.8194475" height="0.694445" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.763891" height="0.694445" />
|
||||
<Char code="1114" width="0.765282" height="0.444445" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.755559" height="0.444445" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.537503" height="0.444445" depth="0.162038" />
|
||||
<Char code="1101" width="0.444446" height="0.444445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.23889" height="0.679365" />
|
||||
<Char code="1108" width="0.43889" height="0.444445" />
|
||||
<Char code="1106" width="0.488892" height="0.694445" depth="0.194445" />
|
||||
<Char code="1115" width="0.516668" height="0.694445" />
|
||||
<Char code="1070" width="1.04167" height="0.694445" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.111117" height="0.694445" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.694448" height="0.902727" />
|
||||
<Char code="1025" width="0.597224" height="0.902727" />
|
||||
<Char code="1140" width="0.722226" height="0.694445" italic="0.013888" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.055555"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.777781" height="0.694445" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.555557" height="0.694445" />
|
||||
<Char code="1071" width="0.645836" height="0.694445" />
|
||||
<Char code="1102" width="0.730558" height="0.444445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1078" width="0.7388935" height="0.444445" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1081" width="0.537503" height="0.652727" />
|
||||
<Char code="1105" width="0.444446" height="0.660319" />
|
||||
<Char code="1141" width="0.491667" height="0.444445" italic="0.013888" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.500002" height="0.444445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.383334" height="0.444445" />
|
||||
<Char code="1103" width="0.515279" height="0.444445" />
|
||||
<Char code="776" width="0.500002" height="0.660319" />
|
||||
<Char code="1122" width="0.7777815" height="0.75" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.500002" height="0.652727" />
|
||||
<Char code="1123" width="0.500002" height="0.652727" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.666669" height="0.438889" />
|
||||
<Char code="305" width="0.23889" height="0.444445" />
|
||||
<Char code="187" width="0.666669" height="0.438889" />
|
||||
<Char code="1040" width="0.66667" height="0.694445" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.66667" height="0.694445" />
|
||||
<Char code="1062" width="0.711116" height="0.694445" depth="0.194445" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.727783" height="0.694445" depth="0.194445" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.597224" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.833336" height="0.694445" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.541669" height="0.694445" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.66667" height="0.694445" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.694448" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.472224" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.694448" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.711116" height="0.694445" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.875005" height="0.694445" />
|
||||
<Char code="1053" width="0.694448" height="0.694445" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.736113" height="0.694445" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.694448" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.694448" height="0.694445" />
|
||||
<Char code="1056" width="0.638891" height="0.694445" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.083334"/>
|
||||
<Kern code="1033" val="-0.083334"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.638891" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.680557" height="0.694445" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.66667" height="0.694445" italic="0.013888" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.055555"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.66667" height="0.694445" />
|
||||
<Char code="1065" width="1.100006" height="0.694445" depth="0.194445" />
|
||||
<Char code="1064" width="1.083339" height="0.694445" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.888895" height="0.694445" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.611113" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.66667" height="0.694445" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.868059" height="0.694445" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.480557" height="0.444445" >
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1091" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1073" width="0.500002" height="0.694445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.5486145" height="0.444445" depth="0.162038" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.538892" height="0.444445" depth="0.162038" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.444446" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.76667" height="0.694445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.404167" height="0.444445" italic="0.013888" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1093" width="0.461113" height="0.444445" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1080" width="0.537503" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.266668" height="0.679365" depth="0.194445" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.488892" height="0.444445" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.527781" height="0.444445" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.669447" height="0.444445" />
|
||||
<Char code="1085" width="0.516668" height="0.444445" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.500002" height="0.444445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.516668" height="0.444445" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.537503" height="0.444445" />
|
||||
<Char code="1088" width="0.516668" height="0.444445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.444446" height="0.444445" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.458334" height="0.444445" italic="0.019444" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.461113" height="0.444445" depth="0.194445" italic="0.013888" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1074" width="0.480557" height="0.444445" />
|
||||
<Char code="1097" width="0.7777815" height="0.444445" depth="0.162038" />
|
||||
<Char code="1096" width="0.76667" height="0.444445" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.683336" height="0.444445" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.444446" height="0.444445" italic="0.002777" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.480557" height="0.444445" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.590279" height="0.444445" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnssbx10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnssbx10.ttf
vendored
Normal file
Binary file not shown.
605
3rdparty/MicroTeX/res/cyrillic/wnssbx10.xml
vendored
Normal file
605
3rdparty/MicroTeX/res/cyrillic/wnssbx10.xml
vendored
Normal file
@ -0,0 +1,605 @@
|
||||
<Font name="wnssbx10.ttf" id="wnssbx10" space="0.366669" xHeight="0.458333" quad="1.100006" unicode="95" romanVersion="wnbx10" ttVersion="wntt10">
|
||||
<Char code="1034" width="1.115285" height="0.694445" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.15834" height="0.694445" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.763893" height="0.694445" depth="0.194445" />
|
||||
<Char code="1069" width="0.702782" height="0.694445" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.030556"/>
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.330557" height="0.694445" >
|
||||
<Kern code="1030" val="0.030556"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.702782" height="0.694445" />
|
||||
<Char code="1026" width="0.886116" height="0.694445" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.840283" height="0.694445" />
|
||||
<Char code="1114" width="0.845839" height="0.458333" >
|
||||
<Kern code="1091" val="-0.061111"/>
|
||||
<Kern code="1141" val="-0.061111"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1092" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.852783" height="0.458333" >
|
||||
<Kern code="1091" val="-0.061111"/>
|
||||
<Kern code="1141" val="-0.061111"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1092" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.59167" height="0.458333" depth="0.162038" />
|
||||
<Char code="1101" width="0.488892" height="0.458333" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.255557" height="0.694445" />
|
||||
<Char code="1108" width="0.48278" height="0.458333" />
|
||||
<Char code="1106" width="0.530559" height="0.694445" depth="0.194445" />
|
||||
<Char code="1115" width="0.561114" height="0.694445" />
|
||||
<Char code="1070" width="1.143062" height="0.694445" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.030556"/>
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.214895" height="0.694445" >
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.030556"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.763893" height="0.902727" />
|
||||
<Char code="1025" width="0.64167" height="0.902727" />
|
||||
<Char code="1140" width="0.794449" height="0.694445" italic="0.015279" >
|
||||
<Kern code="1040" val="-0.091667"/>
|
||||
<Kern code="1044" val="-0.061111"/>
|
||||
<Kern code="1051" val="-0.061111"/>
|
||||
<Kern code="1033" val="-0.061111"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
<Kern code="1076" val="-0.091667"/>
|
||||
<Kern code="1083" val="-0.091667"/>
|
||||
<Kern code="1113" val="-0.091667"/>
|
||||
<Kern code="1103" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.85556" height="0.694445" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.030556"/>
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.6111145" height="0.694445" />
|
||||
<Char code="1071" width="0.702782" height="0.694445" />
|
||||
<Char code="1102" width="0.800005" height="0.458333" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1078" width="0.80556" height="0.458333" >
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1081" width="0.59167" height="0.6666155" />
|
||||
<Char code="1105" width="0.511114" height="0.694445" />
|
||||
<Char code="1141" width="0.562503" height="0.458333" italic="0.015279" >
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
<Kern code="1076" val="-0.061111"/>
|
||||
<Kern code="1083" val="-0.061111"/>
|
||||
<Kern code="1113" val="-0.061111"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.550003" height="0.458333" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.421669" height="0.458333" />
|
||||
<Char code="1103" width="0.555559" height="0.458333" />
|
||||
<Char code="776" width="0.550003" height="0.694445" />
|
||||
<Char code="1122" width="0.85556" height="0.75" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.550003" height="0.6666155" />
|
||||
<Char code="1123" width="0.550003" height="0.6666155" >
|
||||
<Kern code="1091" val="-0.061111"/>
|
||||
<Kern code="1141" val="-0.061111"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1092" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.733337" height="0.5" />
|
||||
<Char code="305" width="0.255557" height="0.458333" />
|
||||
<Char code="187" width="0.733337" height="0.5" />
|
||||
<Char code="1040" width="0.733337" height="0.694445" >
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.733337" height="0.694445" />
|
||||
<Char code="1062" width="0.806949" height="0.694445" depth="0.194445" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.850004" height="0.694445" depth="0.194445" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.64167" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.916672" height="0.694445" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.030556"/>
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.580559" height="0.694445" >
|
||||
<Kern code="1040" val="-0.091667"/>
|
||||
<Kern code="1044" val="-0.091667"/>
|
||||
<Kern code="1051" val="-0.061111"/>
|
||||
<Kern code="1033" val="-0.061111"/>
|
||||
<Kern code="1072" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.091667"/>
|
||||
<Kern code="1139" val="-0.091667"/>
|
||||
<Kern code="1077" val="-0.091667"/>
|
||||
<Kern code="1105" val="-0.091667"/>
|
||||
<Kern code="1089" val="-0.091667"/>
|
||||
<Kern code="1108" val="-0.091667"/>
|
||||
<Kern code="1092" val="-0.091667"/>
|
||||
<Kern code="1076" val="-0.091667"/>
|
||||
<Kern code="1083" val="-0.091667"/>
|
||||
<Kern code="1113" val="-0.091667"/>
|
||||
<Kern code="1103" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.733337" height="0.694445" >
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.030556"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.763893" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.519447" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.763893" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.030556"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.806949" height="0.694445" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.977783" height="0.694445" />
|
||||
<Char code="1053" width="0.763893" height="0.694445" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.794449" height="0.694445" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.030556"/>
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.763893" height="0.694445" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.763893" height="0.694445" />
|
||||
<Char code="1056" width="0.702782" height="0.694445" >
|
||||
<Kern code="1040" val="-0.091667"/>
|
||||
<Kern code="1044" val="-0.091667"/>
|
||||
<Kern code="1051" val="-0.091667"/>
|
||||
<Kern code="1033" val="-0.091667"/>
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
<Kern code="1076" val="-0.091667"/>
|
||||
<Kern code="1083" val="-0.091667"/>
|
||||
<Kern code="1113" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.702782" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.733337" height="0.694445" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.091667"/>
|
||||
<Kern code="1044" val="-0.091667"/>
|
||||
<Kern code="1051" val="-0.061111"/>
|
||||
<Kern code="1033" val="-0.061111"/>
|
||||
<Kern code="1072" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.091667"/>
|
||||
<Kern code="1139" val="-0.091667"/>
|
||||
<Kern code="1077" val="-0.091667"/>
|
||||
<Kern code="1105" val="-0.091667"/>
|
||||
<Kern code="1089" val="-0.091667"/>
|
||||
<Kern code="1108" val="-0.091667"/>
|
||||
<Kern code="1092" val="-0.091667"/>
|
||||
<Kern code="1076" val="-0.091667"/>
|
||||
<Kern code="1083" val="-0.091667"/>
|
||||
<Kern code="1113" val="-0.091667"/>
|
||||
<Kern code="1103" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.733337" height="0.694445" italic="0.015279" >
|
||||
<Kern code="1040" val="-0.030556"/>
|
||||
<Kern code="1044" val="-0.061111"/>
|
||||
<Kern code="1051" val="-0.061111"/>
|
||||
<Kern code="1033" val="-0.061111"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1076" val="-0.091667"/>
|
||||
<Kern code="1083" val="-0.091667"/>
|
||||
<Kern code="1113" val="-0.091667"/>
|
||||
<Kern code="1103" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.733337" height="0.694445" />
|
||||
<Char code="1065" width="1.250008" height="0.694445" depth="0.194445" />
|
||||
<Char code="1064" width="1.206952" height="0.694445" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.977783" height="0.694445" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.672226" height="0.694445" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.733337" height="0.694445" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.940283" height="0.694445" >
|
||||
<Kern code="1046" val="-0.030556"/>
|
||||
<Kern code="1061" val="-0.030556"/>
|
||||
<Kern code="1054" val="-0.030556"/>
|
||||
<Kern code="1060" val="-0.030556"/>
|
||||
<Kern code="1138" val="-0.030556"/>
|
||||
<Kern code="1057" val="-0.030556"/>
|
||||
<Kern code="1028" val="-0.030556"/>
|
||||
<Kern code="1058" val="-0.091667"/>
|
||||
<Kern code="1066" val="-0.091667"/>
|
||||
<Kern code="1026" val="-0.091667"/>
|
||||
<Kern code="1035" val="-0.091667"/>
|
||||
<Kern code="1122" val="-0.091667"/>
|
||||
<Kern code="1063" val="-0.091667"/>
|
||||
<Kern code="1059" val="-0.030556"/>
|
||||
<Kern code="1140" val="-0.091667"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.525003" height="0.458333" >
|
||||
<Kern code="1095" val="-0.030556"/>
|
||||
<Kern code="1091" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1073" width="0.550003" height="0.694445" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.62917" height="0.458333" depth="0.162038" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.636114" height="0.458333" depth="0.162038" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.511114" height="0.458333" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.836118" height="0.694445" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.433336" height="0.458333" italic="0.015279" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1083" val="-0.030556"/>
|
||||
<Kern code="1113" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1093" width="0.500003" height="0.458333" >
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1080" width="0.59167" height="0.458333" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.286113" height="0.694445" depth="0.194445" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.530559" height="0.458333" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.598615" height="0.458333" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.744449" height="0.458333" />
|
||||
<Char code="1085" width="0.561114" height="0.458333" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.550003" height="0.458333" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.561114" height="0.458333" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.59167" height="0.458333" />
|
||||
<Char code="1088" width="0.561114" height="0.458333" depth="0.194445" >
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.488892" height="0.458333" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1078" val="-0.030556"/>
|
||||
<Kern code="1093" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.488892" height="0.458333" italic="0.02139" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
<Kern code="1076" val="-0.030556"/>
|
||||
<Kern code="1083" val="-0.030556"/>
|
||||
<Kern code="1113" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.500003" height="0.458333" depth="0.194445" italic="0.015279" >
|
||||
<Kern code="1072" val="-0.030556"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1089" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
<Kern code="1077" val="-0.030556"/>
|
||||
<Kern code="1105" val="-0.030556"/>
|
||||
<Kern code="1103" val="-0.030556"/>
|
||||
<Kern code="1076" val="-0.061111"/>
|
||||
<Kern code="1083" val="-0.061111"/>
|
||||
<Kern code="1113" val="-0.061111"/>
|
||||
</Char>
|
||||
<Char code="1074" width="0.525003" height="0.458333" />
|
||||
<Char code="1097" width="0.873616" height="0.458333" depth="0.162038" />
|
||||
<Char code="1096" width="0.836116" height="0.458333" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.744449" height="0.458333" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.488892" height="0.458333" italic="0.006111" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.525003" height="0.458333" >
|
||||
<Kern code="1091" val="-0.061111"/>
|
||||
<Kern code="1141" val="-0.061111"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1092" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.64167" height="0.458333" >
|
||||
<Kern code="1091" val="-0.061111"/>
|
||||
<Kern code="1141" val="-0.061111"/>
|
||||
<Kern code="1090" val="-0.030556"/>
|
||||
<Kern code="1098" val="-0.030556"/>
|
||||
<Kern code="1123" val="-0.030556"/>
|
||||
<Kern code="1095" val="-0.091667"/>
|
||||
<Kern code="1086" val="-0.030556"/>
|
||||
<Kern code="1139" val="-0.030556"/>
|
||||
<Kern code="1092" val="-0.030556"/>
|
||||
<Kern code="1108" val="-0.030556"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnssi10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnssi10.ttf
vendored
Normal file
Binary file not shown.
605
3rdparty/MicroTeX/res/cyrillic/wnssi10.xml
vendored
Normal file
605
3rdparty/MicroTeX/res/cyrillic/wnssi10.xml
vendored
Normal file
@ -0,0 +1,605 @@
|
||||
<Font name="wnssi10.ttf" id="wnssi10" space="0.333334" xHeight="0.444445" quad="1.000003" unicode="95" romanVersion="wnti10" ttVersion="wntt10" boldVersion="wnssbx10">
|
||||
<Char code="1034" width="1.020838" height="0.694445" italic="0.02595" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.037504" height="0.694445" italic="0.02595" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.694448" height="0.694445" depth="0.194445" italic="0.080938" />
|
||||
<Char code="1069" width="0.638891" height="0.694445" italic="0.075546" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.277781" height="0.694445" italic="0.1337185" >
|
||||
<Kern code="1030" val="0.027779"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.638891" height="0.694445" italic="0.119829" />
|
||||
<Char code="1026" width="0.8194475" height="0.694445" italic="0.1337185" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.763891" height="0.694445" italic="0.0920515" />
|
||||
<Char code="1114" width="0.765282" height="0.444445" italic="0.0389" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.755559" height="0.444445" italic="0.0389" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.537503" height="0.444445" depth="0.162038" italic="0.04169" />
|
||||
<Char code="1101" width="0.444446" height="0.444445" italic="0.060573" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.23889" height="0.679365" italic="0.09718" />
|
||||
<Char code="1108" width="0.43889" height="0.444445" italic="0.083357" />
|
||||
<Char code="1106" width="0.488892" height="0.694445" depth="0.194445" italic="0.066129" />
|
||||
<Char code="1115" width="0.516668" height="0.694445" italic="0.017778" />
|
||||
<Char code="1070" width="1.04167" height="0.694445" italic="0.075546" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.111117" height="0.694445" italic="0.119829" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.694448" height="0.902727" italic="0.080938" />
|
||||
<Char code="1025" width="0.597224" height="0.902727" italic="0.119829" />
|
||||
<Char code="1140" width="0.722226" height="0.694445" italic="0.161496" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.055555"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.777781" height="0.694445" italic="0.075546" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.555557" height="0.694445" italic="0.0920515" />
|
||||
<Char code="1071" width="0.645836" height="0.694445" italic="0.080938" />
|
||||
<Char code="1102" width="0.730558" height="0.444445" italic="0.066129" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1078" width="0.7388935" height="0.444445" italic="0.083357" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1081" width="0.537503" height="0.652727" italic="0.04169" />
|
||||
<Char code="1105" width="0.444446" height="0.660319" italic="0.067778" />
|
||||
<Char code="1141" width="0.491667" height="0.444445" italic="0.108357" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.500002" height="0.444445" italic="0.03835" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.383334" height="0.444445" italic="0.077802" />
|
||||
<Char code="1103" width="0.515279" height="0.444445" italic="0.04169" />
|
||||
<Char code="776" width="0.500002" height="0.660319" italic="0.059799" />
|
||||
<Char code="1122" width="0.7777815" height="0.75" italic="0.082927" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.500002" height="0.652727" italic="0.085962" />
|
||||
<Char code="1123" width="0.500002" height="0.652727" italic="0.030568" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.666669" height="0.438889" italic="0.02018" />
|
||||
<Char code="305" width="0.23889" height="0.444445" italic="0.04169" />
|
||||
<Char code="187" width="0.666669" height="0.438889" />
|
||||
<Char code="1040" width="0.66667" height="0.694445" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.66667" height="0.694445" italic="0.064273" />
|
||||
<Char code="1062" width="0.711116" height="0.694445" depth="0.194445" italic="0.080938" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.727783" height="0.694445" depth="0.194445" italic="0.080938" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.597224" height="0.694445" italic="0.119829" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.833336" height="0.694445" italic="0.075546" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.541669" height="0.694445" italic="0.1337185" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.66667" height="0.694445" italic="0.1337185" >
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.694448" height="0.694445" italic="0.080938" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.472224" height="0.694445" italic="0.080938" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.694448" height="0.694445" italic="0.119829" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.711116" height="0.694445" italic="0.080938" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.875005" height="0.694445" italic="0.080938" />
|
||||
<Char code="1053" width="0.694448" height="0.694445" italic="0.080938" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.736113" height="0.694445" italic="0.075546" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.027779"/>
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.694448" height="0.694445" italic="0.080938" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.694448" height="0.694445" italic="0.080938" />
|
||||
<Char code="1056" width="0.638891" height="0.694445" italic="0.082927" >
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.083334"/>
|
||||
<Kern code="1033" val="-0.083334"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.638891" height="0.694445" italic="0.119829" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.680557" height="0.694445" italic="0.1337185" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.083334"/>
|
||||
<Kern code="1044" val="-0.083334"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1072" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.083334"/>
|
||||
<Kern code="1139" val="-0.083334"/>
|
||||
<Kern code="1077" val="-0.083334"/>
|
||||
<Kern code="1105" val="-0.083334"/>
|
||||
<Kern code="1089" val="-0.083334"/>
|
||||
<Kern code="1108" val="-0.083334"/>
|
||||
<Kern code="1092" val="-0.083334"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.66667" height="0.694445" italic="0.161496" >
|
||||
<Kern code="1040" val="-0.027779"/>
|
||||
<Kern code="1044" val="-0.055555"/>
|
||||
<Kern code="1051" val="-0.055555"/>
|
||||
<Kern code="1033" val="-0.055555"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.083334"/>
|
||||
<Kern code="1083" val="-0.083334"/>
|
||||
<Kern code="1113" val="-0.083334"/>
|
||||
<Kern code="1103" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.66667" height="0.694445" italic="0.05515" />
|
||||
<Char code="1065" width="1.100006" height="0.694445" depth="0.194445" italic="0.080938" />
|
||||
<Char code="1064" width="1.083339" height="0.694445" italic="0.080938" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.888895" height="0.694445" italic="0.080938" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.611113" height="0.694445" italic="0.082927" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.66667" height="0.694445" italic="0.02595" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.868059" height="0.694445" italic="0.02595" >
|
||||
<Kern code="1046" val="-0.027779"/>
|
||||
<Kern code="1061" val="-0.027779"/>
|
||||
<Kern code="1054" val="-0.027779"/>
|
||||
<Kern code="1060" val="-0.027779"/>
|
||||
<Kern code="1138" val="-0.027779"/>
|
||||
<Kern code="1057" val="-0.027779"/>
|
||||
<Kern code="1028" val="-0.027779"/>
|
||||
<Kern code="1058" val="-0.083334"/>
|
||||
<Kern code="1066" val="-0.083334"/>
|
||||
<Kern code="1026" val="-0.083334"/>
|
||||
<Kern code="1035" val="-0.083334"/>
|
||||
<Kern code="1122" val="-0.083334"/>
|
||||
<Kern code="1063" val="-0.083334"/>
|
||||
<Kern code="1059" val="-0.027779"/>
|
||||
<Kern code="1140" val="-0.083334"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.480557" height="0.444445" italic="0.009807" >
|
||||
<Kern code="1095" val="-0.027779"/>
|
||||
<Kern code="1091" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1073" width="0.500002" height="0.694445" italic="0.094829" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.5486145" height="0.444445" depth="0.162038" italic="0.04169" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.538892" height="0.444445" depth="0.162038" italic="0.04169" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.444446" height="0.444445" italic="0.067778" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.76667" height="0.694445" depth="0.194445" italic="0.0389" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.404167" height="0.444445" italic="0.108357" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1093" width="0.461113" height="0.444445" italic="0.09169" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1080" width="0.537503" height="0.444445" italic="0.04169" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.266668" height="0.679365" depth="0.194445" italic="0.091624" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.488892" height="0.444445" italic="0.083357" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.527781" height="0.444445" italic="0.04169" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.669447" height="0.444445" italic="0.04169" />
|
||||
<Char code="1085" width="0.516668" height="0.444445" italic="0.04169" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.500002" height="0.444445" italic="0.066129" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.516668" height="0.444445" italic="0.04169" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.537503" height="0.444445" italic="0.04169" />
|
||||
<Char code="1088" width="0.516668" height="0.444445" depth="0.194445" italic="0.0389" >
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.444446" height="0.444445" italic="0.083357" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1078" val="-0.027779"/>
|
||||
<Kern code="1093" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.458334" height="0.444445" italic="0.113913" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
<Kern code="1076" val="-0.027779"/>
|
||||
<Kern code="1083" val="-0.027779"/>
|
||||
<Kern code="1113" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.461113" height="0.444445" depth="0.194445" italic="0.108357" >
|
||||
<Kern code="1072" val="-0.027779"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1089" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
<Kern code="1077" val="-0.027779"/>
|
||||
<Kern code="1105" val="-0.027779"/>
|
||||
<Kern code="1103" val="-0.027779"/>
|
||||
<Kern code="1076" val="-0.055555"/>
|
||||
<Kern code="1083" val="-0.055555"/>
|
||||
<Kern code="1113" val="-0.055555"/>
|
||||
</Char>
|
||||
<Char code="1074" width="0.480557" height="0.444445" italic="0.0389" />
|
||||
<Char code="1097" width="0.7777815" height="0.444445" depth="0.162038" italic="0.04169" />
|
||||
<Char code="1096" width="0.76667" height="0.444445" italic="0.04169" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.683336" height="0.444445" italic="0.04169" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.444446" height="0.444445" italic="0.050013" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.480557" height="0.444445" italic="0.0389" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.590279" height="0.444445" italic="0.0389" >
|
||||
<Kern code="1091" val="-0.055555"/>
|
||||
<Kern code="1141" val="-0.055555"/>
|
||||
<Kern code="1090" val="-0.027779"/>
|
||||
<Kern code="1098" val="-0.027779"/>
|
||||
<Kern code="1123" val="-0.027779"/>
|
||||
<Kern code="1095" val="-0.083334"/>
|
||||
<Kern code="1086" val="-0.027779"/>
|
||||
<Kern code="1139" val="-0.027779"/>
|
||||
<Kern code="1092" val="-0.027779"/>
|
||||
<Kern code="1108" val="-0.027779"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wnti10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wnti10.ttf
vendored
Normal file
Binary file not shown.
707
3rdparty/MicroTeX/res/cyrillic/wnti10.xml
vendored
Normal file
707
3rdparty/MicroTeX/res/cyrillic/wnti10.xml
vendored
Normal file
@ -0,0 +1,707 @@
|
||||
<Font name="wnti10.ttf" id="wnti10" space="0.357776" xHeight="0.430555" quad="1.022217" unicode="95" romanVersion="wnr10" boldVersion="wnbxti10" ssVersion="wnssi10" ttVersion="wntt10">
|
||||
<Char code="1034" width="1.048883" height="0.683332" italic="0.036629" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1033" width="1.048883" height="0.683332" italic="0.036629" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1039" width="0.768885" height="0.683332" depth="0.194445" italic="0.16389" />
|
||||
<Char code="1069" width="0.715551" height="0.683332" italic="0.0940275" >
|
||||
<Kern code="1040" val="-0.025556"/>
|
||||
<Kern code="1044" val="-0.025556"/>
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1059" val="-0.025556"/>
|
||||
<Kern code="1140" val="-0.025556"/>
|
||||
<Kern code="1071" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1030" width="0.385553" height="0.683332" italic="0.158055" >
|
||||
<Kern code="1030" val="0.025556"/>
|
||||
</Char>
|
||||
<Char code="1028" width="0.715551" height="0.683332" italic="0.145277" />
|
||||
<Char code="1026" width="0.843328" height="0.683332" italic="0.133055" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1035" width="0.753885" height="0.683332" italic="0.094722" />
|
||||
<Char code="1114" width="0.715551" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1092" val="-0.025556"/>
|
||||
<Kern code="1108" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1113" width="0.689997" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1092" val="-0.025556"/>
|
||||
<Kern code="1108" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1119" width="0.536664" height="0.430555" depth="0.194445" italic="0.076714" />
|
||||
<Char code="1101" width="0.442108" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1110" width="0.306665" height="0.655359" italic="0.101896" />
|
||||
<Char code="1108" width="0.442108" height="0.430555" italic="0.082083" />
|
||||
<Char code="1106" width="0.459997" height="0.694445" depth="0.194445" italic="0.075346" />
|
||||
<Char code="1115" width="0.511108" height="0.694445" italic="0.076714" />
|
||||
<Char code="1070" width="1.087216" height="0.683332" italic="0.0940275" >
|
||||
<Kern code="1040" val="-0.025556"/>
|
||||
<Kern code="1044" val="-0.025556"/>
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1059" val="-0.025556"/>
|
||||
<Kern code="1140" val="-0.025556"/>
|
||||
<Kern code="1071" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1046" width="1.152216" height="0.683332" italic="0.145277" >
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1049" width="0.768885" height="0.891615" italic="0.16389" />
|
||||
<Char code="1025" width="0.678329" height="0.891615" italic="0.120277" />
|
||||
<Char code="1140" width="0.806107" height="0.683332" italic="0.183611" >
|
||||
<Kern code="1040" val="-0.1022215"/>
|
||||
<Kern code="1071" val="-0.1022215"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1072" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.076666"/>
|
||||
<Kern code="1139" val="-0.076666"/>
|
||||
<Kern code="1077" val="-0.076666"/>
|
||||
<Kern code="1105" val="-0.076666"/>
|
||||
<Kern code="1080" val="-0.1022215"/>
|
||||
<Kern code="1081" val="-0.1022215"/>
|
||||
<Kern code="1094" val="-0.1022215"/>
|
||||
<Kern code="1096" val="-0.1022215"/>
|
||||
<Kern code="1097" val="-0.1022215"/>
|
||||
<Kern code="1100" val="-0.1022215"/>
|
||||
<Kern code="1099" val="-0.1022215"/>
|
||||
<Kern code="1091" val="-0.1022215"/>
|
||||
<Kern code="1141" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.1022215"/>
|
||||
<Kern code="1083" val="-0.1022215"/>
|
||||
<Kern code="1084" val="-0.1022215"/>
|
||||
<Kern code="1113" val="-0.1022215"/>
|
||||
</Char>
|
||||
<Char code="1138" width="0.766663" height="0.683332" italic="0.0940275" >
|
||||
<Kern code="1040" val="-0.025556"/>
|
||||
<Kern code="1044" val="-0.025556"/>
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1059" val="-0.025556"/>
|
||||
<Kern code="1140" val="-0.025556"/>
|
||||
<Kern code="1071" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1029" width="0.56222" height="0.683332" italic="0.119722" />
|
||||
<Char code="1071" width="0.768885" height="0.683332" italic="0.16389" />
|
||||
<Char code="1102" width="0.723218" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1078" width="1.047772" height="0.430555" italic="0.056528" />
|
||||
<Char code="1081" width="0.56222" height="0.638838" italic="0.076714" />
|
||||
<Char code="1105" width="0.442108" height="0.659131" italic="0.075139" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1141" width="0.615275" height="0.430555" italic="0.120417" >
|
||||
<Kern code="1083" val="-0.076666"/>
|
||||
<Kern code="1084" val="-0.076666"/>
|
||||
<Kern code="1113" val="-0.076666"/>
|
||||
</Char>
|
||||
<Char code="1139" width="0.459997" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1109" width="0.408887" height="0.430555" italic="0.082083" />
|
||||
<Char code="1103" width="0.536664" height="0.430555" italic="0.076714" />
|
||||
<Char code="776" width="0.511108" height="0.659131" italic="0.102562" />
|
||||
<Char code="1122" width="0.806107" height="0.75" italic="0.10257" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="774" width="0.511108" height="0.638838" italic="0.094154" />
|
||||
<Char code="1123" width="0.715551" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1092" val="-0.025556"/>
|
||||
<Kern code="1108" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="171" width="0.56222" height="0.483335" italic="0.022985" />
|
||||
<Char code="305" width="0.306665" height="0.430555" italic="0.076714" />
|
||||
<Char code="187" width="0.56222" height="0.483335" />
|
||||
<Char code="1040" width="0.743329" height="0.683332" >
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1041" width="0.703885" height="0.683332" italic="0.069166" />
|
||||
<Char code="1062" width="0.768885" height="0.683332" depth="0.194445" italic="0.16389" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.768885" height="0.683332" depth="0.194445" italic="0.16389" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.678329" height="0.683332" italic="0.120277" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.817774" height="0.683332" italic="0.0940275" >
|
||||
<Kern code="1040" val="-0.025556"/>
|
||||
<Kern code="1044" val="-0.025556"/>
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1059" val="-0.025556"/>
|
||||
<Kern code="1140" val="-0.025556"/>
|
||||
<Kern code="1071" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1043" width="0.627218" height="0.683332" italic="0.133055" >
|
||||
<Kern code="1040" val="-0.076666"/>
|
||||
<Kern code="1044" val="-0.076666"/>
|
||||
<Kern code="1071" val="-0.076666"/>
|
||||
<Kern code="1051" val="-0.025556"/>
|
||||
<Kern code="1033" val="-0.025556"/>
|
||||
<Kern code="1072" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.076666"/>
|
||||
<Kern code="1139" val="-0.076666"/>
|
||||
<Kern code="1077" val="-0.076666"/>
|
||||
<Kern code="1105" val="-0.076666"/>
|
||||
<Kern code="1089" val="-0.076666"/>
|
||||
<Kern code="1108" val="-0.076666"/>
|
||||
<Kern code="1092" val="-0.076666"/>
|
||||
<Kern code="1080" val="-0.076666"/>
|
||||
<Kern code="1081" val="-0.076666"/>
|
||||
<Kern code="1094" val="-0.076666"/>
|
||||
<Kern code="1096" val="-0.076666"/>
|
||||
<Kern code="1097" val="-0.076666"/>
|
||||
<Kern code="1100" val="-0.076666"/>
|
||||
<Kern code="1099" val="-0.076666"/>
|
||||
<Kern code="1091" val="-0.076666"/>
|
||||
<Kern code="1141" val="-0.076666"/>
|
||||
<Kern code="1098" val="-0.076666"/>
|
||||
<Kern code="1083" val="-0.076666"/>
|
||||
<Kern code="1084" val="-0.076666"/>
|
||||
<Kern code="1113" val="-0.076666"/>
|
||||
</Char>
|
||||
<Char code="1061" width="0.743329" height="0.683332" italic="0.158055" >
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1048" width="0.768885" height="0.683332" italic="0.16389" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.524997" height="0.683332" italic="0.140279" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.768885" height="0.683332" italic="0.145277" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.768885" height="0.683332" italic="0.16389" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.896662" height="0.683332" italic="0.16389" />
|
||||
<Char code="1053" width="0.768885" height="0.683332" italic="0.16389" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.766663" height="0.683332" italic="0.0940275" >
|
||||
<Kern code="1040" val="-0.025556"/>
|
||||
<Kern code="1044" val="-0.025556"/>
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1059" val="-0.025556"/>
|
||||
<Kern code="1140" val="-0.025556"/>
|
||||
<Kern code="1071" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1055" width="0.768885" height="0.683332" italic="0.16389" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.768885" height="0.683332" italic="0.16389" />
|
||||
<Char code="1056" width="0.678329" height="0.683332" italic="0.10257" >
|
||||
<Kern code="1040" val="-0.076666"/>
|
||||
<Kern code="1044" val="-0.076666"/>
|
||||
<Kern code="1051" val="-0.076666"/>
|
||||
<Kern code="1033" val="-0.076666"/>
|
||||
<Kern code="1071" val="-0.076666"/>
|
||||
<Kern code="1072" val="-0.025556"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1077" val="-0.025556"/>
|
||||
<Kern code="1105" val="-0.025556"/>
|
||||
<Kern code="1076" val="-0.076666"/>
|
||||
<Kern code="1083" val="-0.076666"/>
|
||||
<Kern code="1113" val="-0.076666"/>
|
||||
</Char>
|
||||
<Char code="1057" width="0.715551" height="0.683332" italic="0.145277" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.715551" height="0.683332" italic="0.133055" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
<Kern code="1040" val="-0.076666"/>
|
||||
<Kern code="1044" val="-0.076666"/>
|
||||
<Kern code="1071" val="-0.076666"/>
|
||||
<Kern code="1051" val="-0.025556"/>
|
||||
<Kern code="1033" val="-0.025556"/>
|
||||
<Kern code="1072" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.076666"/>
|
||||
<Kern code="1139" val="-0.076666"/>
|
||||
<Kern code="1077" val="-0.076666"/>
|
||||
<Kern code="1105" val="-0.076666"/>
|
||||
<Kern code="1089" val="-0.076666"/>
|
||||
<Kern code="1108" val="-0.076666"/>
|
||||
<Kern code="1092" val="-0.076666"/>
|
||||
<Kern code="1080" val="-0.076666"/>
|
||||
<Kern code="1081" val="-0.076666"/>
|
||||
<Kern code="1094" val="-0.076666"/>
|
||||
<Kern code="1096" val="-0.076666"/>
|
||||
<Kern code="1097" val="-0.076666"/>
|
||||
<Kern code="1100" val="-0.076666"/>
|
||||
<Kern code="1099" val="-0.076666"/>
|
||||
<Kern code="1091" val="-0.076666"/>
|
||||
<Kern code="1141" val="-0.076666"/>
|
||||
<Kern code="1098" val="-0.076666"/>
|
||||
<Kern code="1083" val="-0.076666"/>
|
||||
<Kern code="1084" val="-0.076666"/>
|
||||
<Kern code="1113" val="-0.076666"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.743329" height="0.683332" italic="0.183611" >
|
||||
<Kern code="1040" val="-0.076666"/>
|
||||
<Kern code="1071" val="-0.076666"/>
|
||||
<Kern code="1044" val="-0.051111"/>
|
||||
<Kern code="1051" val="-0.051111"/>
|
||||
<Kern code="1033" val="-0.051111"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1072" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.076666"/>
|
||||
<Kern code="1139" val="-0.076666"/>
|
||||
<Kern code="1077" val="-0.076666"/>
|
||||
<Kern code="1105" val="-0.076666"/>
|
||||
<Kern code="1089" val="-0.076666"/>
|
||||
<Kern code="1108" val="-0.076666"/>
|
||||
<Kern code="1080" val="-0.1022215"/>
|
||||
<Kern code="1081" val="-0.1022215"/>
|
||||
<Kern code="1094" val="-0.1022215"/>
|
||||
<Kern code="1096" val="-0.1022215"/>
|
||||
<Kern code="1097" val="-0.1022215"/>
|
||||
<Kern code="1100" val="-0.1022215"/>
|
||||
<Kern code="1099" val="-0.1022215"/>
|
||||
<Kern code="1091" val="-0.1022215"/>
|
||||
<Kern code="1141" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.1022215"/>
|
||||
<Kern code="1083" val="-0.1022215"/>
|
||||
<Kern code="1084" val="-0.1022215"/>
|
||||
<Kern code="1113" val="-0.1022215"/>
|
||||
</Char>
|
||||
<Char code="1042" width="0.703885" height="0.683332" italic="0.077014" />
|
||||
<Char code="1065" width="1.088327" height="0.683332" depth="0.194445" italic="0.16389" />
|
||||
<Char code="1064" width="1.088327" height="0.683332" italic="0.16389" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.947772" height="0.683332" italic="0.16389" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.61333" height="0.683332" italic="0.10257" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.703885" height="0.683332" italic="0.036629" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1066" width="0.868884" height="0.683332" italic="0.036629" >
|
||||
<Kern code="1046" val="-0.025556"/>
|
||||
<Kern code="1061" val="-0.025556"/>
|
||||
<Kern code="1054" val="-0.025556"/>
|
||||
<Kern code="1060" val="-0.025556"/>
|
||||
<Kern code="1138" val="-0.025556"/>
|
||||
<Kern code="1057" val="-0.025556"/>
|
||||
<Kern code="1028" val="-0.025556"/>
|
||||
<Kern code="1058" val="-0.076666"/>
|
||||
<Kern code="1066" val="-0.076666"/>
|
||||
<Kern code="1026" val="-0.076666"/>
|
||||
<Kern code="1035" val="-0.076666"/>
|
||||
<Kern code="1122" val="-0.076666"/>
|
||||
<Kern code="1063" val="-0.076666"/>
|
||||
<Kern code="1059" val="-0.076666"/>
|
||||
<Kern code="1140" val="-0.1022215"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1082" val="-0.025556"/>
|
||||
<Kern code="1085" val="-0.025556"/>
|
||||
<Kern code="1114" val="-0.025556"/>
|
||||
<Kern code="1087" val="-0.025556"/>
|
||||
<Kern code="1090" val="-0.025556"/>
|
||||
<Kern code="1102" val="-0.025556"/>
|
||||
<Kern code="1123" val="-0.025556"/>
|
||||
<Kern code="1110" val="-0.025556"/>
|
||||
<Kern code="1080" val="-0.025556"/>
|
||||
<Kern code="1081" val="-0.025556"/>
|
||||
<Kern code="1094" val="-0.025556"/>
|
||||
<Kern code="1096" val="-0.025556"/>
|
||||
<Kern code="1097" val="-0.025556"/>
|
||||
<Kern code="1100" val="-0.025556"/>
|
||||
<Kern code="1099" val="-0.025556"/>
|
||||
<Kern code="1091" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1072" width="0.493219" height="0.430555" italic="0.076714" />
|
||||
<Char code="1073" width="0.475329" height="0.694445" italic="0.154445" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1094" width="0.567331" height="0.430555" depth="0.194445" italic="0.076714" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.475329" height="0.694445" italic="0.113861" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.442108" height="0.430555" italic="0.075139" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1092" width="0.679773" height="0.694445" depth="0.194445" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1075" width="0.421664" height="0.430555" italic="0.075139" />
|
||||
<Char code="1093" width="0.540553" height="0.430555" italic="0.120417" />
|
||||
<Char code="1080" width="0.56222" height="0.430555" italic="0.076714" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.306665" height="0.655359" depth="0.194445" italic="0.144673" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.511108" height="0.430555" italic="0.107638" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.536664" height="0.430555" italic="0.076714" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.741107" height="0.430555" italic="0.076714" />
|
||||
<Char code="1085" width="0.56222" height="0.430555" italic="0.076714" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.475329" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1087" width="0.56222" height="0.430555" italic="0.076714" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.536664" height="0.430555" italic="0.076714" />
|
||||
<Char code="1088" width="0.505997" height="0.430555" depth="0.194445" italic="0.063124" >
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1089" width="0.442108" height="0.430555" italic="0.056528" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
<Kern code="1092" val="-0.051111"/>
|
||||
<Kern code="1072" val="-0.051111"/>
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.817774" height="0.430555" italic="0.076714" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.511108" height="0.430555" depth="0.194445" italic="0.088472" />
|
||||
<Char code="1074" width="0.493219" height="0.430555" italic="0.075139" />
|
||||
<Char code="1097" width="0.8228855" height="0.430555" depth="0.194445" italic="0.076714" />
|
||||
<Char code="1096" width="0.817774" height="0.430555" italic="0.076714" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.664441" height="0.430555" italic="0.076714" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.459997" height="0.430555" italic="0.056528" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.511108" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1092" val="-0.025556"/>
|
||||
<Kern code="1108" val="-0.025556"/>
|
||||
</Char>
|
||||
<Char code="1098" width="0.485553" height="0.430555" italic="0.063124" >
|
||||
<Kern code="1083" val="-0.025556"/>
|
||||
<Kern code="1084" val="-0.025556"/>
|
||||
<Kern code="1113" val="-0.025556"/>
|
||||
<Kern code="1141" val="-0.025556"/>
|
||||
<Kern code="1098" val="-0.025556"/>
|
||||
<Kern code="1095" val="-0.076666"/>
|
||||
<Kern code="1086" val="-0.025556"/>
|
||||
<Kern code="1139" val="-0.025556"/>
|
||||
<Kern code="1092" val="-0.025556"/>
|
||||
<Kern code="1108" val="-0.025556"/>
|
||||
</Char>
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/cyrillic/wntt10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/cyrillic/wntt10.ttf
vendored
Normal file
Binary file not shown.
162
3rdparty/MicroTeX/res/cyrillic/wntt10.xml
vendored
Normal file
162
3rdparty/MicroTeX/res/cyrillic/wntt10.xml
vendored
Normal file
@ -0,0 +1,162 @@
|
||||
<Font name="wntt10.ttf" id="wntt10" space="0.524996" xHeight="0.430555" quad="1.049991" unicode="95" romanVersion="wnr10" ssVersion="wnss10">
|
||||
<Char code="1034" width="0.524996" height="0.611112" />
|
||||
<Char code="1033" width="0.524996" height="0.611112" />
|
||||
<Char code="1039" width="0.524996" height="0.611112" depth="0.166667" />
|
||||
<Char code="1069" width="0.524996" height="0.611112" />
|
||||
<Char code="1030" width="0.524996" height="0.611112" />
|
||||
<Char code="1028" width="0.524996" height="0.611112" />
|
||||
<Char code="1026" width="0.524996" height="0.611112" />
|
||||
<Char code="1035" width="0.524996" height="0.611112" />
|
||||
<Char code="1114" width="0.524996" height="0.430555" />
|
||||
<Char code="1113" width="0.524996" height="0.430555" />
|
||||
<Char code="1119" width="0.524996" height="0.430555" depth="0.13889" />
|
||||
<Char code="1101" width="0.524996" height="0.430555" />
|
||||
<Char code="1110" width="0.524996" height="0.611112" />
|
||||
<Char code="1108" width="0.524996" height="0.430555" />
|
||||
<Char code="1106" width="0.524996" height="0.611112" depth="0.222223" />
|
||||
<Char code="1115" width="0.524996" height="0.611112" />
|
||||
<Char code="1070" width="0.524996" height="0.611112" />
|
||||
<Char code="1046" width="0.524996" height="0.611112" />
|
||||
<Char code="1049" width="0.524996" height="0.819394" />
|
||||
<Char code="1025" width="0.524996" height="0.819394" />
|
||||
<Char code="1140" width="0.524996" height="0.611112" />
|
||||
<Char code="1138" width="0.524996" height="0.611112" />
|
||||
<Char code="1029" width="0.524996" height="0.611112" />
|
||||
<Char code="1071" width="0.524996" height="0.611112" />
|
||||
<Char code="1102" width="0.524996" height="0.430555" />
|
||||
<Char code="1078" width="0.524996" height="0.430555" />
|
||||
<Char code="1081" width="0.524996" height="0.638838" />
|
||||
<Char code="1105" width="0.524996" height="0.611112" />
|
||||
<Char code="1141" width="0.524996" height="0.430555" />
|
||||
<Char code="1139" width="0.524996" height="0.430555" />
|
||||
<Char code="1109" width="0.524996" height="0.430555" />
|
||||
<Char code="1103" width="0.524996" height="0.430555" />
|
||||
<Char code="776" width="0.524996" height="0.611112" />
|
||||
<Char code="1122" width="0.524996" height="0.694445" />
|
||||
<Char code="774" width="0.524996" height="0.638838" />
|
||||
<Char code="1123" width="0.524996" height="0.638838" />
|
||||
<Char code="171" width="0.524996" height="0.438889" />
|
||||
<Char code="305" width="0.524996" height="0.430555" />
|
||||
<Char code="187" width="0.524996" height="0.438889" />
|
||||
<Char code="1040" width="0.524996" height="0.611112" />
|
||||
<Char code="1041" width="0.524996" height="0.611112" />
|
||||
<Char code="1062" width="0.524996" height="0.611112" depth="0.166667" >
|
||||
<Lig code="1061" ligCode="1063"/>
|
||||
<Lig code="1093" ligCode="1063"/>
|
||||
</Char>
|
||||
<Char code="1044" width="0.524996" height="0.611112" depth="0.166667" >
|
||||
<Lig code="1032" ligCode="1026"/>
|
||||
<Lig code="1112" ligCode="1026"/>
|
||||
</Char>
|
||||
<Char code="1045" width="0.524996" height="0.611112" >
|
||||
</Char>
|
||||
<Char code="1060" width="0.524996" height="0.611112" />
|
||||
<Char code="1043" width="0.524996" height="0.611112" />
|
||||
<Char code="1061" width="0.524996" height="0.611112" />
|
||||
<Char code="1048" width="0.524996" height="0.611112" >
|
||||
</Char>
|
||||
<Char code="1032" width="0.524996" height="0.611112" >
|
||||
</Char>
|
||||
<Char code="1050" width="0.524996" height="0.611112" >
|
||||
<Lig code="1061" ligCode="1061"/>
|
||||
<Lig code="1093" ligCode="1061"/>
|
||||
</Char>
|
||||
<Char code="1051" width="0.524996" height="0.611112" >
|
||||
<Lig code="1032" ligCode="1033"/>
|
||||
<Lig code="1112" ligCode="1033"/>
|
||||
</Char>
|
||||
<Char code="1052" width="0.524996" height="0.611112" />
|
||||
<Char code="1053" width="0.524996" height="0.611112" >
|
||||
<Lig code="1032" ligCode="1034"/>
|
||||
<Lig code="1112" ligCode="1034"/>
|
||||
</Char>
|
||||
<Char code="1054" width="0.524996" height="0.611112" />
|
||||
<Char code="1055" width="0.524996" height="0.611112" >
|
||||
</Char>
|
||||
<Char code="1063" width="0.524996" height="0.611112" />
|
||||
<Char code="1056" width="0.524996" height="0.611112" />
|
||||
<Char code="1057" width="0.524996" height="0.611112" >
|
||||
<Lig code="1061" ligCode="1064"/>
|
||||
<Lig code="1093" ligCode="1064"/>
|
||||
</Char>
|
||||
<Char code="1058" width="0.524996" height="0.611112" >
|
||||
<Lig code="1057" ligCode="1062"/>
|
||||
<Lig code="1089" ligCode="1062"/>
|
||||
</Char>
|
||||
<Char code="1059" width="0.524996" height="0.611112" />
|
||||
<Char code="1042" width="0.524996" height="0.611112" />
|
||||
<Char code="1065" width="0.524996" height="0.611112" depth="0.166667" />
|
||||
<Char code="1064" width="0.524996" height="0.611112" >
|
||||
<Lig code="1063" ligCode="1065"/>
|
||||
<Lig code="1095" ligCode="1065"/>
|
||||
<Lig code="1062" ligCode="0"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1067" width="0.524996" height="0.611112" >
|
||||
<Lig code="1040" ligCode="1071"/>
|
||||
<Lig code="1072" ligCode="1071"/>
|
||||
<Lig code="1059" ligCode="1070"/>
|
||||
<Lig code="1091" ligCode="1070"/>
|
||||
</Char>
|
||||
<Char code="1047" width="0.524996" height="0.611112" >
|
||||
<Lig code="1061" ligCode="1046"/>
|
||||
<Lig code="1093" ligCode="1046"/>
|
||||
</Char>
|
||||
<Char code="1068" width="0.524996" height="0.611112" />
|
||||
<Char code="1066" width="0.524996" height="0.611112" />
|
||||
<Char code="1072" width="0.524996" height="0.430555" />
|
||||
<Char code="1073" width="0.524996" height="0.611112" />
|
||||
<Char code="1094" width="0.524996" height="0.430555" depth="0.13889" >
|
||||
<Lig code="1093" ligCode="1095"/>
|
||||
</Char>
|
||||
<Char code="1076" width="0.524996" height="0.430555" depth="0.13889" >
|
||||
<Lig code="1112" ligCode="1106"/>
|
||||
</Char>
|
||||
<Char code="1077" width="0.524996" height="0.430555" >
|
||||
</Char>
|
||||
<Char code="1092" width="0.524996" height="0.611112" depth="0.222223" />
|
||||
<Char code="1075" width="0.524996" height="0.430555" />
|
||||
<Char code="1093" width="0.524996" height="0.430555" />
|
||||
<Char code="1080" width="0.524996" height="0.430555" >
|
||||
</Char>
|
||||
<Char code="1112" width="0.524996" height="0.611112" depth="0.222223" >
|
||||
</Char>
|
||||
<Char code="1082" width="0.524996" height="0.430555" >
|
||||
<Lig code="1093" ligCode="1093"/>
|
||||
</Char>
|
||||
<Char code="1083" width="0.524996" height="0.430555" >
|
||||
<Lig code="1112" ligCode="1113"/>
|
||||
</Char>
|
||||
<Char code="1084" width="0.524996" height="0.430555" />
|
||||
<Char code="1085" width="0.524996" height="0.430555" >
|
||||
<Lig code="1112" ligCode="1114"/>
|
||||
</Char>
|
||||
<Char code="1086" width="0.524996" height="0.430555" />
|
||||
<Char code="1087" width="0.524996" height="0.430555" >
|
||||
</Char>
|
||||
<Char code="1095" width="0.524996" height="0.430555" />
|
||||
<Char code="1088" width="0.524996" height="0.430555" depth="0.222223" />
|
||||
<Char code="1089" width="0.524996" height="0.430555" >
|
||||
<Lig code="1093" ligCode="1096"/>
|
||||
</Char>
|
||||
<Char code="1090" width="0.524996" height="0.430555" >
|
||||
<Lig code="1089" ligCode="1094"/>
|
||||
</Char>
|
||||
<Char code="1091" width="0.524996" height="0.430555" depth="0.222223" />
|
||||
<Char code="1074" width="0.524996" height="0.430555" />
|
||||
<Char code="1097" width="0.524996" height="0.430555" depth="0.13889" />
|
||||
<Char code="1096" width="0.524996" height="0.430555" >
|
||||
<Lig code="1095" ligCode="1097"/>
|
||||
<Lig code="1094" ligCode="0"/>
|
||||
</Char>
|
||||
<Char code="1099" width="0.524996" height="0.430555" >
|
||||
<Lig code="1072" ligCode="1103"/>
|
||||
<Lig code="1091" ligCode="1102"/>
|
||||
</Char>
|
||||
<Char code="1079" width="0.524996" height="0.430555" >
|
||||
<Lig code="1093" ligCode="1078"/>
|
||||
</Char>
|
||||
<Char code="1100" width="0.524996" height="0.430555" />
|
||||
<Char code="1098" width="0.524996" height="0.430555" />
|
||||
</Font>
|
||||
|
||||
BIN
3rdparty/MicroTeX/res/fonts/base/cmex10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/base/cmex10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/base/cmmi10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/base/cmmi10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/base/cmmib10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/base/cmmib10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/euler/eufb10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/euler/eufb10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/euler/eufm10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/euler/eufm10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/bi10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/bi10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/bx10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/bx10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/cmr10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/cmr10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/i10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/i10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmbx10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmbx10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmbxti10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmbxti10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmss10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmss10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmssbx10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmssbx10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmssi10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmssi10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmti10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmti10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmtt10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/optional/cmtt10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/r10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/r10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/sb10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/sb10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/sbi10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/sbi10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/si10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/si10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/ss10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/ss10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/latin/tt10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/latin/tt10.ttf
vendored
Normal file
Binary file not shown.
5
3rdparty/MicroTeX/res/fonts/licences/Knuth_License.txt
vendored
Normal file
5
3rdparty/MicroTeX/res/fonts/licences/Knuth_License.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
Knuth License
|
||||
|
||||
This software is copyright and you are explicitly granted a license which gives you, the "user" of the software, legal permission to copy, distribute and/or modify the software, so long as if you modify the software then it carry a different name from the original software.
|
||||
|
||||
All the same, please check the specific details of the software's license before making modifications.
|
||||
8
3rdparty/MicroTeX/res/fonts/licences/License_for_dsrom.txt
vendored
Normal file
8
3rdparty/MicroTeX/res/fonts/licences/License_for_dsrom.txt
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
License
|
||||
-------
|
||||
|
||||
You may use and distribute these fonts as you like.
|
||||
You may modify these fonts as long as you do not
|
||||
rename the files to one of those names that
|
||||
Donald E. Knuth chose for the Computer Modern fonts.
|
||||
(And seriously, who would want to do that?)
|
||||
98
3rdparty/MicroTeX/res/fonts/licences/OFL.txt
vendored
Normal file
98
3rdparty/MicroTeX/res/fonts/licences/OFL.txt
vendored
Normal file
@ -0,0 +1,98 @@
|
||||
Copyright (c) 1997, 2009, American Mathematical Society (http://www.ams.org).
|
||||
All Rights Reserved.
|
||||
|
||||
"eufb10" is a Reserved Font Name for this Font Software.
|
||||
"eufm10" is a Reserved Font Name for this Font Software.
|
||||
"msam10" is a Reserved Font Name for this Font Software.
|
||||
"msbm10" is a Reserved Font Name for this Font Software.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
BIN
3rdparty/MicroTeX/res/fonts/maths/cmbsy10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/cmbsy10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/cmsy10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/cmsy10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/msam10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/msam10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/msbm10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/msbm10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/optional/dsrom10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/optional/dsrom10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/rsfs10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/rsfs10.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/special.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/special.ttf
vendored
Normal file
Binary file not shown.
BIN
3rdparty/MicroTeX/res/fonts/maths/stmary10.ttf
vendored
Normal file
BIN
3rdparty/MicroTeX/res/fonts/maths/stmary10.ttf
vendored
Normal file
Binary file not shown.
674
3rdparty/MicroTeX/res/greek/LICENSE
vendored
Normal file
674
3rdparty/MicroTeX/res/greek/LICENSE
vendored
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||