├── .gitattributes ├── .gitignore ├── .idea └── gradle.xml ├── AndroidMath.iml ├── INTERNAL.md ├── LICENSE ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img └── phonescreen.png ├── mathdisplaylib ├── .gitignore ├── bootstrap │ └── wrapper │ │ └── bootstrap.jar ├── build.gradle ├── cdep ├── cdep.bat ├── cdep.sha256 ├── cdep.yml ├── doc │ ├── alltypes │ │ └── index.html │ ├── com.agog.mathdisplay.parse │ │ ├── -m-t-accent │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-column-alignment │ │ │ ├── -k-m-t-column-alignment-center.html │ │ │ ├── -k-m-t-column-alignment-left.html │ │ │ ├── -k-m-t-column-alignment-right.html │ │ │ └── index.html │ │ ├── -m-t-env-properties │ │ │ ├── -init-.html │ │ │ ├── ended.html │ │ │ ├── env-name.html │ │ │ ├── index.html │ │ │ └── num-rows.html │ │ ├── -m-t-font-style │ │ │ ├── -k-m-t-font-style-blackboard.html │ │ │ ├── -k-m-t-font-style-bold-italic.html │ │ │ ├── -k-m-t-font-style-bold.html │ │ │ ├── -k-m-t-font-style-caligraphic.html │ │ │ ├── -k-m-t-font-style-default.html │ │ │ ├── -k-m-t-font-style-fraktur.html │ │ │ ├── -k-m-t-font-style-italic.html │ │ │ ├── -k-m-t-font-style-roman.html │ │ │ ├── -k-m-t-font-style-sans-serif.html │ │ │ ├── -k-m-t-font-style-typewriter.html │ │ │ └── index.html │ │ ├── -m-t-fraction │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── denominator.html │ │ │ ├── finalized.html │ │ │ ├── has-rule.html │ │ │ ├── index.html │ │ │ ├── left-delimiter.html │ │ │ ├── numerator.html │ │ │ ├── right-delimiter.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-inner │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ ├── left-boundary.html │ │ │ ├── right-boundary.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-large-operator │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── has-limits.html │ │ │ └── index.html │ │ ├── -m-t-line-style │ │ │ ├── -k-m-t-line-style-display.html │ │ │ ├── -k-m-t-line-style-script-script.html │ │ │ ├── -k-m-t-line-style-script.html │ │ │ ├── -k-m-t-line-style-text.html │ │ │ └── index.html │ │ ├── -m-t-math-atom-factory │ │ │ ├── -init-.html │ │ │ ├── accent-name.html │ │ │ ├── accent-with-name.html │ │ │ ├── add-latex-symbol.html │ │ │ ├── aliases.html │ │ │ ├── atom-for-latex-symbol-name.html │ │ │ ├── boundary-atom-for-delimiter-name.html │ │ │ ├── delimiter-name-for-boundary-atom.html │ │ │ ├── font-name-for-style.html │ │ │ ├── font-style-with-name.html │ │ │ ├── fraction-with-numerator.html │ │ │ ├── index.html │ │ │ ├── latex-symbol-name-for-atom.html │ │ │ ├── math-list-for-characters.html │ │ │ ├── operator-with-name.html │ │ │ ├── supported-latex-symbol-names.html │ │ │ ├── table-with-environment.html │ │ │ └── times.html │ │ ├── -m-t-math-atom-type │ │ │ ├── -k-m-t-math-atom-accent.html │ │ │ ├── -k-m-t-math-atom-binary-operator.html │ │ │ ├── -k-m-t-math-atom-boundary.html │ │ │ ├── -k-m-t-math-atom-close.html │ │ │ ├── -k-m-t-math-atom-color.html │ │ │ ├── -k-m-t-math-atom-fraction.html │ │ │ ├── -k-m-t-math-atom-inner.html │ │ │ ├── -k-m-t-math-atom-large-operator.html │ │ │ ├── -k-m-t-math-atom-none.html │ │ │ ├── -k-m-t-math-atom-number.html │ │ │ ├── -k-m-t-math-atom-open.html │ │ │ ├── -k-m-t-math-atom-ordinary.html │ │ │ ├── -k-m-t-math-atom-overline.html │ │ │ ├── -k-m-t-math-atom-placeholder.html │ │ │ ├── -k-m-t-math-atom-punctuation.html │ │ │ ├── -k-m-t-math-atom-radical.html │ │ │ ├── -k-m-t-math-atom-relation.html │ │ │ ├── -k-m-t-math-atom-space.html │ │ │ ├── -k-m-t-math-atom-style.html │ │ │ ├── -k-m-t-math-atom-table.html │ │ │ ├── -k-m-t-math-atom-unary-operator.html │ │ │ ├── -k-m-t-math-atom-underline.html │ │ │ ├── -k-m-t-math-atom-variable.html │ │ │ └── index.html │ │ ├── -m-t-math-atom │ │ │ ├── -init-.html │ │ │ ├── atom-for-character.html │ │ │ ├── atom-with-type.html │ │ │ ├── copy-deep-content.html │ │ │ ├── copy-deep.html │ │ │ ├── description.html │ │ │ ├── finalized.html │ │ │ ├── font-style.html │ │ │ ├── fuse.html │ │ │ ├── fused-atoms.html │ │ │ ├── index-range.html │ │ │ ├── index.html │ │ │ ├── is-not-binary-operator.html │ │ │ ├── nucleus.html │ │ │ ├── scripts-allowed.html │ │ │ ├── sub-script.html │ │ │ ├── super-script.html │ │ │ ├── to-latex-string.html │ │ │ ├── to-string-subs.html │ │ │ ├── type-to-text.html │ │ │ └── type.html │ │ ├── -m-t-math-color │ │ │ ├── -init-.html │ │ │ ├── color-string.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-math-list-builder │ │ │ ├── -init-.html │ │ │ ├── build-from-string.html │ │ │ ├── build.html │ │ │ ├── copy-error.html │ │ │ ├── error-active.html │ │ │ ├── index.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-math-list │ │ │ ├── -init-.html │ │ │ ├── add-atom.html │ │ │ ├── append.html │ │ │ ├── atoms.html │ │ │ ├── copy-deep.html │ │ │ ├── description.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── insert-atom.html │ │ │ └── to-string.html │ │ ├── -m-t-math-space │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── index.html │ │ │ └── space.html │ │ ├── -m-t-math-style │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── index.html │ │ │ └── style.html │ │ ├── -m-t-math-table │ │ │ ├── -init-.html │ │ │ ├── cells.html │ │ │ ├── copy-deep.html │ │ │ ├── environment.html │ │ │ ├── finalized.html │ │ │ ├── get-alignment-for-column.html │ │ │ ├── index.html │ │ │ ├── inter-column-spacing.html │ │ │ ├── inter-row-additional-spacing.html │ │ │ ├── num-columns.html │ │ │ ├── num-rows.html │ │ │ ├── set-alignment.html │ │ │ └── set-cell.html │ │ ├── -m-t-over-line │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-parse-error │ │ │ ├── -init-.html │ │ │ ├── clear.html │ │ │ ├── copy-from.html │ │ │ ├── errorcode.html │ │ │ ├── errordesc.html │ │ │ └── index.html │ │ ├── -m-t-parse-errors │ │ │ ├── -character-not-found.html │ │ │ ├── -error-none.html │ │ │ ├── -internal-error.html │ │ │ ├── -invalid-command.html │ │ │ ├── -invalid-delimiter.html │ │ │ ├── -invalid-env.html │ │ │ ├── -invalid-limits.html │ │ │ ├── -invalid-num-columns.html │ │ │ ├── -mismatch-braces.html │ │ │ ├── -missing-begin.html │ │ │ ├── -missing-delimiter.html │ │ │ ├── -missing-end.html │ │ │ ├── -missing-env.html │ │ │ ├── -missing-left.html │ │ │ ├── -missing-right.html │ │ │ └── index.html │ │ ├── -m-t-radical │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── degree.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── radicand.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-under-line │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -math-display-exception │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ └── message.html │ │ ├── -n-s-not-found.html │ │ ├── -n-s-range │ │ │ ├── -init-.html │ │ │ ├── equal.html │ │ │ ├── index.html │ │ │ ├── length.html │ │ │ ├── location.html │ │ │ ├── maxrange.html │ │ │ └── union.html │ │ └── index.html │ ├── com.agog.mathdisplay.render │ │ ├── -bounding-box │ │ │ ├── -init-.html │ │ │ ├── contains.html │ │ │ ├── height.html │ │ │ ├── index.html │ │ │ ├── lower-left-x.html │ │ │ ├── lower-left-y.html │ │ │ ├── to-string.html │ │ │ ├── upper-right-x.html │ │ │ ├── upper-right-y.html │ │ │ └── width.html │ │ ├── -c-g-glyph │ │ │ ├── -init-.html │ │ │ ├── gid.html │ │ │ ├── glyph-ascent.html │ │ │ ├── glyph-descent.html │ │ │ ├── glyph-width.html │ │ │ ├── index.html │ │ │ └── is-valid.html │ │ ├── -c-g-point │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── x.html │ │ │ └── y.html │ │ ├── -c-g-rect │ │ │ ├── -init-.html │ │ │ ├── height.html │ │ │ ├── index.html │ │ │ ├── width.html │ │ │ ├── x.html │ │ │ └── y.html │ │ ├── -d-e-b-u-g.html │ │ ├── -m-t-accent-display │ │ │ ├── -init-.html │ │ │ ├── accent.html │ │ │ ├── accentee.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── position-changed.html │ │ │ └── update-accentee-position.html │ │ ├── -m-t-c-t-line-display │ │ │ ├── -init-.html │ │ │ ├── atoms.html │ │ │ ├── compute-dimensions.html │ │ │ ├── draw.html │ │ │ ├── font.html │ │ │ ├── index.html │ │ │ └── str.html │ │ ├── -m-t-codepoint-char │ │ │ ├── -init-.html │ │ │ ├── codepoint.html │ │ │ ├── index.html │ │ │ └── to-unicode-string.html │ │ ├── -m-t-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── descent.html │ │ │ ├── display-bounds.html │ │ │ ├── draw.html │ │ │ ├── has-script.html │ │ │ ├── index.html │ │ │ ├── local-text-color.html │ │ │ ├── position-changed.html │ │ │ ├── position.html │ │ │ ├── range.html │ │ │ ├── shift-down.html │ │ │ ├── text-color.html │ │ │ └── width.html │ │ ├── -m-t-draw-free-type │ │ │ ├── -init-.html │ │ │ ├── draw-glyph.html │ │ │ ├── index.html │ │ │ └── mathfont.html │ │ ├── -m-t-font-math-table │ │ │ ├── -init-.html │ │ │ ├── accent-base-height.html │ │ │ ├── axis-height.html │ │ │ ├── check-font-size.html │ │ │ ├── constant-from-table.html │ │ │ ├── copy-font-table-with-size.html │ │ │ ├── delimited-sub-formula-min-height.html │ │ │ ├── display-operator-min-height.html │ │ │ ├── flattened-accent-base-height.html │ │ │ ├── font-size.html │ │ │ ├── font-units-box.html │ │ │ ├── font.html │ │ │ ├── fraction-delimiter-display-style-size.html │ │ │ ├── fraction-delimiter-size.html │ │ │ ├── fraction-denominator-display-style-gap-min.html │ │ │ ├── fraction-denominator-display-style-shift-down.html │ │ │ ├── fraction-denominator-gap-min.html │ │ │ ├── fraction-denominator-shift-down.html │ │ │ ├── fraction-numerator-display-style-gap-min.html │ │ │ ├── fraction-numerator-display-style-shift-up.html │ │ │ ├── fraction-numerator-gap-min.html │ │ │ ├── fraction-numerator-shift-up.html │ │ │ ├── fraction-rule-thickness.html │ │ │ ├── free-type-math-table.html │ │ │ ├── freeface.html │ │ │ ├── get-advances-for-glyphs.html │ │ │ ├── get-bounding-rects-for-glyphs.html │ │ │ ├── get-glyph-for-codepoint.html │ │ │ ├── get-glyph-name.html │ │ │ ├── get-glyph-with-name.html │ │ │ ├── get-horizontal-variants-for-glyph.html │ │ │ ├── get-italic-correction.html │ │ │ ├── get-larger-glyph.html │ │ │ ├── get-top-accent-adjustment.html │ │ │ ├── get-vertical-glyph-assembly-for-glyph.html │ │ │ ├── get-vertical-variants-for-glyph.html │ │ │ ├── index.html │ │ │ ├── istreamotf.html │ │ │ ├── limit-extra-ascender-descender.html │ │ │ ├── lower-limit-baseline-drop-min.html │ │ │ ├── lower-limit-gap-min.html │ │ │ ├── math-leading.html │ │ │ ├── min-connector-overlap.html │ │ │ ├── mu-unit.html │ │ │ ├── overbar-extra-ascender.html │ │ │ ├── overbar-rule-thickness.html │ │ │ ├── overbar-vertical-gap.html │ │ │ ├── percent-from-table.html │ │ │ ├── radical-degree-bottom-raise-percent.html │ │ │ ├── radical-display-style-vertical-gap.html │ │ │ ├── radical-extra-ascender.html │ │ │ ├── radical-kern-after-degree.html │ │ │ ├── radical-kern-before-degree.html │ │ │ ├── radical-rule-thickness.html │ │ │ ├── radical-vertical-gap.html │ │ │ ├── script-scale-down.html │ │ │ ├── script-script-scale-down.html │ │ │ ├── skewed-fraction-horizontal-gap.html │ │ │ ├── skewed-fraction-vertical-gap.html │ │ │ ├── space-after-script.html │ │ │ ├── stack-bottom-display-style-shift-down.html │ │ │ ├── stack-bottom-shift-down.html │ │ │ ├── stack-display-style-gap-min.html │ │ │ ├── stack-gap-min.html │ │ │ ├── stack-top-display-style-shift-up.html │ │ │ ├── stack-top-shift-up.html │ │ │ ├── stretch-stack-bottom-shift-down.html │ │ │ ├── stretch-stack-gap-above-min.html │ │ │ ├── stretch-stack-gap-below-min.html │ │ │ ├── stretch-stack-top-shift-up.html │ │ │ ├── sub-superscript-gap-min.html │ │ │ ├── subscript-baseline-drop-min.html │ │ │ ├── subscript-shift-down.html │ │ │ ├── subscript-top-max.html │ │ │ ├── superscript-baseline-drop-max.html │ │ │ ├── superscript-bottom-max-with-subscript.html │ │ │ ├── superscript-bottom-min.html │ │ │ ├── superscript-shift-up-cramped.html │ │ │ ├── superscript-shift-up.html │ │ │ ├── underbar-extra-descender.html │ │ │ ├── underbar-rule-thickness.html │ │ │ ├── underbar-vertical-gap.html │ │ │ ├── union-bounds.html │ │ │ ├── units-per-em.html │ │ │ ├── upper-limit-baseline-rise-min.html │ │ │ └── upper-limit-gap-min.html │ │ ├── -m-t-font │ │ │ ├── -init-.html │ │ │ ├── copy-font-with-size.html │ │ │ ├── find-glyph-for-character-at-index.html │ │ │ ├── font-size.html │ │ │ ├── get-gid-list-for-string.html │ │ │ ├── get-glyph-name.html │ │ │ ├── get-glyph-with-name.html │ │ │ ├── index.html │ │ │ ├── math-table.html │ │ │ └── name.html │ │ ├── -m-t-fraction-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── denominator-down.html │ │ │ ├── denominator.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── line-position.html │ │ │ ├── line-thickness.html │ │ │ ├── numerator-up.html │ │ │ ├── numerator.html │ │ │ ├── position-changed.html │ │ │ ├── update-denominator-position.html │ │ │ ├── update-numerator-position.html │ │ │ └── width.html │ │ ├── -m-t-glyph-construction-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── glyphs.html │ │ │ ├── index.html │ │ │ ├── myfont.html │ │ │ └── offsets.html │ │ ├── -m-t-glyph-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── glyph.html │ │ │ ├── index.html │ │ │ └── myfont.html │ │ ├── -m-t-glyph-part │ │ │ ├── -init-.html │ │ │ ├── end-connector-length.html │ │ │ ├── full-advance.html │ │ │ ├── glyph.html │ │ │ ├── index.html │ │ │ ├── is-extender.html │ │ │ └── start-connector-length.html │ │ ├── -m-t-inter-element-space-type │ │ │ ├── index.html │ │ │ ├── k-m-t-space-invalid.html │ │ │ ├── k-m-t-space-n-s-medium.html │ │ │ ├── k-m-t-space-n-s-thick.html │ │ │ ├── k-m-t-space-n-s-thin.html │ │ │ ├── k-m-t-space-none.html │ │ │ └── k-m-t-space-thin.html │ │ ├── -m-t-large-op-limits-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── extra-padding.html │ │ │ ├── index.html │ │ │ ├── limit-shift.html │ │ │ ├── lower-limit-gap.html │ │ │ ├── lower-limit.html │ │ │ ├── nucleus.html │ │ │ ├── position-changed.html │ │ │ ├── update-lower-limit-position.html │ │ │ ├── update-nucleus-position.html │ │ │ ├── update-upper-limit-position.html │ │ │ ├── upper-limit-gap.html │ │ │ └── upper-limit.html │ │ ├── -m-t-line-display │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── inner.html │ │ │ ├── line-shift-up.html │ │ │ ├── line-thickness.html │ │ │ ├── position-changed.html │ │ │ └── update-inner-position.html │ │ ├── -m-t-line-position │ │ │ ├── index.html │ │ │ ├── k-m-t-line-position-regular.html │ │ │ ├── k-m-t-line-position-subscript.html │ │ │ └── k-m-t-line-position-superscript.html │ │ ├── -m-t-math-list-display │ │ │ ├── --index--.html │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── recompute-dimensions.html │ │ │ ├── sub-displays.html │ │ │ └── type.html │ │ ├── -m-t-radical-display │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── degree.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── line-thickness.html │ │ │ ├── position-changed.html │ │ │ ├── radical-glyph.html │ │ │ ├── radical-shift.html │ │ │ ├── radicand.html │ │ │ ├── set-degree.html │ │ │ ├── top-kern.html │ │ │ └── update-radicand-position.html │ │ ├── -m-t-typesetter │ │ │ ├── -init-.html │ │ │ ├── cramped.html │ │ │ ├── create-line-for-math-list.html │ │ │ ├── current-atoms.html │ │ │ ├── current-line-index-range.html │ │ │ ├── current-line.html │ │ │ ├── current-position.html │ │ │ ├── denominator-gap-min.html │ │ │ ├── denominator-shift-down.html │ │ │ ├── display-atoms.html │ │ │ ├── font.html │ │ │ ├── fraction-delimiter-height.html │ │ │ ├── index.html │ │ │ ├── numerator-gap-min.html │ │ │ ├── numerator-shift-up.html │ │ │ ├── preprocess-math-list.html │ │ │ ├── spaced.html │ │ │ ├── stack-gap-min.html │ │ │ ├── style-font.html │ │ │ └── style.html │ │ ├── change-font.html │ │ ├── get-blackboard.html │ │ ├── get-bold-italic.html │ │ ├── get-bold.html │ │ ├── get-caligraphic.html │ │ ├── get-default-style.html │ │ ├── get-fraktur.html │ │ ├── get-inter-element-space-array-index-for-type.html │ │ ├── get-italicized.html │ │ ├── get-sans-serif.html │ │ ├── get-typewriter.html │ │ ├── greek-symbol-order.html │ │ ├── index.html │ │ ├── inter-element-space-array.html │ │ ├── is_-c-a-p-i-t-a-l_-g-r-e-e-k.html │ │ ├── is_-g-r-e-e-k_-s-y-m-b-o-l.html │ │ ├── is_-l-o-w-e-r_-e-n.html │ │ ├── is_-l-o-w-e-r_-g-r-e-e-k.html │ │ ├── is_-n-u-m-b-e-r.html │ │ ├── is_-u-p-p-e-r_-e-n.html │ │ ├── k-base-line-skip-multiplier.html │ │ ├── k-delimiter-factor.html │ │ ├── k-delimiter-shortfall-points.html │ │ ├── k-jot-multiplier.html │ │ ├── k-line-skip-limit-multiplier.html │ │ ├── k-line-skip-multiplier.html │ │ ├── k-m-t-unicode-greek-capital-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-capital-bold-start.html │ │ ├── k-m-t-unicode-greek-capital-end.html │ │ ├── k-m-t-unicode-greek-capital-italic-start.html │ │ ├── k-m-t-unicode-greek-capital-start.html │ │ ├── k-m-t-unicode-greek-lower-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-lower-bold-start.html │ │ ├── k-m-t-unicode-greek-lower-end.html │ │ ├── k-m-t-unicode-greek-lower-italic-start.html │ │ ├── k-m-t-unicode-greek-lower-start.html │ │ ├── k-m-t-unicode-greek-symbol-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-symbol-bold-start.html │ │ ├── k-m-t-unicode-greek-symbol-italic-start.html │ │ ├── k-m-t-unicode-math-capital-blackboard-start.html │ │ ├── k-m-t-unicode-math-capital-bold-italic-start.html │ │ ├── k-m-t-unicode-math-capital-bold-start.html │ │ ├── k-m-t-unicode-math-capital-fraktur-start.html │ │ ├── k-m-t-unicode-math-capital-italic-start.html │ │ ├── k-m-t-unicode-math-capital-sans-serif-start.html │ │ ├── k-m-t-unicode-math-capital-script-start.html │ │ ├── k-m-t-unicode-math-capital-t-t-start.html │ │ ├── k-m-t-unicode-math-lower-blackboard-start.html │ │ ├── k-m-t-unicode-math-lower-bold-italic-start.html │ │ ├── k-m-t-unicode-math-lower-bold-start.html │ │ ├── k-m-t-unicode-math-lower-fraktur-start.html │ │ ├── k-m-t-unicode-math-lower-italic-start.html │ │ ├── k-m-t-unicode-math-lower-sans-serif-start.html │ │ ├── k-m-t-unicode-math-lower-t-t-start.html │ │ ├── k-m-t-unicode-number-blackboard-start.html │ │ ├── k-m-t-unicode-number-bold-start.html │ │ ├── k-m-t-unicode-number-sans-serif-start.html │ │ ├── k-m-t-unicode-number-t-t-start.html │ │ ├── k-m-t-unicode-planks-constant.html │ │ ├── number-of-glyphs.html │ │ └── style-character.html │ ├── com.agog.mathdisplay │ │ ├── -k-default-font-size.html │ │ ├── -m-t-font-manager │ │ │ ├── -init-.html │ │ │ ├── assets.html │ │ │ ├── default-font.html │ │ │ ├── font-with-name.html │ │ │ ├── index.html │ │ │ ├── latin-modern-font-with-size.html │ │ │ ├── name-to-font-map.html │ │ │ ├── set-context.html │ │ │ ├── termes-font-with-size.html │ │ │ └── xits-font-with-size.html │ │ ├── -m-t-math-u-i-label-mode │ │ │ ├── -k-m-t-math-u-i-label-mode-display.html │ │ │ ├── -k-m-t-math-u-i-label-mode-text.html │ │ │ └── index.html │ │ ├── -m-t-math-view │ │ │ ├── -init-.html │ │ │ ├── -m-t-math-u-i-label-mode │ │ │ │ ├── -k-m-t-math-u-i-label-mode-display.html │ │ │ │ ├── -k-m-t-math-u-i-label-mode-text.html │ │ │ │ └── index.html │ │ │ ├── -m-t-math-view-mode │ │ │ │ ├── -k-m-t-math-view-mode-display.html │ │ │ │ ├── -k-m-t-math-view-mode-text.html │ │ │ │ └── index.html │ │ │ ├── -m-t-text-alignment │ │ │ │ ├── -k-m-t-text-alignment-center.html │ │ │ │ ├── -k-m-t-text-alignment-left.html │ │ │ │ ├── -k-m-t-text-alignment-right.html │ │ │ │ └── index.html │ │ │ ├── convert-dp-to-pixel.html │ │ │ ├── current-style.html │ │ │ ├── display-error-inline.html │ │ │ ├── error-font-size.html │ │ │ ├── font-size.html │ │ │ ├── font.html │ │ │ ├── index.html │ │ │ ├── label-mode.html │ │ │ ├── last-error.html │ │ │ ├── latex.html │ │ │ ├── math-list.html │ │ │ ├── on-draw.html │ │ │ ├── on-measure.html │ │ │ ├── text-alignment.html │ │ │ └── text-color.html │ │ ├── -m-t-text-alignment │ │ │ ├── -k-m-t-text-alignment-center.html │ │ │ ├── -k-m-t-text-alignment-left.html │ │ │ ├── -k-m-t-text-alignment-right.html │ │ │ └── index.html │ │ ├── index.html │ │ └── k-default-font-size.html │ ├── index-outline.html │ ├── index.html │ └── style.css ├── mathdisplaylib.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── agog │ │ └── mathdisplay │ │ ├── DrawInstrumentedTest.kt │ │ ├── FontInstrumentedTest.kt │ │ ├── TypesetterInstrumentedTest.kt │ │ └── ViewInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ ├── GUST-FONT-LICENSE.txt │ │ │ ├── OFL.txt │ │ │ ├── README-Latin-Modern-Math.txt │ │ │ ├── README-TeX-Gyre-Termes-Math.txt │ │ │ ├── latinmodern-math.otf │ │ │ ├── texgyretermes-math.otf │ │ │ └── xits-math.otf │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── com_pvporbit_freetype_FreeType.h │ │ ├── com_pvporbit_freetype_Utils.h │ │ └── freetype_jni.cpp │ ├── java │ │ └── com │ │ │ ├── agog │ │ │ └── mathdisplay │ │ │ │ ├── MTFontManager.kt │ │ │ │ ├── MTMathView.kt │ │ │ │ ├── parse │ │ │ │ ├── MTMathAtom.kt │ │ │ │ ├── MTMathAtomFactory.kt │ │ │ │ ├── MTMathList.kt │ │ │ │ ├── MTMathListBuilder.kt │ │ │ │ ├── MTMathTable.kt │ │ │ │ └── MTParseError.kt │ │ │ │ └── render │ │ │ │ ├── MTCharset.kt │ │ │ │ ├── MTDrawFreeType.kt │ │ │ │ ├── MTFont.kt │ │ │ │ ├── MTFontMathTable.kt │ │ │ │ ├── MTMathListDisplay.kt │ │ │ │ ├── MTSpacing.kt │ │ │ │ └── MTTypesetter.kt │ │ │ └── pvporbit │ │ │ └── freetype │ │ │ ├── Bitmap.java │ │ │ ├── CharMap.java │ │ │ ├── Face.java │ │ │ ├── FreeType.java │ │ │ ├── FreeTypeConstants.java │ │ │ ├── GlyphMetrics.java │ │ │ ├── GlyphSlot.java │ │ │ ├── Kerning.java │ │ │ ├── Library.java │ │ │ ├── LibraryVersion.java │ │ │ ├── MTFreeTypeMathTable.kt │ │ │ ├── Size.java │ │ │ ├── SizeMetrics.java │ │ │ ├── SizeRequest.java │ │ │ └── Utils.java │ ├── jni │ │ └── com_pvporbit_freetype_FreeType.h │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── agog │ └── mathdisplay │ └── BuilderUnitTest.kt ├── sampleapp ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sampleapp.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── agog │ │ └── latexmathsample │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── content_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── raw │ └── samples.txt │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- 1 | **/doc/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /img/phonescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/img/phonescreen.png -------------------------------------------------------------------------------- /mathdisplaylib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | .cdep 3 | .externalNativeBuild 4 | -------------------------------------------------------------------------------- /mathdisplaylib/bootstrap/wrapper/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/mathdisplaylib/bootstrap/wrapper/bootstrap.jar -------------------------------------------------------------------------------- /mathdisplaylib/cdep.sha256: -------------------------------------------------------------------------------- 1 | # This file is automatically maintained by CDep. 2 | # 3 | # MANUAL EDITS WILL BE LOST ON THE NEXT CDEP RUN 4 | # 5 | # This file contains a list of CDep coordinates along with the SHA256 hash of their 6 | # manifest file. This is to ensure that a manifest hasn't changed since the last 7 | # time CDep ran. 8 | # The recommended best practice is to check this file into source control so that 9 | # anyone else who builds this project is guaranteed to get the same dependencies. 10 | 11 | - coordinate: com.github.jomof:freetype:2.6.2-rev14 12 | sha256: 4adc3c5302d6bd2d9b0374812c7d4206295b4377bc8a49c99c69fc357aec6c01 13 | 14 | -------------------------------------------------------------------------------- /mathdisplaylib/cdep.yml: -------------------------------------------------------------------------------- 1 | builders: [cmake] 2 | 3 | dependencies: 4 | - compile: com.github.jomof:freetype:2.6.2-rev14 5 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-accent/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |var innerList: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-center.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTColumnAlignmentCenter
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-left.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTColumnAlignmentLeft
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-right.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTColumnAlignmentRight
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/ended.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var ended: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/env-name.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var envName: String?
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/num-rows.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var numRows: Long
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-blackboard.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleBlackboard
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-bold-italic.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleBoldItalic
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-bold.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleBold
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-caligraphic.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleCaligraphic
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleDefault
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-fraktur.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleFraktur
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-italic.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleItalic
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-roman.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleRoman
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-sans-serif.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleSansSerif
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-typewriter.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTFontStyleTypewriter
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-fraction/numerator.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var numerator: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTInner()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/inner-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var innerList: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/left-boundary.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var leftBoundary: MTMathAtom?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-large-operator/has-limits.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var hasLimits: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-display.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTLineStyleDisplay
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-script-script.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTLineStyleScriptScript
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-script.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTLineStyleScript
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTLineStyleText
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-factory/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTMathAtomFactory()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-accent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomAccent
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-binary-operator.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomBinaryOperator
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-boundary.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomBoundary
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-close.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomClose
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-color.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomColor
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-fraction.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomFraction
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-inner.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomInner
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-large-operator.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomLargeOperator
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-none.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomNone
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-number.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomNumber
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-open.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomOpen
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-ordinary.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomOrdinary
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-overline.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomOverline
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-placeholder.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomPlaceholder
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-punctuation.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomPunctuation
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-radical.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomRadical
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-relation.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomRelation
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-space.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomSpace
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-style.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomStyle
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-table.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomTable
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-unary-operator.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomUnaryOperator
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-underline.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomUnderline
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-variable.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathAtomVariable
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/description.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun description(): String
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/fused-atoms.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var fusedAtoms: <ERROR CLASS>
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/index-range.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var indexRange: NSRange
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/nucleus.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var nucleus: String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/type.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var type: MTMathAtomType
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTMathColor()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/color-string.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var colorString: String?
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/inner-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var innerList: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/atoms.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var atoms: <ERROR CLASS>
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/description.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun description(): String
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/to-string.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun toString(): String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-space/space.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var space: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-style/style.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var style: MTLineStyle
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/environment.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var environment: String?
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/inter-column-spacing.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var interColumnSpacing: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/num-columns.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun numColumns(): Int
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/num-rows.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun numRows(): Int
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-over-line/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTOverLine()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-over-line/inner-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var innerList: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/clear.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun clear(): Unit
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/errorcode.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var errorcode: MTParseErrors
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/errordesc.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var errordesc: String?
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-character-not-found.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CharacterNotFound
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-error-none.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ErrorNone
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-internal-error.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InternalError
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-command.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InvalidCommand
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-delimiter.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InvalidDelimiter
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-env.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InvalidEnv
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-limits.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InvalidLimits
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-num-columns.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | InvalidNumColumns
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-mismatch-braces.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MismatchBraces
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-begin.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingBegin
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-delimiter.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingDelimiter
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-end.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingEnd
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-env.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingEnv
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-left.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingLeft
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-right.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MissingRight
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTRadical()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/degree.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var degree: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/radicand.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var radicand: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-under-line/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTUnderLine()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-under-line/inner-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var innerList: MTMathList?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-math-display-exception/message.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var message: String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-not-found.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val NSNotFound: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/length.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var length: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/location.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var location: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/maxrange.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val maxrange: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/height.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val height: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/lower-left-x.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lowerLeftX: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/lower-left-y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lowerLeftY: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/to-string.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun toString(): String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/upper-right-x.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var upperRightX: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/upper-right-y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var upperRightY: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/width.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val width: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/gid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var gid: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-ascent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var glyphAscent: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-descent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var glyphDescent: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-width.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var glyphWidth: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/is-valid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val isValid: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-point/x.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var x: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-point/y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var y: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/height.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var height: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/width.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var width: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/x.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var x: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var y: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-d-e-b-u-g.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val DEBUG: Boolean
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-accent-display/accent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val accent: MTGlyphDisplay
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-accent-display/accentee.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val accentee: MTMathListDisplay
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-c-t-line-display/font.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val font: MTFont
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-c-t-line-display/str.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val str: String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-codepoint-char/codepoint.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val codepoint: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/ascent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | open var ascent: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/descent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | open var descent: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/has-script.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var hasScript: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/local-text-color.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var localTextColor: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/position.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var position: CGPoint
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/range.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var range: NSRange
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/shift-down.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var shiftDown: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/text-color.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var textColor: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/width.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | open var width: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-draw-free-type/mathfont.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val mathfont: MTFontMathTable
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/accent-base-height.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val accentBaseHeight: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/axis-height.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val axisHeight: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/font-size.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var fontSize: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/font.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val font: MTFont
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/freeface.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | lateinit var freeface: <ERROR CLASS>
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/lower-limit-gap-min.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val lowerLimitGapMin: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/math-leading.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val mathLeading: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/min-connector-overlap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val minConnectorOverlap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/mu-unit.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | fun muUnit(): Float
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-extra-ascender.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val overbarExtraAscender: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-rule-thickness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val overbarRuleThickness: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-vertical-gap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val overbarVerticalGap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-extra-ascender.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val radicalExtraAscender: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-rule-thickness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val radicalRuleThickness: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-vertical-gap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val radicalVerticalGap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/script-scale-down.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val scriptScaleDown: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/space-after-script.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val spaceAfterScript: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-bottom-shift-down.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val stackBottomShiftDown: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-gap-min.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val stackGapMin: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-top-shift-up.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val stackTopShiftUp: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/sub-superscript-gap-min.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val subSuperscriptGapMin: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/subscript-shift-down.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val subscriptShiftDown: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/subscript-top-max.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val subscriptTopMax: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/superscript-bottom-min.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val superscriptBottomMin: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/superscript-shift-up.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val superscriptShiftUp: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/underbar-vertical-gap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val underbarVerticalGap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/units-per-em.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var unitsPerEm: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/upper-limit-gap-min.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val upperLimitGapMin: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/font-size.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val fontSize: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/math-table.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var mathTable: MTFontMathTable
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/name.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val name: String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/ascent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var ascent: Float
15 | Overrides MTDisplay.ascent
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/denominator-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |var denominatorDown: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/line-position.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var linePosition: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/line-thickness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lineThickness: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/numerator-up.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var numeratorUp: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/width.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var width: Float
15 | Overrides MTDisplay.width
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/ascent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |var ascent: Float
15 | Overrides MTDisplay.ascent
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/descent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |var descent: Float
15 | Overrides MTDisplay.descent
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/glyph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |val glyph: CGGlyph
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/myfont.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val myfont: MTFont
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/end-connector-length.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var endConnectorLength: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/full-advance.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var fullAdvance: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/glyph.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var glyph: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/is-extender.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var isExtender: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/start-connector-length.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var startConnectorLength: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-invalid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceInvalid
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-medium.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceNSMedium
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-thick.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceNSThick
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-thin.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceNSThin
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-none.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceNone
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-thin.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTSpaceThin
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/extra-padding.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var extraPadding: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/limit-shift.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var limitShift: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/lower-limit-gap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lowerLimitGap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/nucleus.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val nucleus: MTDisplay
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/upper-limit-gap.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var upperLimitGap: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/inner.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val inner: MTMathListDisplay
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/line-shift-up.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lineShiftUp: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/line-thickness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lineThickness: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-regular.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTLinePositionRegular
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-subscript.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTLinePositionSubscript
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-superscript.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | kMTLinePositionSuperscript
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-math-list-display/--index--.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var index: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-math-list-display/type.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var type: MTLinePosition
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/line-thickness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var lineThickness: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/radical-glyph.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val radicalGlyph: MTDisplay
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/radical-shift.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var radicalShift: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/top-kern.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var topKern: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/cramped.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var cramped: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/current-line.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var currentLine: String
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/font.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val font: MTFont
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/spaced.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var spaced: Boolean
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/style-font.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var styleFont: MTFont
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/style.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var style: MTLineStyle
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-base-line-skip-multiplier.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kBaseLineSkipMultiplier: Float
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-delimiter-factor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kDelimiterFactor: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-delimiter-shortfall-points.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kDelimiterShortfallPoints: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-jot-multiplier.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kJotMultiplier: Float
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-line-skip-limit-multiplier.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kLineSkipLimitMultiplier: Float
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-line-skip-multiplier.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kLineSkipMultiplier: Float
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekCapitalBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-end.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekCapitalEnd: Char
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekCapitalItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekCapitalStart: Char
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-bold-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekLowerBoldItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekLowerBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-end.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekLowerEnd: Char
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekLowerItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekLowerStart: Char
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-symbol-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekSymbolBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-symbol-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeGreekSymbolItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-fraktur-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalFrakturStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-sans-serif-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalSansSerifStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-script-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalScriptStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-t-t-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathCapitalTTStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-blackboard-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerBlackboardStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-bold-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerBoldItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-fraktur-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerFrakturStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-italic-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerItalicStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-sans-serif-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerSansSerifStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-t-t-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeMathLowerTTStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-blackboard-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeNumberBlackboardStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-bold-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeNumberBoldStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-sans-serif-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeNumberSansSerifStart: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-t-t-start.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodeNumberTTStart: Int
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-planks-constant.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kMTUnicodePlanksConstant: Int
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-k-default-font-size.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val KDefaultFontSize: Float
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-font-manager/-init-.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MTFontManager()
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-font-manager/assets.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var assets: AssetManager?
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-display.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathUILabelModeDisplay
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathUILabelModeText
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-display.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathUILabelModeDisplay
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathUILabelModeText
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-view-mode/-k-m-t-math-view-mode-display.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathViewModeDisplay
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-view-mode/-k-m-t-math-view-mode-text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTMathViewModeText
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-center.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTTextAlignmentCenter
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-left.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTTextAlignmentLeft
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-right.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTTextAlignmentRight
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/font-size.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | var fontSize: Float
15 | This is in device pixels. Default value is see KDefaultFontSize
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/label-mode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |var labelMode: MTMathViewMode
15 | Should display or text mode be used.
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/text-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |var textColor: Int
15 | Color of the equation if not overridden with local color changes by TeX commands
16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-center.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |KMTTextAlignmentCenter
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-left.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTTextAlignmentLeft
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-right.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KMTTextAlignmentRight
13 |
14 |
15 |
--------------------------------------------------------------------------------
/mathdisplaylib/doc/com.agog.mathdisplay/k-default-font-size.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | const val kDefaultFontSize: Float
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mathdisplaylib/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |