diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000000..f5f19e3450 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,58 @@ +cmake_minimum_required(VERSION 3.16) + + +if(JKQtPlotter_BUILD_TOOLS) + + # custom target that generates the images for the JKQTMathText documentation + set(JKQTMathText_GenerateDocImages_DefaultOptions --resolution=96 --fontsize=20 --fontmathroman=XITS --background=white --sizeincrease=5) + set(JKQTMathText_GenerateDocImages_StdInputFiles + jkqtmathtext_docimages_accents.jkmt + jkqtmathtext_docimages_boxes.jkmt + jkqtmathtext_docimages_braces.jkmt + jkqtmathtext_docimages_formating.jkmt + jkqtmathtext_docimages_frac.jkmt + jkqtmathtext_docimages_math.jkmt + jkqtmathtext_docimages_matrix.jkmt + jkqtmathtext_docimages_misc.jkmt + jkqtmathtext_docimages_specialfonts.jkmt + jkqtmathtext_docimages_symbolsandencoding.jkmt + ) + + + set(JKQTMathText_GenerateDocImages_COMMAND $ ${JKQTMathText_GenerateDocImages_DefaultOptions}) + set(JKQTMathText_GenerateDocImages_OutputDir "${CMAKE_CURRENT_LIST_DIR}/images/jkqtmathtext/") + add_custom_target(JKQTMathText_GenerateDocImages + COMMENT "Building JKQTMathText Documentation Images ..." + DEPENDS jkqtmathtext_render + ) + + foreach(file ${JKQTMathText_GenerateDocImages_StdInputFiles}) + string(REGEX MATCH ".*_([^_\.]+)\.[A-Za-z]+" dummy ${file}) + set(loc_name ${CMAKE_MATCH_1}) + string(TOUPPER ${loc_name} loc_name_upper ${file}) + set(loc_target_name "JKQTMathText_GenerateDocImages_${loc_name}") + + add_custom_target(${loc_target_name} + COMMENT "Building JKQTMathText Documentation Images: ${loc_name_upper}" + COMMAND ${JKQTMathText_GenerateDocImages_COMMAND} --inputfile="${CMAKE_CURRENT_LIST_DIR}/${file}" --outputdir="${JKQTMathText_GenerateDocImages_OutputDir}" + WORKING_DIRECTORY ${JKQtPlotter_QT_BINDIR} + DEPENDS jkqtmathtext_render + ) + + add_dependencies(JKQTMathText_GenerateDocImages ${loc_target_name}) + + unset(loc_name) + unset(loc_target_name) + unset(loc_name_upper) + unset(dummy) + endforeach() + + add_custom_target(JKQTMathText_GenerateDocImages_listsymbols + COMMENT "Building JKQTMathText Documentation Images: LISTSYMBOLS" + COMMAND ${JKQTMathText_GenerateDocImages_COMMAND} --listsymbols="${CMAKE_CURRENT_LIST_DIR}/dox/jkqtmathtext_supportedlatexsymbols.dox" --outputdir="${JKQTMathText_GenerateDocImages_OutputDir}/symbols/" + WORKING_DIRECTORY ${JKQtPlotter_QT_BINDIR} + DEPENDS jkqtmathtext_render + ) + + add_dependencies(JKQTMathText_GenerateDocImages JKQTMathText_GenerateDocImages_listsymbols) +endif() diff --git a/doc/dox/jkqtmathtext_supportedlatex.dox b/doc/dox/jkqtmathtext_supportedlatex.dox index 05332797bc..60bf91fe61 100644 --- a/doc/dox/jkqtmathtext_supportedlatex.dox +++ b/doc/dox/jkqtmathtext_supportedlatex.dox @@ -30,10 +30,17 @@ - \c \\it{...} \c \\textit{...} \c \\mathit{...} : draw the contained text in italic face \image html jkqtmathtext/jkqtmathtext_italic.png - \c \\rm{...} \c \\textrm{...} \c \\mathrm{...} \c \\mbox{...} : draw the contained text in normal upright roman font face \image html jkqtmathtext/jkqtmathtext_fonts.png - \c \\sf{...} \c \\textsf{...} \c \\mathsf{...} : draw the contained text in normal upright sans-serif font face \image html jkqtmathtext/jkqtmathtext_fonts.png + - \c \\textcal{...} \c \\mathcal{...} : draw the contained text in caligraphic font face \image html jkqtmathtext/jkqtmathtext_cal.png + - \c \\textfrak{...} \c \\mathfrak{...} : draw the contained text in fraktur font face \image html jkqtmathtext/jkqtmathtext_frak.png + - \c \\textscript{...} \c \\mathscript{...} : draw the contained text in script font face \image html jkqtmathtext/jkqtmathtext_script.png + - \c \\textbb{...} \c \\mathbb{...} : draw the contained text in blackboard font face \image html jkqtmathtext/jkqtmathtext_bb.png + The class JKQTMathText also supports simulating blackboard fonts, if they are not available as an actual font on the system. Then the example would look like this: \image html jkqtmathtext/jkqtmathtext_bb_sim.png - \c \\script{...} \c \\textscript{...} \c \\mathscript{...} : draw the contained text in a script font face \image html jkqtmathtext/jkqtmathtext_fonts.png - \c \\sc{...} : draw the text in small caps \image html jkqtmathtext/jkqtmathtext_sc.png - \c \\ul{...} \c \\underline{...} \c \\underlined{...} : draw the text with underlining \image html jkqtmathtext/jkqtmathtext_ul.png + - \c \\uul{...} : draw the text with double-underlining \image html jkqtmathtext/jkqtmathtext_uul.png - \c \\ol{...} \c \\overline{...} \c \\overlined{...} : draw the text with overlining \image html jkqtmathtext/jkqtmathtext_ol.png + - \c \\ool{...} : draw the text with double-overlining \image html jkqtmathtext/jkqtmathtext_ool.png - \c \\tt{...} \c \\texttt{...} \c \\mathtt{...} : draw text in typewriter font \image html jkqtmathtext/jkqtmathtext_fonts.png - \c \\textcolor{color}{...} \c \\color{color} \c \\mathcolor{color}{...} : draw colored text \image html jkqtmathtext/jkqtmathtext_colored.png - \c \\userfont{font}{...} : draw text in a user-specific font, available on the system \image html jkqtmathtext/jkqtmathtext_userfont.png (generated by default, \\userfont{Arial}{Arial}, \\userfont{Comic Sans MS}{Comic Sans MS} ) @@ -64,9 +71,10 @@ \section JKQTMathTextSuppoertedLaTeXVerbatim Verbatim Text Sometimes it is necessary to typeset text withou interpreting it as LaTeX markup. These instructions are implemented for that: - \\verb!...!: interpret enclosed text between \c ! as verbose. Instead of \ ! you can choose ANY character! \image html jkqtmathtext/jkqtmathtext_verb.png generated by \\verb!\\LaTeX{} is not pares inside \\verb~..~! outside {\\backslash}verb - - \\begin{verbatim}...\\end{verbatim}: interpret enclosed multi-line text as verbatim. \image html jkqtmathtext/jkqtmathtext_verbatim.png generated by outside\\begin{verbatim}\ninside \\LaTeX verbatim\n 2nd verbaimline\n\t3rd line\n\\end{verbatim} - - \\begin{lstlisting}...\\end{lstlisting}: actually menat for highlighted code, for now this is the same as \c \\begin{verbatim}...\\end{verbatim}. \image html jkqtmathtext/jkqtmathtext_lstlisting.png generated by outside\\begin{lstlisting}\nint main() {\n printf("Hello World\\n");\n}\n\\end{lstlisting} - - \\begin{verbatim*}...\\end{verbatim*}: interpret enclosed multi-line text as verbatim. Print with visible whitespace and tab characters \image html jkqtmathtext/jkqtmathtext_verbatimast.png generated by outside\\begin{verbatim*}\ninside \\LaTeX verbatim\n 2nd verbaimline\n\t3rd line\n\\end{verbatim*} + - \\begin{verbatim}...\\end{verbatim}: interpret enclosed multi-line text as verbatim. \image html jkqtmathtext/jkqtmathtext_verbatim.png + \endcode + - \\begin{lstlisting}...\\end{lstlisting}: actually menat for highlighted code, for now this is the same as \c \\begin{verbatim}...\\end{verbatim}. \image html jkqtmathtext/jkqtmathtext_lstlisting.png + - \\begin{verbatim*}...\\end{verbatim*}: interpret enclosed multi-line text as verbatim. Print with visible whitespace and tab characters \image html jkqtmathtext/jkqtmathtext_verbatimast.png . @@ -77,6 +85,10 @@ - \c \\charDECIMAL and \c \\char\"HEX and \c \\char\'OCTAL : draws a unicode character from its 32-bit codepoint \image html jkqtmathtext/jkqtmathtext_char.png (generated by A: \\char65, circonflex: \\char\"109 accent: \\char\'351) - \c \\unicode{HEX} and \c \\usym{HEX} : draws a unicode character from its 32-bit codepoint \image html jkqtmathtext/jkqtmathtext_unicode.png (generated by star: \\unicode{2605}, circonflex: \\unicode{109} emoticons: \\usym{1F440} \\usym{1F929}) - \c \\utfeight{HEX} : draws a unicode character from its UTF-8 encoding \image html jkqtmathtext/jkqtmathtext_utf8.png (generated by star: \\utfeight{e29885} emoticons \\utfeight{F09F9881} \\utfeight{f09f98bb}) + - The usual LaTeX-accent commands are also implemented here and work as expected in text-mode, provided the matching unicode characters are available in the current font. + \image html jkqtmathtext/jkqtmathtext_textaccents.png + - In math-mode the text-accent commands do not work. here you have to use the math-mode commands: + \image html jkqtmathtext/jkqtmathtext_mathaccents.png - \c \\{ / \\} : display opening/closing brace - \c \\_ : display underscore - \c \\sum \c \\prod \c \\int ... : plot special symbol. Note that depending on the fontEncoding the available @@ -123,7 +135,7 @@ - \c \\left\\| \c \\right\\| \endcode : norm braces || ||, \image html jkqtmathtext/jkqtmathtext_brace_dblline.png - \c \\left\\llcorner \c \\right\\lrcorner : lower corner braces , \image html jkqtmathtext/jkqtmathtext_brace_lcorner.png - \c \\left\\ulcorner \c \\right\\urcorner : upper corner braces , \image html jkqtmathtext/jkqtmathtext_brace_ucorner.png - - You can use \c \\left. or \c \\right. to have only right or only left brace + - You can use \c \\left. or \c \\right. to have only right or only left brace , \image html jkqtmathtext/jkqtmathtext_brace_dot.png generated by {\\backslash}left.: $\\left. a\\cdot x^2\\right)$\\ \\ \\ \\ \\ {\\backslash}right.: $\\left( a\\cdot x^2\\right.$ . In additional fixed-size parantheses are available with the following family of instructions: @@ -133,7 +145,7 @@ - \c \\Biggl([\\{\\langle... , \c \\Bigg([\\{\\langle... and \c \\Biggr)]\\}\\rangle... \image html jkqtmathtext/jkqtmathtext_brace_bbigg.png . They use the same rendering code as the standard \c \\left and \c \\right instructions. Here is an example: - \image html jkqtmathtext/jkqtmathtext_brace_bigfamily.png generated by $\Biggl\langle\biggl\{\Bigl[\bigl( r^{123}\bigr)\Bigr]\biggr\}\Biggr\rangle$ + \image html jkqtmathtext/jkqtmathtext_brace_bigfamily.png generated by $\\Biggl\\langle\\biggl\\{\\Bigl[\\bigl( r^{123}\\bigr)\\Bigr]\\biggr\\}\\Biggr\\rangle$ \subsection JKQTMathTextSuppoertedLaTeXRoots Roots There are also instructions that allow to write roots: @@ -175,6 +187,6 @@ - $\\rsubstack{...\\\\...}$ \image html jkqtmathtext/jkqtmathtext_rsubstack.png . - -*/ \ No newline at end of file + +*/ diff --git a/doc/dox/jkqtmathtext_supportedlatexsymbols.dox b/doc/dox/jkqtmathtext_supportedlatexsymbols.dox new file mode 100644 index 0000000000..a6d19a74b9 --- /dev/null +++ b/doc/dox/jkqtmathtext_supportedlatexsymbols.dox @@ -0,0 +1,1146 @@ +/*! + \defgroup jkqtmathtext_supportedlatexsymbols Supported LaTeX-Symbols + \ingroup jkqtmathtext_general + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\\trprime: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_trprime.png + \\dalet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dalet.png + \\propto: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_propto.png +
\\lightning: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lightning.png + \\dd: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dd.png + \\frqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_frqq.png +
\\sin: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sin.png + \\updownarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_updownarrow.png + \\rho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rho.png +
\\aa: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_aa.png + \\upeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upeta.png + \\upomega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upomega.png +
\\textexclamdown: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textexclamdown.png + \\Re: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Re.png + \\partial: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_partial.png +
\\grqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_grqq.png + \\circledR: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_circledR.png + \\OE: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_OE.png +
\\varpi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varpi.png + \\upPi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upPi.png + \\upsigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upsigma.png +
\\dim: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dim.png + \\degree: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_degree.png + \\upalpha: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upalpha.png +
\\Upsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Upsilon.png + \\textquestiondown: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textquestiondown.png + \\mp: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mp.png +
\\upXi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upXi.png + \\bullet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bullet.png + \\copyright: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_copyright.png +
\\smile: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_smile.png + \\texteta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_texteta.png + \\upnu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upnu.png +
\\EUR: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_EUR.png + \\celsius: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_celsius.png + \\pound: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_pound.png +
\\mu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mu.png + \\uppsi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uppsi.png + \\upUpsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upUpsilon.png +
\\land: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_land.png + \\textkappa: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textkappa.png + \\upGamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upGamma.png +
\\Delta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Delta.png + \\nabla: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nabla.png + \\eta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_eta.png +
\\geqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_geqq.png + \\rightleftharpoon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rightleftharpoon.png + \\uparrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uparrow.png +
\\upbeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upbeta.png + \\upPsi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upPsi.png + \\AE: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_AE.png +
\\ge: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ge.png + \\square: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_square.png + \\Lambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Lambda.png +
\\lnot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lnot.png + \\ii: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ii.png + \\textless: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textless.png +
\\co: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_co.png + \\varcarriagereturn: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varcarriagereturn.png + \\langle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_langle.png +
\\Downarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Downarrow.png + \\upvarpi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvarpi.png + \\bbP: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbP.png +
\\upvartheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvartheta.png + \\upvarphi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvarphi.png + \\righthand: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_righthand.png +
\\textUpsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textUpsilon.png + \\Daleth: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Daleth.png + \\bet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bet.png +
\\checkmark: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_checkmark.png + \\leqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leqq.png + \\omega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_omega.png +
\\exists: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_exists.png + \\textbullet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textbullet.png + \\upharpoonleft: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonleft.png +
\\o: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_o.png + \\nparallel: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nparallel.png + \\bbZ: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbZ.png +
\\textchi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textchi.png + \\Bet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Bet.png + \\accurrent: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_accurrent.png +
\\ddagger: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ddagger.png + \\textdblhyphen: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphen.png + \\emptyset: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_emptyset.png +
\\texttheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_texttheta.png + \\Ohm: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Ohm.png + \\trcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_trcorner.png +
\\multimap: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_multimap.png + \\textbeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textbeta.png + \\textDelta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textDelta.png +
\\Box: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Box.png + \\rightharpoondown: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoondown.png + \\asin: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_asin.png +
\\uplambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uplambda.png + \\ohm: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ohm.png + \\cong: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cong.png +
\\textvarsigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvarsigma.png + \\subsetnot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_subsetnot.png + \\triangle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_triangle.png +
\\oiint: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oiint.png + \\ldots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ldots.png + \\swarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_swarrow.png +
\\diamond: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_diamond.png + \\blcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_blcorner.png + \\flqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_flqq.png +
\\textpi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textpi.png + \\upgamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upgamma.png + \\wedge: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_wedge.png +
\\measuredangle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_measuredangle.png + \\cosh: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cosh.png + \\ominus: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ominus.png +
\\nmid: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nmid.png + \\Theta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Theta.png + \\textendash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textendash.png +
\\mod: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mod.png + \\Leftarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Leftarrow.png + \\sigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sigma.png +
\\glq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_glq.png + \\upvarrho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvarrho.png + \\chi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_chi.png +
\\uppi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uppi.png + \\euro: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_euro.png + \\tlcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_tlcorner.png +
\\Phi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Phi.png + \\arctan: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_arctan.png + \\varsigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varsigma.png +
\\lambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lambda.png + \\acos: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_acos.png + \\Pr: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Pr.png +
\\mapimage: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mapimage.png + \\Dalet: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Dalet.png + \\textemdash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textemdash.png +
\\oslash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oslash.png + \\lor: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lor.png + \\upvarsigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvarsigma.png +
\\Xi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Xi.png + \\aleph: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_aleph.png + \\hyphen: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_hyphen.png +
\\geq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_geq.png + \\sgn: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sgn.png + \\texthyphen: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_texthyphen.png +
\\varhexagonlrbonds: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varhexagonlrbonds.png + \\supseteq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_supseteq.png + \\bbH: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbH.png +
\\Pi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Pi.png + \\dblhyphen: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dblhyphen.png + \\textgreater: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textgreater.png +
\\Updownarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Updownarrow.png + \\coprod: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_coprod.png + \\vdots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_vdots.png +
\\Leftrightarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Leftrightarrow.png + \\gcd: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_gcd.png + \\simeq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_simeq.png +
\\perthousand: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_perthousand.png + \\maporiginal: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_maporiginal.png + \\textdblhyphenchar: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphenchar.png +
\\argmin: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_argmin.png + \\S: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_S.png + \\urcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_urcorner.png +
\\atan: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_atan.png + \\hom: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_hom.png + \\iint: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_iint.png +
\\flq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_flq.png + \\frq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_frq.png + \\Omega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Omega.png +
\\HandLeft: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_HandLeft.png + \\neg: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_neg.png + \\textsigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textsigma.png +
\\ast: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ast.png + \\oiiint: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oiiint.png + \\rightharpoonup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoonup.png +
\\phi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_phi.png + \\textTheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textTheta.png + \\textSigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textSigma.png +
\\subseteq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_subseteq.png + \\registered: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_registered.png + \\alpha: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_alpha.png +
\\upiota: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upiota.png + \\rangle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rangle.png + \\Angstrom: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Angstrom.png +
\\bbR: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbR.png + \\bighat: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bighat.png + \\dollar: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dollar.png +
\\textmu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textmu.png + \\tan: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_tan.png + \\fahrenheit: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_fahrenheit.png +
\\tanh: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_tanh.png + \\odot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_odot.png + \\circ: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_circ.png +
\\in: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_in.png + \\O: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_O.png + \\supset: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_supset.png +
\\textPsi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textPsi.png + \\iddots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_iddots.png + \\upTheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upTheta.png +
\\parallel: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_parallel.png + \\upharpoonright: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonright.png + \\Sigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Sigma.png +
\\textxi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textxi.png + \\sinh: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sinh.png + \\arccos: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_arccos.png +
\\ni: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ni.png + \\therefore: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_therefore.png + \\blacksquare: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_blacksquare.png +
\\textnu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textnu.png + \\upOmega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upOmega.png + \\mid: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mid.png +
\\to: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_to.png + \\textbar: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textbar.png + \\textgamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textgamma.png +
\\iff: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_iff.png + \\nexists: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nexists.png + \\upvarepsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upvarepsilon.png +
\\rceil: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rceil.png + \\downharpoonright: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonright.png + \\notin: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_notin.png +
\\downarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_downarrow.png + \\textdelta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdelta.png + \\AA: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_AA.png +
\\uptau: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uptau.png + \\ll: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ll.png + \\cent: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cent.png +
\\daleth: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_daleth.png + \\trademark: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_trademark.png + \\textvartheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvartheta.png +
\\perp: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_perp.png + \\dag: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dag.png + \\No: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_No.png +
\\ellipsis: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ellipsis.png + \\Gimel: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Gimel.png + \\nwarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nwarrow.png +
\\texttau: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_texttau.png + \\benzenr: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_benzenr.png + \\circonflex: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_circonflex.png +
\\sim: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sim.png + \\Gamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Gamma.png + \\DC: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_DC.png +
\\tcohm: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_tcohm.png + \\emdash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_emdash.png + \\textvarrho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvarrho.png +
\\forall: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_forall.png + \\sec: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sec.png + \\exp: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_exp.png +
\\varnothing: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varnothing.png + \\Psi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Psi.png + \\sqcup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sqcup.png +
\\textOmega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textOmega.png + \\lefthand: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lefthand.png + \\L: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_L.png +
\\upsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upsilon.png + \\leq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leq.png + \\l: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_l.png +
\\approx: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_approx.png + \\AC: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_AC.png + \\argmax: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_argmax.png +
\\permil: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_permil.png + \\textzeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textzeta.png + \\vartheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_vartheta.png +
\\deg: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_deg.png + \\upDelta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upDelta.png + \\dots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dots.png +
\\Im: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Im.png + \\upPhi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upPhi.png + \\delta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_delta.png +
\\ulcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ulcorner.png + \\Angstroem: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Angstroem.png + \\upzeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upzeta.png +
\\ee: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ee.png + \\arcsin: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_arcsin.png + \\neq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_neq.png +
\\bigcap: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bigcap.png + \\grq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_grq.png + \\bigvee: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bigvee.png +
\\cdots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cdots.png + \\ne: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ne.png + \\upepsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upepsilon.png +
\\Aleph: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Aleph.png + \\prod: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_prod.png + \\upkappa: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upkappa.png +
\\varphi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varphi.png + \\textvarpi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvarpi.png + \\star: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_star.png +
\\succ: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_succ.png + \\ln: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ln.png + \\times: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_times.png +
\\textpsi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textpsi.png + \\upSigma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upSigma.png + \\textdaggerdbl: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdaggerdbl.png +
\\upmu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upmu.png + \\det: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_det.png + \\llcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_llcorner.png +
\\bot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bot.png + \\textlambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textlambda.png + \\xi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_xi.png +
\\frown: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_frown.png + \\sqcap: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sqcap.png + \\otimes: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_otimes.png +
\\bigcup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bigcup.png + \\gg: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_gg.png + \\prec: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_prec.png +
\\oint: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oint.png + \\uptheta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uptheta.png + \\supsetnot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_supsetnot.png +
\\textphi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textphi.png + \\micro: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_micro.png + \\median: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_median.png +
\\textvarepsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvarepsilon.png + \\gimel: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_gimel.png + \\hexagon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_hexagon.png +
\\iota: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_iota.png + \\textdegree: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdegree.png + \\cot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cot.png +
\\bbC: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbC.png + \\kappa: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_kappa.png + \\varepsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varepsilon.png +
\\textPhi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textPhi.png + \\angle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_angle.png + \\min: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_min.png +
\\oplus: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oplus.png + \\textrho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textrho.png + \\pi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_pi.png +
\\iiint: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_iiint.png + \\lb: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lb.png + \\rightarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rightarrow.png +
\\updelta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_updelta.png + \\upphi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upphi.png + \\because: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_because.png +
\\epsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_epsilon.png + \\textcopyright: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textcopyright.png + \\textregistered: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textregistered.png +
\\downharpoonleft: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonleft.png + \\prime: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_prime.png + \\degF: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_degF.png +
\\limsup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_limsup.png + \\bbQ: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbQ.png + \\textvarphi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textvarphi.png +
\\ker: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ker.png + \\upxi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upxi.png + \\dprime: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dprime.png +
\\oe: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_oe.png + \\setminus: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_setminus.png + \\cdot: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cdot.png +
\\brcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_brcorner.png + \\beth: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_beth.png + \\div: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_div.png +
\\le: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_le.png + \\textPi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textPi.png + \\dagger: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_dagger.png +
\\upupsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upupsilon.png + \\sign: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sign.png + \\ss: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ss.png +
\\infty: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_infty.png + \\tau: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_tau.png + \\textXi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textXi.png +
\\sum: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sum.png + \\leftrightarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightarrow.png + \\ddots: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ddots.png +
\\bbN: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_bbN.png + \\top: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_top.png + \\cup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cup.png +
\\benzene: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_benzene.png + \\varrho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_varrho.png + \\degC: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_degC.png +
\\log: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_log.png + \\Uparrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Uparrow.png + \\max: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_max.png +
\\yen: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_yen.png + \\cos: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cos.png + \\leftharpoondown: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoondown.png +
\\trapezium: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_trapezium.png + \\pm: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_pm.png + \\upchi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upchi.png +
\\rfloor: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rfloor.png + \\lceil: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lceil.png + \\beta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_beta.png +
\\female: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_female.png + \\nearrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nearrow.png + \\mapsto: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_mapsto.png +
\\textalpha: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textalpha.png + \\int: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_int.png + \\male: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_male.png +
\\textdagger: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textdagger.png + \\P: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_P.png + \\asterisk: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_asterisk.png +
\\gamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_gamma.png + \\coth: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_coth.png + \\cap: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_cap.png +
\\textepsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textepsilon.png + \\Beth: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Beth.png + \\sphericalangle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_sphericalangle.png +
\\zeta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_zeta.png + \\nu: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_nu.png + \\textLambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textLambda.png +
\\rightangle: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_rightangle.png + \\vee: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_vee.png + \\ae: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ae.png +
\\upLambda: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_upLambda.png + \\theta: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_theta.png + \\backslash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_backslash.png +
\\subset: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_subset.png + \\leftrightharpoon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightharpoon.png + \\Rightarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Rightarrow.png +
\\lfloor: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lfloor.png + \\searrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_searrow.png + \\Alef: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_Alef.png +
\\liminf: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_liminf.png + \\equiv: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_equiv.png + \\uprho: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_uprho.png +
\\HandRight: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_HandRight.png + \\glqq: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_glqq.png + \\endash: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_endash.png +
\\lrcorner: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lrcorner.png + \\lim: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_lim.png + \\notni: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_notni.png +
\\vartriangleleft: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_vartriangleleft.png + \\leftarrow: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leftarrow.png + \\alef: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_alef.png +
\\ddag: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ddag.png + \\textGamma: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textGamma.png + \\leftharpoonup: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoonup.png +
\\textomega: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textomega.png + \\psi: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_psi.png + \\hbar: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_hbar.png +
\\textiota: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textiota.png + \\arg: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_arg.png + \\ld: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_ld.png +
\\textupsilon: + \image html jkqtmathtext/symbols/jkqtmathtext_symbols_textupsilon.png +
+*/ diff --git a/doc/images/jkqtmathtext/MTDacute.png b/doc/images/jkqtmathtext/MTDacute.png index f94f338491..d1656b8651 100644 Binary files a/doc/images/jkqtmathtext/MTDacute.png and b/doc/images/jkqtmathtext/MTDacute.png differ diff --git a/doc/images/jkqtmathtext/MTDarrow.png b/doc/images/jkqtmathtext/MTDarrow.png index 4012f9c9f1..b72fa696b5 100644 Binary files a/doc/images/jkqtmathtext/MTDarrow.png and b/doc/images/jkqtmathtext/MTDarrow.png differ diff --git a/doc/images/jkqtmathtext/MTDbar.png b/doc/images/jkqtmathtext/MTDbar.png index e834682aed..acb920307b 100644 Binary files a/doc/images/jkqtmathtext/MTDbar.png and b/doc/images/jkqtmathtext/MTDbar.png differ diff --git a/doc/images/jkqtmathtext/MTDbcancel.png b/doc/images/jkqtmathtext/MTDbcancel.png index 38b9e79049..8d1da6828e 100644 Binary files a/doc/images/jkqtmathtext/MTDbcancel.png and b/doc/images/jkqtmathtext/MTDbcancel.png differ diff --git a/doc/images/jkqtmathtext/MTDbreve.png b/doc/images/jkqtmathtext/MTDbreve.png index 88df7d02ad..9f1015c6cb 100644 Binary files a/doc/images/jkqtmathtext/MTDbreve.png and b/doc/images/jkqtmathtext/MTDbreve.png differ diff --git a/doc/images/jkqtmathtext/MTDcancel.png b/doc/images/jkqtmathtext/MTDcancel.png index 04bb022cd0..a479acf16b 100644 Binary files a/doc/images/jkqtmathtext/MTDcancel.png and b/doc/images/jkqtmathtext/MTDcancel.png differ diff --git a/doc/images/jkqtmathtext/MTDcheck.png b/doc/images/jkqtmathtext/MTDcheck.png index 620a702fd3..11603c9c4c 100644 Binary files a/doc/images/jkqtmathtext/MTDcheck.png and b/doc/images/jkqtmathtext/MTDcheck.png differ diff --git a/doc/images/jkqtmathtext/MTDddot.png b/doc/images/jkqtmathtext/MTDddot.png index 6066e570ea..a00233028f 100644 Binary files a/doc/images/jkqtmathtext/MTDddot.png and b/doc/images/jkqtmathtext/MTDddot.png differ diff --git a/doc/images/jkqtmathtext/MTDdot.png b/doc/images/jkqtmathtext/MTDdot.png index a194c757c3..2754e5f1bc 100644 Binary files a/doc/images/jkqtmathtext/MTDdot.png and b/doc/images/jkqtmathtext/MTDdot.png differ diff --git a/doc/images/jkqtmathtext/MTDdoubleoverline.png b/doc/images/jkqtmathtext/MTDdoubleoverline.png index bc70e11844..7cdd518ac3 100644 Binary files a/doc/images/jkqtmathtext/MTDdoubleoverline.png and b/doc/images/jkqtmathtext/MTDdoubleoverline.png differ diff --git a/doc/images/jkqtmathtext/MTDdoubleunderline.png b/doc/images/jkqtmathtext/MTDdoubleunderline.png index ed5c4e07c0..76a0e97908 100644 Binary files a/doc/images/jkqtmathtext/MTDdoubleunderline.png and b/doc/images/jkqtmathtext/MTDdoubleunderline.png differ diff --git a/doc/images/jkqtmathtext/MTDgrave.png b/doc/images/jkqtmathtext/MTDgrave.png index fa3bb066cd..5366570e09 100644 Binary files a/doc/images/jkqtmathtext/MTDgrave.png and b/doc/images/jkqtmathtext/MTDgrave.png differ diff --git a/doc/images/jkqtmathtext/MTDhat.png b/doc/images/jkqtmathtext/MTDhat.png index 0c2acba9b0..421ebdc0d6 100644 Binary files a/doc/images/jkqtmathtext/MTDhat.png and b/doc/images/jkqtmathtext/MTDhat.png differ diff --git a/doc/images/jkqtmathtext/MTDocirc.png b/doc/images/jkqtmathtext/MTDocirc.png index 2764499ecf..3d7ab01cb0 100644 Binary files a/doc/images/jkqtmathtext/MTDocirc.png and b/doc/images/jkqtmathtext/MTDocirc.png differ diff --git a/doc/images/jkqtmathtext/MTDoverline.png b/doc/images/jkqtmathtext/MTDoverline.png index 0386308a88..f87fd7dfe0 100644 Binary files a/doc/images/jkqtmathtext/MTDoverline.png and b/doc/images/jkqtmathtext/MTDoverline.png differ diff --git a/doc/images/jkqtmathtext/MTDstrike.png b/doc/images/jkqtmathtext/MTDstrike.png index 37ee86445a..ac9227ca1e 100644 Binary files a/doc/images/jkqtmathtext/MTDstrike.png and b/doc/images/jkqtmathtext/MTDstrike.png differ diff --git a/doc/images/jkqtmathtext/MTDtilde.png b/doc/images/jkqtmathtext/MTDtilde.png index ab2ac0d775..56a64a625f 100644 Binary files a/doc/images/jkqtmathtext/MTDtilde.png and b/doc/images/jkqtmathtext/MTDtilde.png differ diff --git a/doc/images/jkqtmathtext/MTDunderline.png b/doc/images/jkqtmathtext/MTDunderline.png index ad57894b8e..fb46078caf 100644 Binary files a/doc/images/jkqtmathtext/MTDunderline.png and b/doc/images/jkqtmathtext/MTDunderline.png differ diff --git a/doc/images/jkqtmathtext/MTDvec.png b/doc/images/jkqtmathtext/MTDvec.png index bb035a0ad3..b833a20556 100644 Binary files a/doc/images/jkqtmathtext/MTDvec.png and b/doc/images/jkqtmathtext/MTDvec.png differ diff --git a/doc/images/jkqtmathtext/MTDwidecheck.png b/doc/images/jkqtmathtext/MTDwidecheck.png index a938c671ea..f006051978 100644 Binary files a/doc/images/jkqtmathtext/MTDwidecheck.png and b/doc/images/jkqtmathtext/MTDwidecheck.png differ diff --git a/doc/images/jkqtmathtext/MTDwidehat.png b/doc/images/jkqtmathtext/MTDwidehat.png index 738c5efe65..ec22f62cfc 100644 Binary files a/doc/images/jkqtmathtext/MTDwidehat.png and b/doc/images/jkqtmathtext/MTDwidehat.png differ diff --git a/doc/images/jkqtmathtext/MTDwidetilde.png b/doc/images/jkqtmathtext/MTDwidetilde.png index 9533d83dfb..e6bdc35071 100644 Binary files a/doc/images/jkqtmathtext/MTDwidetilde.png and b/doc/images/jkqtmathtext/MTDwidetilde.png differ diff --git a/doc/images/jkqtmathtext/MTDxcancel.png b/doc/images/jkqtmathtext/MTDxcancel.png index 6cb7483b2e..cef8ae1545 100644 Binary files a/doc/images/jkqtmathtext/MTDxcancel.png and b/doc/images/jkqtmathtext/MTDxcancel.png differ diff --git a/doc/images/jkqtmathtext/MTFMdfrac.png b/doc/images/jkqtmathtext/MTFMdfrac.png index 009d4d8fc7..76d46fcd90 100644 Binary files a/doc/images/jkqtmathtext/MTFMdfrac.png and b/doc/images/jkqtmathtext/MTFMdfrac.png differ diff --git a/doc/images/jkqtmathtext/MTFMfrac.png b/doc/images/jkqtmathtext/MTFMfrac.png index 5f14158a9c..792fedf4f1 100644 Binary files a/doc/images/jkqtmathtext/MTFMfrac.png and b/doc/images/jkqtmathtext/MTFMfrac.png differ diff --git a/doc/images/jkqtmathtext/MTFMoverbrace.png b/doc/images/jkqtmathtext/MTFMoverbrace.png index dfa45e4324..979ecf83d1 100644 Binary files a/doc/images/jkqtmathtext/MTFMoverbrace.png and b/doc/images/jkqtmathtext/MTFMoverbrace.png differ diff --git a/doc/images/jkqtmathtext/MTFMoverbracket.png b/doc/images/jkqtmathtext/MTFMoverbracket.png index f381390270..0b910ff4dc 100644 Binary files a/doc/images/jkqtmathtext/MTFMoverbracket.png and b/doc/images/jkqtmathtext/MTFMoverbracket.png differ diff --git a/doc/images/jkqtmathtext/MTFMoverset.png b/doc/images/jkqtmathtext/MTFMoverset.png index 6e58eee22f..901debfe7d 100644 Binary files a/doc/images/jkqtmathtext/MTFMoverset.png and b/doc/images/jkqtmathtext/MTFMoverset.png differ diff --git a/doc/images/jkqtmathtext/MTFMsfrac.png b/doc/images/jkqtmathtext/MTFMsfrac.png index c841f87a94..12a0285dd1 100644 Binary files a/doc/images/jkqtmathtext/MTFMsfrac.png and b/doc/images/jkqtmathtext/MTFMsfrac.png differ diff --git a/doc/images/jkqtmathtext/MTFMstackrel.png b/doc/images/jkqtmathtext/MTFMstackrel.png index ba6d4da2c9..9b07a3da13 100644 Binary files a/doc/images/jkqtmathtext/MTFMstackrel.png and b/doc/images/jkqtmathtext/MTFMstackrel.png differ diff --git a/doc/images/jkqtmathtext/MTFMstfrac.png b/doc/images/jkqtmathtext/MTFMstfrac.png index a27d81fd53..e4a5373475 100644 Binary files a/doc/images/jkqtmathtext/MTFMstfrac.png and b/doc/images/jkqtmathtext/MTFMstfrac.png differ diff --git a/doc/images/jkqtmathtext/MTFMtfrac.png b/doc/images/jkqtmathtext/MTFMtfrac.png index 4eda9a8b7f..9aff806d4c 100644 Binary files a/doc/images/jkqtmathtext/MTFMtfrac.png and b/doc/images/jkqtmathtext/MTFMtfrac.png differ diff --git a/doc/images/jkqtmathtext/MTFMunderbrace.png b/doc/images/jkqtmathtext/MTFMunderbrace.png index 6b98f5cd4e..8ae8139023 100644 Binary files a/doc/images/jkqtmathtext/MTFMunderbrace.png and b/doc/images/jkqtmathtext/MTFMunderbrace.png differ diff --git a/doc/images/jkqtmathtext/MTFMunderbracket.png b/doc/images/jkqtmathtext/MTFMunderbracket.png index a6d4ccabc0..975ab6d153 100644 Binary files a/doc/images/jkqtmathtext/MTFMunderbracket.png and b/doc/images/jkqtmathtext/MTFMunderbracket.png differ diff --git a/doc/images/jkqtmathtext/MTFMunderset.png b/doc/images/jkqtmathtext/MTFMunderset.png index 720236cc3b..957adb89c2 100644 Binary files a/doc/images/jkqtmathtext/MTFMunderset.png and b/doc/images/jkqtmathtext/MTFMunderset.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_OldEnglish.png b/doc/images/jkqtmathtext/jkqtmathtext_OldEnglish.png index 5533687df7..36dc965e3b 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_OldEnglish.png and b/doc/images/jkqtmathtext/jkqtmathtext_OldEnglish.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_arial.png b/doc/images/jkqtmathtext/jkqtmathtext_arial.png index 573d0dfd83..21cd6101c4 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_arial.png and b/doc/images/jkqtmathtext/jkqtmathtext_arial.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_array.png b/doc/images/jkqtmathtext/jkqtmathtext_array.png index 3db10d1611..db98949b96 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_array.png and b/doc/images/jkqtmathtext/jkqtmathtext_array.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_asana.png b/doc/images/jkqtmathtext/jkqtmathtext_asana.png index 03504119bd..ebb02ea550 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_asana.png and b/doc/images/jkqtmathtext/jkqtmathtext_asana.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_bb.png b/doc/images/jkqtmathtext/jkqtmathtext_bb.png new file mode 100644 index 0000000000..db16e1eae4 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_bb.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_bb_sim.png b/doc/images/jkqtmathtext/jkqtmathtext_bb_sim.png new file mode 100644 index 0000000000..fadc8bbdc9 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_bb_sim.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_bbmatrix.png b/doc/images/jkqtmathtext/jkqtmathtext_bbmatrix.png index 82d76fec10..ee8869fb31 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_bbmatrix.png and b/doc/images/jkqtmathtext/jkqtmathtext_bbmatrix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_begincenter.png b/doc/images/jkqtmathtext/jkqtmathtext_begincenter.png index 834b683522..00a7a453ce 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_begincenter.png and b/doc/images/jkqtmathtext/jkqtmathtext_begincenter.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_beginflushleft.png b/doc/images/jkqtmathtext/jkqtmathtext_beginflushleft.png index 9e91152626..f5b56e6384 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_beginflushleft.png and b/doc/images/jkqtmathtext/jkqtmathtext_beginflushleft.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_beginflushright.png b/doc/images/jkqtmathtext/jkqtmathtext_beginflushright.png index a2c4848406..e42a9ec97d 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_beginflushright.png and b/doc/images/jkqtmathtext/jkqtmathtext_beginflushright.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_beginframed.png b/doc/images/jkqtmathtext/jkqtmathtext_beginframed.png index eff77889bd..60e1e4837e 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_beginframed.png and b/doc/images/jkqtmathtext/jkqtmathtext_beginframed.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_beginshaded.png b/doc/images/jkqtmathtext/jkqtmathtext_beginshaded.png index 657e6b97a5..4e75505876 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_beginshaded.png and b/doc/images/jkqtmathtext/jkqtmathtext_beginshaded.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_beginsnugshade.png b/doc/images/jkqtmathtext/jkqtmathtext_beginsnugshade.png index d0772b5dcc..bd097e6da3 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_beginsnugshade.png and b/doc/images/jkqtmathtext/jkqtmathtext_beginsnugshade.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_bmatrix.png b/doc/images/jkqtmathtext/jkqtmathtext_bmatrix.png index e09309a1f8..ac9dacfcac 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_bmatrix.png and b/doc/images/jkqtmathtext/jkqtmathtext_bmatrix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_bold.png b/doc/images/jkqtmathtext/jkqtmathtext_bold.png index 0d96b691f2..fd5edbb918 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_bold.png and b/doc/images/jkqtmathtext/jkqtmathtext_bold.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_boxed.png b/doc/images/jkqtmathtext/jkqtmathtext_boxed.png index 0b6f51a5e5..8357a45fff 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_boxed.png and b/doc/images/jkqtmathtext/jkqtmathtext_boxed.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_array.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_array.png index 3b211c1eae..695013b9c4 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_array.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_array.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_bbig.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_bbig.png index 21940b3f4c..9a3885a7ac 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_bbig.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_bbig.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_bbigg.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_bbigg.png index 6be7aa544b..cdf98e2ae2 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_bbigg.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_bbigg.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_begincases.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_begincases.png index 20b91bc5ac..12fd34b298 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_begincases.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_begincases.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_big.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_big.png index 493bcd06d1..dc7a66715f 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_big.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_big.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_bigfamily.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_bigfamily.png index 8e8ca580af..a896d3d552 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_bigfamily.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_bigfamily.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_bigg.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_bigg.png index 2c40530251..f736edbae5 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_bigg.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_bigg.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_bottomcorner.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_bottomcorner.png deleted file mode 100644 index 4fa65e8f12..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_bottomcorner.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_ceil.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_ceil.png index 7013f34be8..10434db69e 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_ceil.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_ceil.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_curly.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_curly.png index ad2f85b5ad..78a2ba6de9 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_curly.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_curly.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_dblline.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_dblline.png index a7d2f66a4f..7ecc571df0 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_dblline.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_dblline.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_dot.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_dot.png new file mode 100644 index 0000000000..512ea5123f Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_brace_dot.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_floor.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_floor.png index b2b9d44944..4e0fdf3762 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_floor.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_floor.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_frac.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_frac.png deleted file mode 100644 index c2cb92b693..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_frac.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_lcorner.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_lcorner.png index 7825fef2dd..263ca280d0 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_lcorner.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_lcorner.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_oneline.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_oneline.png index 38836c7437..ca9ff7862b 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_oneline.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_oneline.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_overbrace.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_overbrace.png deleted file mode 100644 index 2dc567d30b..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_overbrace.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_overset.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_overset.png deleted file mode 100644 index 3bab159ac9..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_overset.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_rect.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_rect.png index c1361d1da7..3620c3377a 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_rect.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_rect.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_round.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_round.png index efada450aa..c6e8ad1b87 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_round.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_round.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_stackrel.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_stackrel.png index 047f6d28bc..24fdc8fba0 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_stackrel.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_stackrel.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_topcorner.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_topcorner.png deleted file mode 100644 index eafb72b994..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_topcorner.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_tri.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_tri.png index 6e091297c3..fb1ceea2b6 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_tri.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_tri.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_ucorner.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_ucorner.png index 8513bb5229..8faae3e8b7 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_ucorner.png and b/doc/images/jkqtmathtext/jkqtmathtext_brace_ucorner.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_underbrace.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_underbrace.png deleted file mode 100644 index 91e05b8b45..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_underbrace.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_brace_underset.png b/doc/images/jkqtmathtext/jkqtmathtext_brace_underset.png deleted file mode 100644 index 6764380329..0000000000 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_brace_underset.png and /dev/null differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_cal.png b/doc/images/jkqtmathtext/jkqtmathtext_cal.png new file mode 100644 index 0000000000..dd675a3cce Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_cal.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_cbrt.png b/doc/images/jkqtmathtext/jkqtmathtext_cbrt.png index f1e5676816..92e9ac8c94 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_cbrt.png and b/doc/images/jkqtmathtext/jkqtmathtext_cbrt.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_char.png b/doc/images/jkqtmathtext/jkqtmathtext_char.png index f1fc08924d..21fdf83f96 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_char.png and b/doc/images/jkqtmathtext/jkqtmathtext_char.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_colorbox.png b/doc/images/jkqtmathtext/jkqtmathtext_colorbox.png index 46a73b97e8..96016f2ba6 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_colorbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_colorbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_colored.png b/doc/images/jkqtmathtext/jkqtmathtext_colored.png index 83681bd2f0..bd6410374f 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_colored.png and b/doc/images/jkqtmathtext/jkqtmathtext_colored.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_comicsans.png b/doc/images/jkqtmathtext/jkqtmathtext_comicsans.png index ef1ff87d78..364fdef4b5 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_comicsans.png and b/doc/images/jkqtmathtext/jkqtmathtext_comicsans.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_comicsans_textonly.png b/doc/images/jkqtmathtext/jkqtmathtext_comicsans_textonly.png index b1766457bb..ce6aeb17ad 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_comicsans_textonly.png and b/doc/images/jkqtmathtext/jkqtmathtext_comicsans_textonly.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_computermodern.png b/doc/images/jkqtmathtext/jkqtmathtext_computermodern.png new file mode 100644 index 0000000000..eda4688aa2 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_computermodern.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_couriernew.png b/doc/images/jkqtmathtext/jkqtmathtext_couriernew.png index 299fce1f8c..047cd876c2 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_couriernew.png and b/doc/images/jkqtmathtext/jkqtmathtext_couriernew.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_dashbox.png b/doc/images/jkqtmathtext/jkqtmathtext_dashbox.png index cba434387e..b301b43fcd 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_dashbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_dashbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq.png b/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq.png index b71fd85c92..7271260e49 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq.png and b/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq_boxes.png b/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq_boxes.png index 7707c76e2a..7271260e49 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq_boxes.png and b/doc/images/jkqtmathtext/jkqtmathtext_doc_quadraticeq_boxes.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_dottedbox.png b/doc/images/jkqtmathtext/jkqtmathtext_dottedbox.png index e5e4334940..e29c43cd67 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_dottedbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_dottedbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_doublebox.png b/doc/images/jkqtmathtext/jkqtmathtext_doublebox.png index c980bffe5d..b792c168d3 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_doublebox.png and b/doc/images/jkqtmathtext/jkqtmathtext_doublebox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_doubleovalbox.png b/doc/images/jkqtmathtext/jkqtmathtext_doubleovalbox.png index e2724146ab..b7687f33ed 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_doubleovalbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_doubleovalbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_emdash.png b/doc/images/jkqtmathtext/jkqtmathtext_emdash.png index d5074420cd..39c7c78f7a 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_emdash.png and b/doc/images/jkqtmathtext/jkqtmathtext_emdash.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_endash.png b/doc/images/jkqtmathtext/jkqtmathtext_endash.png index 47176221a5..11c43f1ef7 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_endash.png and b/doc/images/jkqtmathtext/jkqtmathtext_endash.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_fcolorbox.png b/doc/images/jkqtmathtext/jkqtmathtext_fcolorbox.png index b658a701f5..daacad5a8f 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_fcolorbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_fcolorbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_fira.png b/doc/images/jkqtmathtext/jkqtmathtext_fira.png new file mode 100644 index 0000000000..4b6c668165 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_fira.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_fonts.png b/doc/images/jkqtmathtext/jkqtmathtext_fonts.png index e97305d85a..016909ba1a 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_fonts.png and b/doc/images/jkqtmathtext/jkqtmathtext_fonts.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_frak.png b/doc/images/jkqtmathtext/jkqtmathtext_frak.png new file mode 100644 index 0000000000..bc5135ad30 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_frak.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_greek.png b/doc/images/jkqtmathtext/jkqtmathtext_greek.png index d53827e466..7b04951fe7 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_greek.png and b/doc/images/jkqtmathtext/jkqtmathtext_greek.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_hyphen.png b/doc/images/jkqtmathtext/jkqtmathtext_hyphen.png index 775c712e4b..bb2ae7dfce 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_hyphen.png and b/doc/images/jkqtmathtext/jkqtmathtext_hyphen.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_italic.png b/doc/images/jkqtmathtext/jkqtmathtext_italic.png index 8ecb6b84d2..d5f17d8aa6 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_italic.png and b/doc/images/jkqtmathtext/jkqtmathtext_italic.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_lstlisting.png b/doc/images/jkqtmathtext/jkqtmathtext_lstlisting.png index 866df88036..91465fc600 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_lstlisting.png and b/doc/images/jkqtmathtext/jkqtmathtext_lstlisting.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_lsubstack.png b/doc/images/jkqtmathtext/jkqtmathtext_lsubstack.png index 4ef136759c..0d7fd58656 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_lsubstack.png and b/doc/images/jkqtmathtext/jkqtmathtext_lsubstack.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_mathaccents.png b/doc/images/jkqtmathtext/jkqtmathtext_mathaccents.png new file mode 100644 index 0000000000..a069dd07fc Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_mathaccents.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_mathdeco.png b/doc/images/jkqtmathtext/jkqtmathtext_mathdeco.png index 0b7fcfc82e..c8e76c5fa6 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_mathdeco.png and b/doc/images/jkqtmathtext/jkqtmathtext_mathdeco.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_mathmode_and_textmode.png b/doc/images/jkqtmathtext/jkqtmathtext_mathmode_and_textmode.png index 6ce190ab64..b1ad877f84 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_mathmode_and_textmode.png and b/doc/images/jkqtmathtext/jkqtmathtext_mathmode_and_textmode.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_mathoperator_width_factor.png b/doc/images/jkqtmathtext/jkqtmathtext_mathoperator_width_factor.png index a0855a0ee2..6c01a46b9b 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_mathoperator_width_factor.png and b/doc/images/jkqtmathtext/jkqtmathtext_mathoperator_width_factor.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_mssegoeui.png b/doc/images/jkqtmathtext/jkqtmathtext_mssegoeui.png new file mode 100644 index 0000000000..76da505eca Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_mssegoeui.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_ol.png b/doc/images/jkqtmathtext/jkqtmathtext_ol.png index 5c39992402..4362022d41 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_ol.png and b/doc/images/jkqtmathtext/jkqtmathtext_ol.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_ool.png b/doc/images/jkqtmathtext/jkqtmathtext_ool.png new file mode 100644 index 0000000000..894d52e128 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_ool.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_oovalbox.png b/doc/images/jkqtmathtext/jkqtmathtext_oovalbox.png index 80e75768c7..e01cffc006 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_oovalbox.png and b/doc/images/jkqtmathtext/jkqtmathtext_oovalbox.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_ovalboxed.png b/doc/images/jkqtmathtext/jkqtmathtext_ovalboxed.png index 11b7956f4f..ee467b24ac 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_ovalboxed.png and b/doc/images/jkqtmathtext/jkqtmathtext_ovalboxed.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_pmatrix.png b/doc/images/jkqtmathtext/jkqtmathtext_pmatrix.png index ad30768d29..a35f1b5fe2 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_pmatrix.png and b/doc/images/jkqtmathtext/jkqtmathtext_pmatrix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_rsubstack.png b/doc/images/jkqtmathtext/jkqtmathtext_rsubstack.png index 2293c036b2..20f84934a3 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_rsubstack.png and b/doc/images/jkqtmathtext/jkqtmathtext_rsubstack.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_sc.png b/doc/images/jkqtmathtext/jkqtmathtext_sc.png index 90ef7a5ca1..49679a2cd9 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_sc.png and b/doc/images/jkqtmathtext/jkqtmathtext_sc.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_script.png b/doc/images/jkqtmathtext/jkqtmathtext_script.png new file mode 100644 index 0000000000..f9c44b7d37 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_script.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_shaded.png b/doc/images/jkqtmathtext/jkqtmathtext_shaded.png index 0186d2608b..15574037a0 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_shaded.png and b/doc/images/jkqtmathtext/jkqtmathtext_shaded.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_specialsubsuper.png b/doc/images/jkqtmathtext/jkqtmathtext_specialsubsuper.png index ec70b46e19..a74138f0bf 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_specialsubsuper.png and b/doc/images/jkqtmathtext/jkqtmathtext_specialsubsuper.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_sqrt.png b/doc/images/jkqtmathtext/jkqtmathtext_sqrt.png index 51ac9478f8..afb7f89b8f 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_sqrt.png and b/doc/images/jkqtmathtext/jkqtmathtext_sqrt.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_stix.png b/doc/images/jkqtmathtext/jkqtmathtext_stix.png index 364a3fa7d9..1f3fb0d2c6 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_stix.png and b/doc/images/jkqtmathtext/jkqtmathtext_stix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_substack.png b/doc/images/jkqtmathtext/jkqtmathtext_substack.png index 1a5cb6613a..8fd5858949 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_substack.png and b/doc/images/jkqtmathtext/jkqtmathtext_substack.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_supersub.png b/doc/images/jkqtmathtext/jkqtmathtext_supersub.png index 2cebd85ac7..4f5057ffda 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_supersub.png and b/doc/images/jkqtmathtext/jkqtmathtext_supersub.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_symbols.png b/doc/images/jkqtmathtext/jkqtmathtext_symbols.png index 937ccfa4e6..36c39d9ba4 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_symbols.png and b/doc/images/jkqtmathtext/jkqtmathtext_symbols.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_textaccents.png b/doc/images/jkqtmathtext/jkqtmathtext_textaccents.png new file mode 100644 index 0000000000..80aabf84bb Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_textaccents.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_timesnewroman.png b/doc/images/jkqtmathtext/jkqtmathtext_timesnewroman.png index febd7310e2..bac4f2c356 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_timesnewroman.png and b/doc/images/jkqtmathtext/jkqtmathtext_timesnewroman.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_tt.png b/doc/images/jkqtmathtext/jkqtmathtext_tt.png new file mode 100644 index 0000000000..f5cb644674 Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_tt.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_ul.png b/doc/images/jkqtmathtext/jkqtmathtext_ul.png index a4dc112e07..4c9108bc9f 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_ul.png and b/doc/images/jkqtmathtext/jkqtmathtext_ul.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_unicode.png b/doc/images/jkqtmathtext/jkqtmathtext_unicode.png index 51d5ff903f..7e05d550c4 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_unicode.png and b/doc/images/jkqtmathtext/jkqtmathtext_unicode.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_userfont.png b/doc/images/jkqtmathtext/jkqtmathtext_userfont.png index 9a7fac561d..838971fa0e 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_userfont.png and b/doc/images/jkqtmathtext/jkqtmathtext_userfont.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_utf8.png b/doc/images/jkqtmathtext/jkqtmathtext_utf8.png index 9bf0ff6b46..ead0b2dcab 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_utf8.png and b/doc/images/jkqtmathtext/jkqtmathtext_utf8.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_uul.png b/doc/images/jkqtmathtext/jkqtmathtext_uul.png new file mode 100644 index 0000000000..d25cd047cf Binary files /dev/null and b/doc/images/jkqtmathtext/jkqtmathtext_uul.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_verb.png b/doc/images/jkqtmathtext/jkqtmathtext_verb.png index 5e0a422ae7..9c30001d85 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_verb.png and b/doc/images/jkqtmathtext/jkqtmathtext_verb.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_verbatim.png b/doc/images/jkqtmathtext/jkqtmathtext_verbatim.png index caa0b7c6d4..350b6af5d0 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_verbatim.png and b/doc/images/jkqtmathtext/jkqtmathtext_verbatim.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_verbatimast.png b/doc/images/jkqtmathtext/jkqtmathtext_verbatimast.png index f6d2850fc2..077074b635 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_verbatimast.png and b/doc/images/jkqtmathtext/jkqtmathtext_verbatimast.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_vmatrix.png b/doc/images/jkqtmathtext/jkqtmathtext_vmatrix.png index cd2335d394..8de612801e 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_vmatrix.png and b/doc/images/jkqtmathtext/jkqtmathtext_vmatrix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_vvmatrix.png b/doc/images/jkqtmathtext/jkqtmathtext_vvmatrix.png index af4e285d4f..5b6d53c2f5 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_vvmatrix.png and b/doc/images/jkqtmathtext/jkqtmathtext_vvmatrix.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_xits.png b/doc/images/jkqtmathtext/jkqtmathtext_xits.png index cf3f36b5a6..2001086a4d 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_xits.png and b/doc/images/jkqtmathtext/jkqtmathtext_xits.png differ diff --git a/doc/images/jkqtmathtext/jkqtmathtext_xits_all.png b/doc/images/jkqtmathtext/jkqtmathtext_xits_all.png index 7f1fc26f18..2001086a4d 100644 Binary files a/doc/images/jkqtmathtext/jkqtmathtext_xits_all.png and b/doc/images/jkqtmathtext/jkqtmathtext_xits_all.png differ diff --git a/doc/images/jkqtmathtext/schreq_mathmode.png b/doc/images/jkqtmathtext/schreq_mathmode.png index 5267babd99..8bf9841c41 100644 Binary files a/doc/images/jkqtmathtext/schreq_mathmode.png and b/doc/images/jkqtmathtext/schreq_mathmode.png differ diff --git a/doc/images/jkqtmathtext/schreq_normalmode.png b/doc/images/jkqtmathtext/schreq_normalmode.png index 3ca371d345..8561908737 100644 Binary files a/doc/images/jkqtmathtext/schreq_normalmode.png and b/doc/images/jkqtmathtext/schreq_normalmode.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AA.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AA.png new file mode 100644 index 0000000000..64104297de Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AA.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AC.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AC.png new file mode 100644 index 0000000000..c525b3820a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_AC.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Aleph.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Aleph.png new file mode 100644 index 0000000000..d9e876a8bf Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Aleph.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstroem.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstroem.png new file mode 100644 index 0000000000..b01189decb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstroem.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstrom.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstrom.png new file mode 100644 index 0000000000..b01189decb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Angstrom.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Bet.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Bet.png new file mode 100644 index 0000000000..307a7d9963 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Bet.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Beth.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Beth.png new file mode 100644 index 0000000000..307a7d9963 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Beth.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Box.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Box.png new file mode 100644 index 0000000000..10f15aeff6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Box.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_DC.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_DC.png new file mode 100644 index 0000000000..506b2118cc Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_DC.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Dalet.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Dalet.png new file mode 100644 index 0000000000..0c5dbe2d67 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Dalet.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_EUR.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_EUR.png new file mode 100644 index 0000000000..3e2d161e14 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_EUR.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandLeft.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandLeft.png new file mode 100644 index 0000000000..6c3310873c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandLeft.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandRight.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandRight.png new file mode 100644 index 0000000000..d13d4df734 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_HandRight.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Im.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Im.png new file mode 100644 index 0000000000..79f68daf97 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Im.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_No.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_No.png new file mode 100644 index 0000000000..063001c278 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_No.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_O.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_O.png new file mode 100644 index 0000000000..875152c10e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_O.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Omega.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Omega.png new file mode 100644 index 0000000000..d2341674e2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Omega.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_P.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_P.png new file mode 100644 index 0000000000..875152c10e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_P.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Pr.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Pr.png new file mode 100644 index 0000000000..46424fc9d7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Pr.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Re.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Re.png new file mode 100644 index 0000000000..6a6a0e0ebe Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Re.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Rightarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Rightarrow.png new file mode 100644 index 0000000000..14d04256fc Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Rightarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_S.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_S.png new file mode 100644 index 0000000000..875152c10e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_S.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Sigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Sigma.png new file mode 100644 index 0000000000..a35b5a19b9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Sigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Uparrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Uparrow.png new file mode 100644 index 0000000000..2784c40557 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Uparrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Updownarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Updownarrow.png new file mode 100644 index 0000000000..67cbb9257a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_Updownarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_accurrent.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_accurrent.png new file mode 100644 index 0000000000..5796460bad Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_accurrent.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_acos.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_acos.png new file mode 100644 index 0000000000..4aeb69c85e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_acos.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ae.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ae.png new file mode 100644 index 0000000000..52df3d75af Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ae.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alef.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alef.png new file mode 100644 index 0000000000..d9e876a8bf Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alef.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alpha.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alpha.png new file mode 100644 index 0000000000..6e6d273f58 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_alpha.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_angle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_angle.png new file mode 100644 index 0000000000..f5b474adc3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_angle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_approx.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_approx.png new file mode 100644 index 0000000000..d4423723f4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_approx.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arccos.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arccos.png new file mode 100644 index 0000000000..b1e9ee9858 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arccos.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arcsin.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arcsin.png new file mode 100644 index 0000000000..956e0c06d5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arcsin.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arctan.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arctan.png new file mode 100644 index 0000000000..8bfb032609 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arctan.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arg.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arg.png new file mode 100644 index 0000000000..db71fdd72e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_arg.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmax.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmax.png new file mode 100644 index 0000000000..ce345e4fa6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmax.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmin.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmin.png new file mode 100644 index 0000000000..a9776080e0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_argmin.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asin.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asin.png new file mode 100644 index 0000000000..917a5c941f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asin.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ast.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ast.png new file mode 100644 index 0000000000..dff3685670 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ast.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asterisk.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asterisk.png new file mode 100644 index 0000000000..dff3685670 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_asterisk.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_atan.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_atan.png new file mode 100644 index 0000000000..166a338df1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_atan.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_backslash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_backslash.png new file mode 100644 index 0000000000..b7e1ab2249 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_backslash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbC.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbC.png new file mode 100644 index 0000000000..2ab77c7b2e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbC.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbH.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbH.png new file mode 100644 index 0000000000..f52bade619 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbH.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbN.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbN.png new file mode 100644 index 0000000000..cab18ef030 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbN.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbP.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbP.png new file mode 100644 index 0000000000..73481acbb5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbP.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbQ.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbQ.png new file mode 100644 index 0000000000..212d2bf6b9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbQ.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbR.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbR.png new file mode 100644 index 0000000000..c9d3959b6a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbR.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbZ.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbZ.png new file mode 100644 index 0000000000..f0086dba62 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bbZ.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_because.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_because.png new file mode 100644 index 0000000000..79811b8b87 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_because.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzene.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzene.png new file mode 100644 index 0000000000..3c26ef6ca9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzene.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzenr.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzenr.png new file mode 100644 index 0000000000..9a0ae6e242 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_benzenr.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_beta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_beta.png new file mode 100644 index 0000000000..2adf8eb5e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_beta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcap.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcap.png new file mode 100644 index 0000000000..aac398084f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcap.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcup.png new file mode 100644 index 0000000000..921f43231d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigcup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bighat.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bighat.png new file mode 100644 index 0000000000..92f43c371b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bighat.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigvee.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigvee.png new file mode 100644 index 0000000000..d36b3beedb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bigvee.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blacksquare.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blacksquare.png new file mode 100644 index 0000000000..b99e4db835 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blacksquare.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blcorner.png new file mode 100644 index 0000000000..8eb2363dc0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_blcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bot.png new file mode 100644 index 0000000000..58f7b7c0b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_brcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_brcorner.png new file mode 100644 index 0000000000..37547b9ce5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_brcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bullet.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bullet.png new file mode 100644 index 0000000000..ae42129058 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_bullet.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cap.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cap.png new file mode 100644 index 0000000000..e0e49e53d4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cap.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdot.png new file mode 100644 index 0000000000..5eb194a3a8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdots.png new file mode 100644 index 0000000000..595efbcd65 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cdots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_celsius.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_celsius.png new file mode 100644 index 0000000000..239bf260bb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_celsius.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cent.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cent.png new file mode 100644 index 0000000000..54128b9929 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cent.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_checkmark.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_checkmark.png new file mode 100644 index 0000000000..d60c7005b7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_checkmark.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_chi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_chi.png new file mode 100644 index 0000000000..f53fcf8101 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_chi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circ.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circ.png new file mode 100644 index 0000000000..8c04edb164 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circ.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circledR.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circledR.png new file mode 100644 index 0000000000..0737d0209f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circledR.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circonflex.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circonflex.png new file mode 100644 index 0000000000..c41fa52686 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_circonflex.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_co.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_co.png new file mode 100644 index 0000000000..9dde94474c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_co.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cong.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cong.png new file mode 100644 index 0000000000..e64404364f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cong.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coprod.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coprod.png new file mode 100644 index 0000000000..90489628b0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coprod.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_copyright.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_copyright.png new file mode 100644 index 0000000000..1062bba8c8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_copyright.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cos.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cos.png new file mode 100644 index 0000000000..26cf367e56 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cos.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cosh.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cosh.png new file mode 100644 index 0000000000..756c248852 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cosh.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cot.png new file mode 100644 index 0000000000..2b8fa900b0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coth.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coth.png new file mode 100644 index 0000000000..1a6e66ffef Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_coth.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cup.png new file mode 100644 index 0000000000..322ce7b8fa Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_cup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dag.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dag.png new file mode 100644 index 0000000000..73873fa221 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dag.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dagger.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dagger.png new file mode 100644 index 0000000000..73873fa221 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dagger.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_daleth.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_daleth.png new file mode 100644 index 0000000000..0c5dbe2d67 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_daleth.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dblhyphen.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dblhyphen.png new file mode 100644 index 0000000000..168188f4b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dblhyphen.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dd.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dd.png new file mode 100644 index 0000000000..0f0d934048 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dd.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddag.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddag.png new file mode 100644 index 0000000000..f24be29977 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddag.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddagger.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddagger.png new file mode 100644 index 0000000000..f24be29977 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddagger.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddots.png new file mode 100644 index 0000000000..409e5d3a17 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ddots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_deg.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_deg.png new file mode 100644 index 0000000000..df1944a54a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_deg.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degC.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degC.png new file mode 100644 index 0000000000..239bf260bb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degC.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degF.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degF.png new file mode 100644 index 0000000000..aaa30ea20c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degF.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degree.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degree.png new file mode 100644 index 0000000000..40e40d04dd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_degree.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_delta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_delta.png new file mode 100644 index 0000000000..976810aac0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_delta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_det.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_det.png new file mode 100644 index 0000000000..1e501340f7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_det.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_diamond.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_diamond.png new file mode 100644 index 0000000000..25817b0572 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_diamond.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dim.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dim.png new file mode 100644 index 0000000000..5964865d60 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dim.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_div.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_div.png new file mode 100644 index 0000000000..16f4620cc5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_div.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dollar.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dollar.png new file mode 100644 index 0000000000..a61ff19e76 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dollar.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dots.png new file mode 100644 index 0000000000..a4fb0d28b1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downarrow.png new file mode 100644 index 0000000000..21de2603ab Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonleft.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonleft.png new file mode 100644 index 0000000000..a97b7a83ca Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonleft.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonright.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonright.png new file mode 100644 index 0000000000..9cba5a8577 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_downharpoonright.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dprime.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dprime.png new file mode 100644 index 0000000000..ab96d0e2be Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_dprime.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ee.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ee.png new file mode 100644 index 0000000000..8e7ef7999c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ee.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ellipsis.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ellipsis.png new file mode 100644 index 0000000000..a4fb0d28b1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ellipsis.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emdash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emdash.png new file mode 100644 index 0000000000..168188f4b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emdash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emptyset.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emptyset.png new file mode 100644 index 0000000000..6230172169 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_emptyset.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_endash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_endash.png new file mode 100644 index 0000000000..c666eca244 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_endash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_epsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_epsilon.png new file mode 100644 index 0000000000..e7a52bbce1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_epsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_equiv.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_equiv.png new file mode 100644 index 0000000000..cb6183bc4e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_equiv.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_eta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_eta.png new file mode 100644 index 0000000000..f6a9bfd1b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_eta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_euro.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_euro.png new file mode 100644 index 0000000000..3e2d161e14 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_euro.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exists.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exists.png new file mode 100644 index 0000000000..da1be64199 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exists.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exp.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exp.png new file mode 100644 index 0000000000..6ccf7ebda3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_exp.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_fahrenheit.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_fahrenheit.png new file mode 100644 index 0000000000..aaa30ea20c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_fahrenheit.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_female.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_female.png new file mode 100644 index 0000000000..e5bd60060d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_female.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flq.png new file mode 100644 index 0000000000..99545f76cf Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flqq.png new file mode 100644 index 0000000000..285bdd336b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_flqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_forall.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_forall.png new file mode 100644 index 0000000000..750ccc4401 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_forall.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frown.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frown.png new file mode 100644 index 0000000000..15b26e3a19 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frown.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frq.png new file mode 100644 index 0000000000..e148c7b7e8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frqq.png new file mode 100644 index 0000000000..3b2cbb7d77 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_frqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gamma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gamma.png new file mode 100644 index 0000000000..de4465ca76 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gamma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gcd.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gcd.png new file mode 100644 index 0000000000..4ab8a7869f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gcd.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ge.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ge.png new file mode 100644 index 0000000000..0ca95479db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ge.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geq.png new file mode 100644 index 0000000000..0ca95479db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geqq.png new file mode 100644 index 0000000000..cc2aee4868 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_geqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gg.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gg.png new file mode 100644 index 0000000000..6c9e6049a8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gg.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gimel.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gimel.png new file mode 100644 index 0000000000..d24bb83355 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_gimel.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glq.png new file mode 100644 index 0000000000..b348d74932 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glqq.png new file mode 100644 index 0000000000..f0faab73fd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_glqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grq.png new file mode 100644 index 0000000000..7b6629d7b7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grqq.png new file mode 100644 index 0000000000..c7affbd5b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_grqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hbar.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hbar.png new file mode 100644 index 0000000000..4dae42c9f6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hbar.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hexagon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hexagon.png new file mode 100644 index 0000000000..05fd485138 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hexagon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hom.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hom.png new file mode 100644 index 0000000000..bef27279e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hom.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hyphen.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hyphen.png new file mode 100644 index 0000000000..2fee95ac75 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_hyphen.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iddots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iddots.png new file mode 100644 index 0000000000..3abefe9ead Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iddots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iff.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iff.png new file mode 100644 index 0000000000..36dc6a0b4c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iff.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ii.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ii.png new file mode 100644 index 0000000000..dea62ddbf2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ii.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iiint.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iiint.png new file mode 100644 index 0000000000..afb8a7c311 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iiint.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iint.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iint.png new file mode 100644 index 0000000000..c3eb0c6039 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iint.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_in.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_in.png new file mode 100644 index 0000000000..2c3bee2793 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_in.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_infty.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_infty.png new file mode 100644 index 0000000000..62f8dd879f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_infty.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_int.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_int.png new file mode 100644 index 0000000000..db9a53905c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_int.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iota.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iota.png new file mode 100644 index 0000000000..36377b6234 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_iota.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_kappa.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_kappa.png new file mode 100644 index 0000000000..12e4b9c71e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_kappa.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ker.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ker.png new file mode 100644 index 0000000000..4dff0887ac Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ker.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_l.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_l.png new file mode 100644 index 0000000000..875152c10e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_l.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lambda.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lambda.png new file mode 100644 index 0000000000..596ff2c96b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lambda.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_land.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_land.png new file mode 100644 index 0000000000..e0e49e53d4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_land.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_langle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_langle.png new file mode 100644 index 0000000000..8ea1c0af27 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_langle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lb.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lb.png new file mode 100644 index 0000000000..617a3c79b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lb.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lceil.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lceil.png new file mode 100644 index 0000000000..8aae456557 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lceil.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ld.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ld.png new file mode 100644 index 0000000000..ade42abc52 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ld.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ldots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ldots.png new file mode 100644 index 0000000000..a4fb0d28b1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ldots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_le.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_le.png new file mode 100644 index 0000000000..5e18fa5215 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_le.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftarrow.png new file mode 100644 index 0000000000..157920251d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lefthand.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lefthand.png new file mode 100644 index 0000000000..d13d4df734 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lefthand.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoondown.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoondown.png new file mode 100644 index 0000000000..44764701bd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoondown.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoonup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoonup.png new file mode 100644 index 0000000000..ee634c142e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftharpoonup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightarrow.png new file mode 100644 index 0000000000..e0d4a80741 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightharpoon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightharpoon.png new file mode 100644 index 0000000000..fcc6f3d31d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leftrightharpoon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leq.png new file mode 100644 index 0000000000..5e18fa5215 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leqq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leqq.png new file mode 100644 index 0000000000..899352413f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_leqq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lfloor.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lfloor.png new file mode 100644 index 0000000000..257b608895 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lfloor.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lightning.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lightning.png new file mode 100644 index 0000000000..12cee3ea20 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lightning.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lim.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lim.png new file mode 100644 index 0000000000..b42c3a8fc9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lim.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_liminf.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_liminf.png new file mode 100644 index 0000000000..f779bebab5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_liminf.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_limsup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_limsup.png new file mode 100644 index 0000000000..80acd0f119 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_limsup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ll.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ll.png new file mode 100644 index 0000000000..96cce62bf7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ll.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_llcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_llcorner.png new file mode 100644 index 0000000000..8eb2363dc0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_llcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ln.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ln.png new file mode 100644 index 0000000000..7a6615bfd5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ln.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lnot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lnot.png new file mode 100644 index 0000000000..f03ea98a78 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lnot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_log.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_log.png new file mode 100644 index 0000000000..0ed6fdf6e8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_log.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lor.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lor.png new file mode 100644 index 0000000000..322ce7b8fa Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lor.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lrcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lrcorner.png new file mode 100644 index 0000000000..37547b9ce5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_lrcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_male.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_male.png new file mode 100644 index 0000000000..6b01cba25a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_male.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapimage.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapimage.png new file mode 100644 index 0000000000..f833c9c3ba Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapimage.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_maporiginal.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_maporiginal.png new file mode 100644 index 0000000000..92c7c08d38 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_maporiginal.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapsto.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapsto.png new file mode 100644 index 0000000000..78db4f9ff0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mapsto.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_max.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_max.png new file mode 100644 index 0000000000..0b1b6ebf67 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_max.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_measuredangle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_measuredangle.png new file mode 100644 index 0000000000..86ba9eea13 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_measuredangle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_median.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_median.png new file mode 100644 index 0000000000..0677b17757 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_median.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_micro.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_micro.png new file mode 100644 index 0000000000..3a1abe0d4b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_micro.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mid.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mid.png new file mode 100644 index 0000000000..e8b0ccba69 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mid.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_min.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_min.png new file mode 100644 index 0000000000..c312dd164a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_min.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mod.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mod.png new file mode 100644 index 0000000000..efeee2dd7f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mod.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mp.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mp.png new file mode 100644 index 0000000000..03f8c12798 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mp.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mu.png new file mode 100644 index 0000000000..3484470146 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_mu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_multimap.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_multimap.png new file mode 100644 index 0000000000..9ca816d84b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_multimap.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nabla.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nabla.png new file mode 100644 index 0000000000..9c0dc048e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nabla.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ne.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ne.png new file mode 100644 index 0000000000..49bc846232 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ne.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nearrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nearrow.png new file mode 100644 index 0000000000..7e182f1dc5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nearrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neg.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neg.png new file mode 100644 index 0000000000..f03ea98a78 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neg.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neq.png new file mode 100644 index 0000000000..49bc846232 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_neq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nexists.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nexists.png new file mode 100644 index 0000000000..dfc0d83eca Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nexists.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ni.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ni.png new file mode 100644 index 0000000000..900d47d65a Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ni.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nmid.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nmid.png new file mode 100644 index 0000000000..3db9d4938e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nmid.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notin.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notin.png new file mode 100644 index 0000000000..ec4cf78e98 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notin.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notni.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notni.png new file mode 100644 index 0000000000..3f458a2234 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_notni.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nparallel.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nparallel.png new file mode 100644 index 0000000000..fdcf60ad36 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nparallel.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nu.png new file mode 100644 index 0000000000..03d7b9bb6c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nwarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nwarrow.png new file mode 100644 index 0000000000..8e39be3f4c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_nwarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_odot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_odot.png new file mode 100644 index 0000000000..4530d41568 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_odot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oe.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oe.png new file mode 100644 index 0000000000..e0a7a32967 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oe.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ohm.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ohm.png new file mode 100644 index 0000000000..7532fd36c0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ohm.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiiint.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiiint.png new file mode 100644 index 0000000000..85351623ef Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiiint.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiint.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiint.png new file mode 100644 index 0000000000..3fe032c0f4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oiint.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oint.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oint.png new file mode 100644 index 0000000000..77306a9b6e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oint.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ominus.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ominus.png new file mode 100644 index 0000000000..ac059a1c80 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ominus.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oplus.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oplus.png new file mode 100644 index 0000000000..44890d2db9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oplus.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oslash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oslash.png new file mode 100644 index 0000000000..5b3afe778c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_oslash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_otimes.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_otimes.png new file mode 100644 index 0000000000..6f1eb8b47c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_otimes.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_parallel.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_parallel.png new file mode 100644 index 0000000000..eb44e4f7fc Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_parallel.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_partial.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_partial.png new file mode 100644 index 0000000000..4e9a5dbcec Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_partial.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_permil.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_permil.png new file mode 100644 index 0000000000..4ba6aa153f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_permil.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perp.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perp.png new file mode 100644 index 0000000000..58f7b7c0b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perp.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perthousand.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perthousand.png new file mode 100644 index 0000000000..4ba6aa153f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_perthousand.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_phi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_phi.png new file mode 100644 index 0000000000..37f77afdaa Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_phi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pi.png new file mode 100644 index 0000000000..bf1cacc5cb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pm.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pm.png new file mode 100644 index 0000000000..a95f4dea26 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pm.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pound.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pound.png new file mode 100644 index 0000000000..62ad0f81df Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_pound.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prec.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prec.png new file mode 100644 index 0000000000..af6c38bbcb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prec.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prime.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prime.png new file mode 100644 index 0000000000..6b21e99276 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prime.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prod.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prod.png new file mode 100644 index 0000000000..de6f05d366 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_prod.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_propto.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_propto.png new file mode 100644 index 0000000000..dad260239e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_propto.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_psi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_psi.png new file mode 100644 index 0000000000..24da5f9dd4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_psi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rangle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rangle.png new file mode 100644 index 0000000000..f10a6d69a4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rangle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rceil.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rceil.png new file mode 100644 index 0000000000..0d01ada144 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rceil.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_registered.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_registered.png new file mode 100644 index 0000000000..0737d0209f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_registered.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rfloor.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rfloor.png new file mode 100644 index 0000000000..24f84fa374 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rfloor.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rho.png new file mode 100644 index 0000000000..30f00d29b0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightangle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightangle.png new file mode 100644 index 0000000000..14b9b2260e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightangle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_righthand.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_righthand.png new file mode 100644 index 0000000000..6c3310873c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_righthand.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoondown.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoondown.png new file mode 100644 index 0000000000..c1af54b3ae Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoondown.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoonup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoonup.png new file mode 100644 index 0000000000..da16307c76 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightharpoonup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightleftharpoon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightleftharpoon.png new file mode 100644 index 0000000000..5b0d1dba42 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_rightleftharpoon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_searrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_searrow.png new file mode 100644 index 0000000000..10717036bb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_searrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sec.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sec.png new file mode 100644 index 0000000000..865d00caab Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sec.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_setminus.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_setminus.png new file mode 100644 index 0000000000..731e1a6c8e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_setminus.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sgn.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sgn.png new file mode 100644 index 0000000000..9c41ea0df5 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sgn.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sign.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sign.png new file mode 100644 index 0000000000..dc2b88ac19 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sign.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sim.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sim.png new file mode 100644 index 0000000000..4c3a0e49e6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sim.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_simeq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_simeq.png new file mode 100644 index 0000000000..1b03c232e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_simeq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sin.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sin.png new file mode 100644 index 0000000000..bfa6a69b49 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sin.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sinh.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sinh.png new file mode 100644 index 0000000000..3d3b0469e9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sinh.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_smile.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_smile.png new file mode 100644 index 0000000000..2ac1dd5d4f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_smile.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sphericalangle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sphericalangle.png new file mode 100644 index 0000000000..5e942509b8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sphericalangle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcap.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcap.png new file mode 100644 index 0000000000..836dabc688 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcap.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcup.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcup.png new file mode 100644 index 0000000000..5a26f1e8a4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sqcup.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_square.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_square.png new file mode 100644 index 0000000000..10f15aeff6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_square.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ss.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ss.png new file mode 100644 index 0000000000..4244fd1c5e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ss.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_star.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_star.png new file mode 100644 index 0000000000..ef615c0a0d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_star.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subset.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subset.png new file mode 100644 index 0000000000..5cafad59cd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subset.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subseteq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subseteq.png new file mode 100644 index 0000000000..9ca1392219 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subseteq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subsetnot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subsetnot.png new file mode 100644 index 0000000000..a7cf46b80d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_subsetnot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_succ.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_succ.png new file mode 100644 index 0000000000..15a82bd534 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_succ.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sum.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sum.png new file mode 100644 index 0000000000..014938917b Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_sum.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supset.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supset.png new file mode 100644 index 0000000000..6d38456d83 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supset.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supseteq.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supseteq.png new file mode 100644 index 0000000000..279466892e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supseteq.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supsetnot.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supsetnot.png new file mode 100644 index 0000000000..bdf35f59f4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_supsetnot.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_swarrow.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_swarrow.png new file mode 100644 index 0000000000..d0cb627885 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_swarrow.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tan.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tan.png new file mode 100644 index 0000000000..f650930466 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tan.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tanh.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tanh.png new file mode 100644 index 0000000000..22cd992464 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tanh.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tau.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tau.png new file mode 100644 index 0000000000..af27f4f9c4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tau.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tcohm.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tcohm.png new file mode 100644 index 0000000000..7532fd36c0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tcohm.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textGamma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textGamma.png new file mode 100644 index 0000000000..d2341674e2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textGamma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textLambda.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textLambda.png new file mode 100644 index 0000000000..372bcc2702 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textLambda.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPhi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPhi.png new file mode 100644 index 0000000000..b418f90abe Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPhi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPi.png new file mode 100644 index 0000000000..e9f74fe387 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textPi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textSigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textSigma.png new file mode 100644 index 0000000000..a35b5a19b9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textSigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textTheta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textTheta.png new file mode 100644 index 0000000000..27100e4ad2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textTheta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textXi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textXi.png new file mode 100644 index 0000000000..f1bedbb2ce Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textXi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textalpha.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textalpha.png new file mode 100644 index 0000000000..6e6d273f58 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textalpha.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbar.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbar.png new file mode 100644 index 0000000000..d0db1871ac Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbar.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbeta.png new file mode 100644 index 0000000000..2adf8eb5e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbeta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbullet.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbullet.png new file mode 100644 index 0000000000..ae42129058 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textbullet.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textchi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textchi.png new file mode 100644 index 0000000000..f53fcf8101 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textchi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textcopyright.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textcopyright.png new file mode 100644 index 0000000000..1062bba8c8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textcopyright.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdagger.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdagger.png new file mode 100644 index 0000000000..73873fa221 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdagger.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdaggerdbl.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdaggerdbl.png new file mode 100644 index 0000000000..f24be29977 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdaggerdbl.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphen.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphen.png new file mode 100644 index 0000000000..168188f4b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphen.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphenchar.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphenchar.png new file mode 100644 index 0000000000..168188f4b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdblhyphenchar.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdegree.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdegree.png new file mode 100644 index 0000000000..40e40d04dd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdegree.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdelta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdelta.png new file mode 100644 index 0000000000..976810aac0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textdelta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textemdash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textemdash.png new file mode 100644 index 0000000000..168188f4b4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textemdash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textendash.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textendash.png new file mode 100644 index 0000000000..c666eca244 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textendash.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textepsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textepsilon.png new file mode 100644 index 0000000000..e7a52bbce1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textepsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texteta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texteta.png new file mode 100644 index 0000000000..f6a9bfd1b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texteta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textexclamdown.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textexclamdown.png new file mode 100644 index 0000000000..65522227f1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textexclamdown.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textgreater.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textgreater.png new file mode 100644 index 0000000000..70818d3fad Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textgreater.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texthyphen.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texthyphen.png new file mode 100644 index 0000000000..2fee95ac75 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texthyphen.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textiota.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textiota.png new file mode 100644 index 0000000000..36377b6234 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textiota.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textkappa.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textkappa.png new file mode 100644 index 0000000000..12e4b9c71e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textkappa.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textless.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textless.png new file mode 100644 index 0000000000..da9f485025 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textless.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textmu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textmu.png new file mode 100644 index 0000000000..3484470146 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textmu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textnu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textnu.png new file mode 100644 index 0000000000..03d7b9bb6c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textnu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textomega.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textomega.png new file mode 100644 index 0000000000..48ed403cf8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textomega.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textpsi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textpsi.png new file mode 100644 index 0000000000..24da5f9dd4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textpsi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textquestiondown.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textquestiondown.png new file mode 100644 index 0000000000..432da9f569 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textquestiondown.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textregistered.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textregistered.png new file mode 100644 index 0000000000..0737d0209f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textregistered.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textrho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textrho.png new file mode 100644 index 0000000000..30f00d29b0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textrho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texttau.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texttau.png new file mode 100644 index 0000000000..af27f4f9c4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_texttau.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textupsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textupsilon.png new file mode 100644 index 0000000000..91181c5653 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textupsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarepsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarepsilon.png new file mode 100644 index 0000000000..cf41aafc90 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarepsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarphi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarphi.png new file mode 100644 index 0000000000..c6aab3b4db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarphi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarpi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarpi.png new file mode 100644 index 0000000000..a6d282f486 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarpi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarrho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarrho.png new file mode 100644 index 0000000000..38a2210bdd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarrho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarsigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarsigma.png new file mode 100644 index 0000000000..519c139152 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvarsigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvartheta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvartheta.png new file mode 100644 index 0000000000..effedb4958 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textvartheta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textzeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textzeta.png new file mode 100644 index 0000000000..e020d70a18 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_textzeta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_therefore.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_therefore.png new file mode 100644 index 0000000000..e481b9d569 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_therefore.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_theta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_theta.png new file mode 100644 index 0000000000..a78f9ed21c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_theta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_times.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_times.png new file mode 100644 index 0000000000..cc27aa4532 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_times.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tlcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tlcorner.png new file mode 100644 index 0000000000..cef3ebc3d2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_tlcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_to.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_to.png new file mode 100644 index 0000000000..8f9f0c0607 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_to.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_top.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_top.png new file mode 100644 index 0000000000..677e46444c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_top.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trademark.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trademark.png new file mode 100644 index 0000000000..394561930f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trademark.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trapezium.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trapezium.png new file mode 100644 index 0000000000..f0631e5964 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trapezium.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trcorner.png new file mode 100644 index 0000000000..9567d00133 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_triangle.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_triangle.png new file mode 100644 index 0000000000..06389cf946 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_triangle.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trprime.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trprime.png new file mode 100644 index 0000000000..71ff029002 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_trprime.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ulcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ulcorner.png new file mode 100644 index 0000000000..cef3ebc3d2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_ulcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upLambda.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upLambda.png new file mode 100644 index 0000000000..372bcc2702 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upLambda.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upOmega.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upOmega.png new file mode 100644 index 0000000000..d2341674e2 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upOmega.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upPsi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upPsi.png new file mode 100644 index 0000000000..d27bf1b13d Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upPsi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upSigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upSigma.png new file mode 100644 index 0000000000..a35b5a19b9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upSigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upalpha.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upalpha.png new file mode 100644 index 0000000000..6e6d273f58 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upalpha.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upbeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upbeta.png new file mode 100644 index 0000000000..2adf8eb5e7 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upbeta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upchi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upchi.png new file mode 100644 index 0000000000..f53fcf8101 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upchi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_updelta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_updelta.png new file mode 100644 index 0000000000..976810aac0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_updelta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upepsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upepsilon.png new file mode 100644 index 0000000000..e7a52bbce1 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upepsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upeta.png new file mode 100644 index 0000000000..f6a9bfd1b3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upeta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upgamma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upgamma.png new file mode 100644 index 0000000000..de4465ca76 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upgamma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonleft.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonleft.png new file mode 100644 index 0000000000..2978f284de Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonleft.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonright.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonright.png new file mode 100644 index 0000000000..a21a67cb9f Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upharpoonright.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upiota.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upiota.png new file mode 100644 index 0000000000..36377b6234 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upiota.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upkappa.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upkappa.png new file mode 100644 index 0000000000..12e4b9c71e Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upkappa.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upmu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upmu.png new file mode 100644 index 0000000000..3484470146 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upmu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upnu.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upnu.png new file mode 100644 index 0000000000..03d7b9bb6c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upnu.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upphi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upphi.png new file mode 100644 index 0000000000..37f77afdaa Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upphi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uppi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uppi.png new file mode 100644 index 0000000000..bf1cacc5cb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uppi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uprho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uprho.png new file mode 100644 index 0000000000..30f00d29b0 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uprho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upsilon.png new file mode 100644 index 0000000000..91181c5653 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptau.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptau.png new file mode 100644 index 0000000000..af27f4f9c4 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptau.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptheta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptheta.png new file mode 100644 index 0000000000..a78f9ed21c Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_uptheta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upupsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upupsilon.png new file mode 100644 index 0000000000..91181c5653 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upupsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarepsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarepsilon.png new file mode 100644 index 0000000000..cf41aafc90 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarepsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarphi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarphi.png new file mode 100644 index 0000000000..c6aab3b4db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarphi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarpi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarpi.png new file mode 100644 index 0000000000..a6d282f486 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarpi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarrho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarrho.png new file mode 100644 index 0000000000..38a2210bdd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarrho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarsigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarsigma.png new file mode 100644 index 0000000000..519c139152 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvarsigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvartheta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvartheta.png new file mode 100644 index 0000000000..effedb4958 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upvartheta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upxi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upxi.png new file mode 100644 index 0000000000..661e977562 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upxi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upzeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upzeta.png new file mode 100644 index 0000000000..e020d70a18 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_upzeta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_urcorner.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_urcorner.png new file mode 100644 index 0000000000..9567d00133 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_urcorner.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varcarriagereturn.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varcarriagereturn.png new file mode 100644 index 0000000000..cc7c89c0e3 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varcarriagereturn.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varepsilon.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varepsilon.png new file mode 100644 index 0000000000..cf41aafc90 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varepsilon.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varhexagonlrbonds.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varhexagonlrbonds.png new file mode 100644 index 0000000000..3c26ef6ca9 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varhexagonlrbonds.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varnothing.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varnothing.png new file mode 100644 index 0000000000..6230172169 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varnothing.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varphi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varphi.png new file mode 100644 index 0000000000..c6aab3b4db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varphi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varpi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varpi.png new file mode 100644 index 0000000000..a6d282f486 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varpi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varrho.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varrho.png new file mode 100644 index 0000000000..38a2210bdd Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varrho.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varsigma.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varsigma.png new file mode 100644 index 0000000000..519c139152 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_varsigma.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartheta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartheta.png new file mode 100644 index 0000000000..effedb4958 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartheta.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartriangleleft.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartriangleleft.png new file mode 100644 index 0000000000..3e26be5cbc Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vartriangleleft.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vdots.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vdots.png new file mode 100644 index 0000000000..4b1f95fff6 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vdots.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vee.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vee.png new file mode 100644 index 0000000000..dc5b359ccb Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_vee.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_wedge.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_wedge.png new file mode 100644 index 0000000000..d8f59848db Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_wedge.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_xi.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_xi.png new file mode 100644 index 0000000000..661e977562 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_xi.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_yen.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_yen.png new file mode 100644 index 0000000000..1062bba8c8 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_yen.png differ diff --git a/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_zeta.png b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_zeta.png new file mode 100644 index 0000000000..e020d70a18 Binary files /dev/null and b/doc/images/jkqtmathtext/symbols/jkqtmathtext_symbols_zeta.png differ diff --git a/doc/jkqtmathtext_docimages_accents.jkmt b/doc/jkqtmathtext_docimages_accents.jkmt new file mode 100644 index 0000000000..f65a26c8ce --- /dev/null +++ b/doc/jkqtmathtext_docimages_accents.jkmt @@ -0,0 +1,75 @@ +--- +MTDacute.png +$\acute{x}\acute{i}\acute{X}\acute{\psi}\acute{abc}$ +--- +MTDarrow.png +$\arrow{x}\arrow{i}\arrow{X}\arrow{\psi}\arrow{abc}$ +--- +MTDbar.png +$\bar{x}\bar{i}\bar{X}\bar{\psi}\bar{abc}$ +--- +MTDcheck.png +$\check{x}\check{i}\check{X}\check{\psi}\check{abc}$ +--- +MTDbreve.png +$\breve{x}\breve{i}\breve{X}\breve{\psi}\breve{abc}$ +--- +MTDddot.png +$\ddot{x}\ddot{i}\ddot{X}\ddot{\psi}\ddot{abc}$ +--- +MTDdot.png +$\dot{x}\dot{i}\dot{X}\dot{\psi}\dot{abc}$ +--- +MTDdoubleoverline.png +$\ooline{x}\ooline{i}\ooline{X}\ooline{\psi}\ooline{abc}$ +--- +MTDdoubleunderline.png +$\uuline{x}\uuline{i}\uuline{X}\uuline{\psi}\uuline{abc}$ +--- +MTDgrave.png +$\grave{x}\grave{i}\grave{X}\grave{\psi}\grave{abc}$ +--- +MTDhat.png +$\hat{x}\hat{i}\hat{X}\hat{\psi}\hat{abc}$ +--- +MTDocirc.png +$\ocirc{x}\ocirc{i}\ocirc{X}\ocirc{\psi}\ocirc{abc}$ +--- +MTDoverline.png +$\overline{x}\overline{i}\overline{X}\overline{\psi}\overline{abc}$ +--- +MTDtilde.png +$\tilde{x}\tilde{i}\tilde{X}\tilde{\psi}\tilde{abc}$ +--- +MTDunderline.png +$\underline{x}\underline{i}\underline{X}\underline{\psi}\underline{abc}$ +--- +MTDvec.png +$\vec{x}\vec{i}\vec{X}\vec{\psi}\vec{abc}$ +--- +MTDwidecheck.png +$\widecheck{x}\widecheck{i}\widecheck{X}\widecheck{\psi}\widecheck{abc}$ +--- +MTDwidehat.png +$\widehat{x}\widehat{i}\widehat{X}\widehat{\psi}\widehat{abc}$ +--- +MTDwidetilde.png +$\widetilde{x}\widetilde{i}\widetilde{X}\widetilde{\psi}\widetilde{abc}$ +--- +jkqtmathtext_mathdeco.png +$\vec{x} \dot{x} \ddot{x} \overline{x} \underline{x} \hat{x} \tilde{x} \uul{x} \ool{x} \bar{x} \arrow{x} \widehat{x} \widetilde{x} ...$ +--- +jkqtmathtext_textaccents.png +\begin{array} +{\backslash}"A: & \"A\"a & {\backslash}`A: & \`A\`a \\ +{\backslash}'A: & \'A\'a &{\backslash}{\circonflex}A: & \^A\^a \\ +{\backslash}{\sim}A: & \~A\~a &{\backslash}r\{A\}: & \r{A}\r{a} \\ +{\backslash}u\{A\}: & \u{A}\u{a} &{\backslash}=A: & \=A\=a \\ +{\backslash}v\{C\}: & \v{C}\v{c} &{\backslash}.e: & \.e \\ +{\backslash}AA{\backslash}aa & \AA\aa & {\backslash}OE{\backslash}oe & {\OE}{\oe} \\ +{\backslash}L{\backslash}l & \L\l & {\backslash}AE{\backslash}ae & {\AE}{\ae} \\ +{\backslash}ss & \ss & & +\end{array} +--- +jkqtmathtext_mathaccents.png +$\ddot{A}\ddot{a}\grave{A}\grave{a}\acute{A}\acute{a}\hat{A}\hat{a}\tilde{A}\tilde{a}\bar{A}\bar{a}\AA\aa{\AE}{\ae}\check{C}\check{c}\ddot{E}\ddot{e}\dot{e}\L\l\ddot{O}\ddot{o}\grave{O}\grave{o}\acute{O}\acute{o}\hat{O}\hat{o}\tilde{O}\tilde{o}\O\o{\OE}{\ae}\check{S}\check{s}\ss\ddot{U}\ddot{u}\grave{U}\grave{u}\acute{U}\acute{u}\hat{U}\hat{u}\tilde{U}\tilde{u}$ \ No newline at end of file diff --git a/doc/jkqtmathtext_docimages_boxes.jkmt b/doc/jkqtmathtext_docimages_boxes.jkmt new file mode 100644 index 0000000000..16d09df8a6 --- /dev/null +++ b/doc/jkqtmathtext_docimages_boxes.jkmt @@ -0,0 +1,39 @@ +--- +jkqtmathtext_boxed.png +{\backslash}boxed: \boxed{boxed text} +--- +jkqtmathtext_ovalboxed.png +{\backslash}ovalbox: \ovalbox{boxed text} +--- +jkqtmathtext_doubleovalbox.png +{\backslash}ovaldoublebox: \ovaldoublebox{boxed text} +--- +jkqtmathtext_doublebox.png +{\backslash}doublebox: \doublebox{boxed text} +--- +jkqtmathtext_oovalbox.png +{\backslash}Ovalbox: \Ovalbox{boxed text} +--- +jkqtmathtext_dashbox.png +{\backslash}dashbox: \dashbox{boxed text} +--- +jkqtmathtext_dottedbox.png +{\backslash}dottedbox: \dottedbox{boxed text} +--- +jkqtmathtext_colorbox.png +{\backslash}colorbox\{red\}: \colorbox{red}{boxed text} +--- +jkqtmathtext_fcolorbox.png +{\backslash}fcolorbox\{red\}\{yellow\}: \fcolorbox{red}{yellow}{boxed text} +--- +jkqtmathtext_shaded.png +{\backslash}shaded\{yellow\}: \shaded{yellow}{boxed text} +--- +jkqtmathtext_beginshaded.png +{\backslash}begin\{shaded\}: \begin{shaded}boxed text\\ 2^{nd} line\end{shaded} +--- +jkqtmathtext_beginsnugshade.png +{\backslash}begin\{snugshade\}: \begin{snugshade}boxed text\\ 2^{nd} line\end{snugshade} +--- +jkqtmathtext_beginframed.png +{\backslash}begin\{framed\}: \begin{framed}boxed text\\ 2^{nd} line\end{framed} diff --git a/doc/jkqtmathtext_docimages_braces.jkmt b/doc/jkqtmathtext_docimages_braces.jkmt new file mode 100644 index 0000000000..6f5b019637 --- /dev/null +++ b/doc/jkqtmathtext_docimages_braces.jkmt @@ -0,0 +1,51 @@ +--- +jkqtmathtext_brace_array.png +$\left\langle\begin{array}a&b&...\\ c&d&...\end{array}\right\rangle$ +--- +jkqtmathtext_brace_bbig.png +$\Bigl[\Bigl(r^{123}\Bigr)\Bigr]$ +--- +jkqtmathtext_brace_bbigg.png +$\Biggl\{\Biggl(r^{123}\Biggr)\Biggr\}$ +--- +jkqtmathtext_brace_big.png +$\bigl\{\bigl(r^{123}\bigr)\bigr\}$ +--- +jkqtmathtext_brace_bigg.png +$\biggl\{\biggl(r^{123}\biggr)\biggr\}$ +--- +jkqtmathtext_brace_bigfamily.png +$\Biggl\langle\biggl\{\Bigl[\big(r^{123}\bigr)\Bigr]\biggr\}\Biggr\rangle$ +--- +jkqtmathtext_brace_lcorner.png +$\left\llcorner a\cdot x^2\right\lrcorner$ +--- +jkqtmathtext_brace_ucorner.png +$\left\ulcorner a\cdot x^2\right\urcorner$ +--- +jkqtmathtext_brace_ceil.png +$\left\lceil a\cdot x^2\right\rceil$ +--- +jkqtmathtext_brace_floor.png +$\left\lfloor a\cdot x^2\right\rfloor$ +--- +jkqtmathtext_brace_curly.png +$\left\{ a\cdot x^2\right\}$ +--- +jkqtmathtext_brace_round.png +$\left( a\cdot x^2\right)$ +--- +jkqtmathtext_brace_dblline.png +$\left\| a\cdot x^2\right\|$ +--- +jkqtmathtext_brace_oneline.png +$\left| a\cdot x^2\right|$ +--- +jkqtmathtext_brace_rect.png +$\left[ a\cdot x^2\right]$ +--- +jkqtmathtext_brace_tri.png +$\left\langle a\cdot x^2\right\rangle$ +--- +jkqtmathtext_brace_dot.png +{\backslash}left.{\backslash}right): $\left. a\cdot x^2\right)$\ \ \ \ \ {\backslash}left({\backslash}right.: $\left( a\cdot x^2\right.$ diff --git a/doc/jkqtmathtext_docimages_formating.jkmt b/doc/jkqtmathtext_docimages_formating.jkmt new file mode 100644 index 0000000000..85f3301f31 --- /dev/null +++ b/doc/jkqtmathtext_docimages_formating.jkmt @@ -0,0 +1,77 @@ +--- +jkqtmathtext_bold.png +{\backslash}textbf: \textbf{bold text} +--- +jkqtmathtext_italic.png +{\backslash}textit: \textit{italic text} +--- +jkqtmathtext_sc.png +{\backslash}textsc: \textsc{SmallCaps text} +--- +jkqtmathtext_tt.png +{\backslash}texttt: \textsc{Typewriter text} +--- +jkqtmathtext_cal.png +{\backslash}textcal: \textcal{Caligraphic text}\ \ \ \ \ {\backslash}mathcal: $\mathcal{L}=T-V$ +--- +jkqtmathtext_frak.png +{\backslash}textfrak: \textfrak{Fraktur text}\ \ \ \ \ {\backslash}mathfrak: $\mathfrak{L}=T-V$ +--- +jkqtmathtext_script.png +{\backslash}textscript: \textscript{Script text}\ \ \ \ \ {\backslash}mathscript: $\mathscript{L}=T-V$ +--- +jkqtmathtext_bb.png +{\backslash}mathbb: $x\in\mathbb{R}, z\in\mathbb{C}$\ \ \ \ \ {\backslash}textbb: \textbb{Blackboard text} +--- +jkqtmathtext_bb_sim.png +--fontblackboardsimulated=XITS Math +{\backslash}mathbb: $x\in\mathbb{R}, z\in\mathbb{C}$\ \ \ \ \ {\backslash}textbb: \textbb{Blackboard text} +--- +jkqtmathtext_ol.png +{\backslash}ol: \ol{overlined text} +--- +jkqtmathtext_ool.png +{\backslash}ool: \ool{double-overlined text} +--- +jkqtmathtext_ul.png +{\backslash}ul: \ul{underlined text} +--- +jkqtmathtext_uul.png +{\backslash}uul: \uul{double-underlined text} +--- +jkqtmathtext_colored.png +{\backslash}textcolor\{COLOR\}: \textcolor{red}{red} and \textcolor{blue}{BLUE} text} +--- +jkqtmathtext_fonts.png +{\backslash}textrm: \textrm{Roman} {\backslash}textsf: \textsf{Sans} {\backslash}texttt: \texttt{Typewriter} {\backslash}textscript: \textscript{Script} +--- +jkqtmathtext_userfont.png +default, \userfont{Arial}{Arial}, \userfont{Comic Sans MS}{Comic Sans MS} +--- +MTDcancel.png +{\backslash}cancel: \cancel{canceled text} +--- +MTDbcancel.png +{\backslash}bcancel: \bcancel{back-canceled text} +--- +MTDstrike.png +{\backslash}strike: \strike{strike-out text} +--- +MTDxcancel.png +{\backslash}xcancel: \xcancel{X-canceled text} +--- +jkqtmathtext_begincenter.png +{\backslash}begin\{center\}: \begin{center}text\\ \textbf{2^{nd} line of text}\\last \textit{line} $\frac{1}{2}$\end{center} +--- +jkqtmathtext_beginflushleft.png +{\backslash}begin\{flushleft\}: \begin{flushleft}text\\ \textbf{2^{nd} line of text}\\last \textit{line} $\frac{1}{2}$\end{flushleft} +--- +jkqtmathtext_beginflushright.png +{\backslash}begin\{flushright\}: \begin{flushright}text\\ \textbf{2^{nd} line of text}\\last \textit{line} $\frac{1}{2}$\end{flushright} +--- +schreq_mathmode.png +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +schreq_normalmode.png +Schrödinger's equation: \left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x) + diff --git a/doc/jkqtmathtext_docimages_frac.jkmt b/doc/jkqtmathtext_docimages_frac.jkmt new file mode 100644 index 0000000000..e1c693d33c --- /dev/null +++ b/doc/jkqtmathtext_docimages_frac.jkmt @@ -0,0 +1,39 @@ +--- +jkqtmathtext_brace_stackrel.png +$x=\left(\stackrel{1}{2}\right)$ +--- +MTFMdfrac.png +$x=\dfrac{a}{b}+\dfrac{g}{a}+\dfrac{a^2}{b^2}+\dfrac{a^2}{b^\frac{1}{2}}$ +--- +MTFMfrac.png +$x=\frac{a}{b}+\frac{g}{a}+\frac{a^2}{b^2}+\frac{a^2}{b^\frac{1}{2}}$ +--- +MTFMsfrac.png +$x=\sfrac{1}{2},\sfrac{3}{4}$ +--- +MTFMstfrac.png +$x=\stfrac{1}{2},\stfrac{3}{4}$ +--- +MTFMstackrel.png +$x=\stackrel{a}{b}+\stackrel{g}{a}+\stackrel{a^2}{b^2}+\stackrel{a^2}{b^\stackrel{1}{2}}$ +--- +MTFMtfrac.png +$x=\tfrac{a}{b}+\tfrac{g}{a}+\tfrac{a^2}{b^2}+\tfrac{a^2}{b^\tfrac{1}{2}}$ +--- +MTFMoverbracket.png +$f(x)=\overbracket{x+x+\ldots+x}{k\ \text{times}}$ +--- +MTFMunderbracket.png +$f(x)=\underbracket{x+x+\ldots+x}{k\ \text{times}}$ +--- +MTFMoverbrace.png +$f(x)=\overbrace{x+x+\ldots+x}{k\ \text{times}}$ +--- +MTFMunderbrace.png +$f(x)=\underbrace{x+x+\ldots+x}{k\ \text{times}}$ +--- +MTFMoverset.png +$X\overset{=}{\text{def}}Y\ \ \ \ X\overset{=}{!}Y\ \ \ \ \ \frac{\Delta f}{\Delta x}\overset{\Delta x\rightarrow0}{\rightarrow}f^\prime$ +--- +MTFMunderset.png +$X\underset{=}{\text{def (5)}}Y\ \ \ \ X\underset{\Rightarrow}{f}Y\ \ \ \ \ \frac{\Delta f}{\Delta x}\underset{\rightarrow}{\Delta x\rightarrow0}f^\prime$ diff --git a/doc/jkqtmathtext_docimages_math.jkmt b/doc/jkqtmathtext_docimages_math.jkmt new file mode 100644 index 0000000000..8767af4643 --- /dev/null +++ b/doc/jkqtmathtext_docimages_math.jkmt @@ -0,0 +1,35 @@ +--- +jkqtmathtext_cbrt.png +$\cbrt{1+\cbrt{1+\cbrt{1+\cbrt{1+\cbrt{1+x}}$ +--- +jkqtmathtext_sqrt.png +$\sqrt{1+\sqrt{1+\sqrt{1+\sqrt{1+\sqrt{1+x}}\ \ \ \ \ \sqrt[3.1415]{x^2+\pi y^2}$ +--- +jkqtmathtext_supersub.png +$r^{123}r^\frac{1}{2}\ \ \ \ \ r_{123}r_\frac{1}{2}\ \ \ \ \ a_\text{text}^2a_\text{text}^\frac{1}{2}a^\text{text}_\frac{1}{2}$ +--- +jkqtmathtext_specialsubsuper.png +$\lim\limits_{x\rightarrow\infty}\sum\limits_{n=1}^\infty\prod\limits_{n=1}^\infty\bigvee\limits_{n=1}^\infty\bigcup\limits_{n=1}^\infty$ +--- +jkqtmathtext_doc_quadraticeq.png +$x_{1/2]=\frac{-b\pm\sqrt{b^2-4ac}}{2a}$ +--- +jkqtmathtext_doc_quadraticeq_boxes.png +--showboxes +$x_{1/2]=\frac{-b\pm\sqrt{b^2-4ac}}{2a}$ +--- +jkqtmathtext_lsubstack.png +{\backslash}lsubstack: $\sum\limits_\lsubstack{0\leq i\leq10\\-5\leq j\leq1000}f_{i,j}$ +--- +jkqtmathtext_rsubstack.png +{\backslash}rsubstack: $\sum\limits_\rsubstack{0\leq i\leq10\\-5\leq j\leq1000}f_{i,j}$ +--- +jkqtmathtext_substack.png +{\backslash}substack: $\sum\limits_\substack{0\leq i\leq10\\-5\leq j\leq1000}f_{i,j}$ +--- +jkqtmathtext_mathmode_and_textmode.png +\begin{array}text: & abc123+d/e\\ math: & $abc123+d/e$\end{array} +--- +jkqtmathtext_mathoperator_width_factor.png +--showboxes +\begin{array}Math: $a=b$ & text: a=b\\\textcolor{blue}{extra space}&\textcolor{blue}{normal spacing}\end{array} diff --git a/doc/jkqtmathtext_docimages_matrix.jkmt b/doc/jkqtmathtext_docimages_matrix.jkmt new file mode 100644 index 0000000000..28662c46aa --- /dev/null +++ b/doc/jkqtmathtext_docimages_matrix.jkmt @@ -0,0 +1,21 @@ +--- +jkqtmathtext_array.png +$\begin{array}a&b&...\\ c&d&...\end{array}$ +--- +jkqtmathtext_bmatrix.png +$\begin{bmatrix}a&b&...\\ c&d&...\end{bmatrix}$ +--- +jkqtmathtext_bbmatrix.png +$\begin{Bmatrix}a&b&...\\ c&d&...\end{Bmatrix}$ +--- +jkqtmathtext_pmatrix.png +$\begin{pmatrix}a&b&...\\ c&d&...\end{pmatrix}$ +--- +jkqtmathtext_vmatrix.png +$\begin{vmatrix}a&b&...\\ c&d&...\end{vmatrix}$ +--- +jkqtmathtext_vvmatrix.png +$\begin{Vmatrix}a&b&...\\ c&d&...\end{Vmatrix}$ +--- +jkqtmathtext_brace_begincases.png +$f(x)=\begin{cases}\sfrac{1}{2} & \text{if} 0\leq x\leq 1 \\ \sfrac{2}{3} & \text{if} 3\leq x\leq 4 \\ 0 & \text{elsewhere} \end{cases}$ diff --git a/doc/jkqtmathtext_docimages_misc.jkmt b/doc/jkqtmathtext_docimages_misc.jkmt new file mode 100644 index 0000000000..76e388a850 --- /dev/null +++ b/doc/jkqtmathtext_docimages_misc.jkmt @@ -0,0 +1,25 @@ +--- +jkqtmathtext_verb.png +\verb!\LaTeX{} is not pares inside \verb~..~! outside {\backslash}verb +--- +jkqtmathtext_verbatim.png +outside\begin{verbatim} +inside \LaTeX verbatim + 2nd verbaimline + 3rd line +\end{verbatim} +--- +jkqtmathtext_lstlisting.png +outside\begin{lstlisting} +int main() { + printf("Hello World\n"); +} +\end{lstlisting} +--- +jkqtmathtext_verbatimast.png +outside\begin{verbatim*} +inside \LaTeX verbatim + 2nd verbaimline + 3rd line +\end{verbatim*} + \ No newline at end of file diff --git a/doc/jkqtmathtext_docimages_specialfonts.jkmt b/doc/jkqtmathtext_docimages_specialfonts.jkmt new file mode 100644 index 0000000000..7f0dcaf761 --- /dev/null +++ b/doc/jkqtmathtext_docimages_specialfonts.jkmt @@ -0,0 +1,52 @@ +--- +jkqtmathtext_arial.png +--fontroman=Arial --fontmathroman=Arial --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_comicsans.png +--fontroman=Comic Sans MS --fontmathroman=Comic Sans MS --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_comicsans_textonly.png +--fontroman=Comic Sans MS --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_couriernew.png +--fontroman=Courier New --fontmathroman=Courier New --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_timesnewroman.png +--fontroman=Times New Roman --fontmathroman=Times New Roman --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_OldEnglish.png +--fontroman=Old English Text MT --fontmathroman=Old English Text MT --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_fira.png +--fontmathroman=Fira Math --fontroman=Fira Sans --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_mssegoeui.png +--fontmathroman=Segoe UI --fontroman=Segoe UI --fontfallbacksymbol=Segoe UI Symbol --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_computermodern.png +--fontmathroman=CMU Serif --fontroman=SMU Serif --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_asana.png +--fontmathroman=Asana Math --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_xits_all.png +--fontroman=XITS --fontmathroman=XITS Math --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_xits.png +--fontmathroman=XITS Math --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ +--- +jkqtmathtext_stix.png +--fontmathroman=STIX Two Math --fontroman=STIX Two Text --sizeincrease=10 +Schrödinger's equation: $\left[-\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}+V\right]\Psi(x)=\mathrm{i}\hbar\frac{\partial}{\partial t}\Psi(x)$ diff --git a/doc/jkqtmathtext_docimages_symbolsandencoding.jkmt b/doc/jkqtmathtext_docimages_symbolsandencoding.jkmt new file mode 100644 index 0000000000..c17ce06ed4 --- /dev/null +++ b/doc/jkqtmathtext_docimages_symbolsandencoding.jkmt @@ -0,0 +1,25 @@ +--- +jkqtmathtext_emdash.png +emdash: --- +--- +jkqtmathtext_endash.png +endash: -- +--- +jkqtmathtext_hyphen.png +hyphen: - +--- +jkqtmathtext_greek.png +$\alpha\beta\gamma\xi\chi\nu\Gamma\Delta\Omega$ +--- +jkqtmathtext_char.png +A: \char65, circonflex: \char"109 accent: \char'351 +--- +jkqtmathtext_unicode.png +star: \unicode{2605}, circonflex: \unicode{109} emoticons: \usym{1F440} \usym{1F929} +--- +jkqtmathtext_utf8.png +star: \utfeight{e29885} emoticons \utfeight{F09F9881} \utfeight{f09f98bb} +--- +jkqtmathtext_symbols.png +\ {\backslash}sum: $\sum$ {\backslash}prod: $\prod$ {\backslash}int: $\int$ {\backslash}ll: $\ll$\ {\backslash}gg: $\gg$\ {\backslash}leq: $\leq$\ {\backslash}geq: $\geq$\ {\backslash}pm: $\pm$\ {\backslash}mp: $\mp$ ... + \ No newline at end of file diff --git a/lib/jkqtmathtext/jkqtmathtexttools.h b/lib/jkqtmathtext/jkqtmathtexttools.h index f2eac41ee6..265a0c4d04 100644 --- a/lib/jkqtmathtext/jkqtmathtexttools.h +++ b/lib/jkqtmathtext/jkqtmathtexttools.h @@ -157,8 +157,8 @@ enum JKQTMathTextBraceType { MTBTFloorBracket, /*!< \brief floor brackets \image html jkqtmathtext/jkqtmathtext_brace_floor.png */ MTBTDoubleLine, /*!< \brief double-line brackets (norm ||...||) \image html jkqtmathtext/jkqtmathtext_brace_dblline.png */ MTBTSingleLine, /*!< \brief single-line brackets (abs |...|) \image html jkqtmathtext/jkqtmathtext_brace_oneline.png */ - MTBTTopCorner, /*!< \brief top-corner brackets \image html jkqtmathtext/jkqtmathtext_brace_ulcorner.png */ - MTBTBottomCorner, /*!< \brief bottom-corner brackets \image html jkqtmathtext/jkqtmathtext_brace_llcorner.png */ + MTBTTopCorner, /*!< \brief top-corner brackets \image html jkqtmathtext/jkqtmathtext_brace_ucorner.png */ + MTBTBottomCorner, /*!< \brief bottom-corner brackets \image html jkqtmathtext/jkqtmathtext_brace_lcorner.png */ MTBTNone, /*!< \brief no bracket */ MTBTAny, /*!< \brief any bracket, used by JKQTMathText::parseLatexString() */ MTBTUnknown /*!< \brief an unknown tokenName presented to TokenName2JKQTMathTextBraceType() */