├── mathview
├── .gitignore
├── src
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ └── mathscribe
│ │ │ │ ├── function.js
│ │ │ │ ├── view.html
│ │ │ │ ├── jscurry-0.4.5.min.js
│ │ │ │ ├── jqmath-0.4.3.css
│ │ │ │ ├── jscurry-0.4.5.js
│ │ │ │ ├── jscurry-documentation.txt
│ │ │ │ ├── jqmath-etc-0.4.6.min.js
│ │ │ │ └── jqmath-0.4.6.js
│ │ └── java
│ │ │ └── com
│ │ │ └── zanvent
│ │ │ └── mathview
│ │ │ ├── Util.java
│ │ │ └── MathView.java
│ ├── test
│ │ └── java
│ │ │ └── com
│ │ │ └── zanvent
│ │ │ └── mathview
│ │ │ └── ExampleUnitTest.java
│ └── androidTest
│ │ └── java
│ │ └── com
│ │ └── zanvent
│ │ └── mathview
│ │ └── ExampleInstrumentedTest.java
├── proguard-rules.pro
└── build.gradle
├── settings.gradle
├── .gitattributes
├── screenshots
├── screenshot.png
└── screenshot2.png
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── .gitignore
├── LICENSE
├── gradle.properties
├── gradlew.bat
├── README.md
└── gradlew
/mathview/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app', ':mathview'
2 |
--------------------------------------------------------------------------------
/mathview/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
49 |
50 | ## How to
51 |
52 | To learn how to write math equations in it, please have a look at [jqMath](https://mathscribe.com/author/jqmath.html).
53 |
54 | ## Advantages
55 |
56 | 1. Faster than MathJax.
57 | 2. Change text size and color easily.
58 | 3. Supports HTML outside of the equation. Example
59 | ```java
60 | mathview.setText("This is a straight line, $\ax + \by = \c$");
61 | ```
62 |
63 |
64 | ## Disadvantages
65 |
66 | 1. Special symbols are typed manually. Example: √ ∑ ∫ ← → + >
67 | 2. Some parts of the MathML standard are not yet implemented in jqMath, such as elementary school mathematics (e.g. “long division”), and “Content MathML.”
68 |
69 |
70 |
71 |
72 | License
73 | =======
74 |
75 | Copyright 2018 Farhan Farooqui
76 |
77 | Licensed under the Apache License, Version 2.0 (the "License");
78 | you may not use this file except in compliance with the License.
79 | You may obtain a copy of the License at
80 |
81 | http://www.apache.org/licenses/LICENSE-2.0
82 |
83 | Unless required by applicable law or agreed to in writing, software
84 | distributed under the License is distributed on an "AS IS" BASIS,
85 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
86 | See the License for the specific language governing permissions and
87 | limitations under the License.
88 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/mathview/src/main/assets/mathscribe/jscurry-0.4.5.min.js:
--------------------------------------------------------------------------------
1 | /* Copyright 2016, Mathscribe, Inc. Released under the MIT license (same as jQuery).
2 | See e.g. http://jquery.org/license for an explanation of this license. */
3 | "use strict";var jsCurry=function(){function r(n){if("function"==typeof n)return r.curry.apply(void 0,arguments);if(2==arguments.length){var t=arguments[1];if("string"==typeof n)return t[n].bind(t);if("function"==typeof t)return("number"==typeof n?r.aritize:r.partial)(n,t)}return 1==arguments.length||r.err(err_F_1_),"number"==typeof n||"string"==typeof n?r.pToF(n):1==n.nodeType?jQuery.data(n):n&&"object"==typeof n?r.aToF(n):void r.err(err_F_2_)}var n=Array.prototype.slice;return Function.prototype.bind||(Function.prototype.bind=function(r){var t=this,e=n.call(arguments,1);return function(){return t.apply(r,e.concat(n.call(arguments,0)))}}),String.prototype.trim||(String.prototype.trim=function(){return String(this).replace(/^\s+|\s+$/g,"")}),Array.isArray||(Array.isArray=function(r){return"object"==typeof r&&null!==r&&"[object Array]"===Object.prototype.toString.call(r)}),Object.keys||(Object.keys=function(r){var n=[];for(var t in r)r.hasOwnProperty(t)&&n.push(t);return n}),Date.now||(Date.now=function(){return(new Date).getTime()}),r.err=function(){throw r.debug,Error("Assertion failed")},r.id=function(r){return r},r.constant=function(r){return function(){return r}},r.applyF=function(r,n){return r.apply(void 0,n)},r.curry=function(r){var n=r;return arguments[0]=void 0,n.bind.apply(n,arguments)},r._={},r.partial=function(t,e){var u=t.length;return function(){for(var i=n.call(arguments,0),o=0;u>o;o++)t[o]!==r._?i.splice(o,0,t[o]):i.length==o&&i.push(void 0);return e.apply(this,i)}},r.uncurry=function(r){return function(n,t){return r(n)(t)}},r.o=function(){var r=arguments;return function(){for(var n=r.length,t=r[--n].apply(void 0,arguments);n>0;)t=r[--n](t);return t}},r.oMap=function(n,t){return function(){return r.applyF(n,r.map(t,arguments))}},r.flip=function(r){return function(n,t){return r(t,n)}},r.seqF=function(){var r=arguments,n=r.length;return function(){for(var t,e=0;n>e;e++)t=r[e].apply(void 0,arguments);return t}},r.cor=function(){var n=arguments;return function(){return r.any(r([r._,arguments],r.applyF),n)}},r.aritize=function(t,e){return function(){return r.applyF(e,n.call(arguments,0,t))}},r.not=function(r){return!r},r.defOr=function(r,n){return void 0!==r?r:n},r.cmpX=function(r,n){return r-n},r.cmpJS=function(r,n){return n>r?-1:r==n?0:1},r.cmpLex=function(n,t,e){return r.any(function(r,t){return t==e.length?1:n(r,e[t])},t)||t.length-e.length},r.eqTo=function(n,t){return t||(t=function(r,n){return r!==n}),r.o(r.not,r(t,n))},r.pToF=function(r){return function(n){return n[r]}},r.aToF=function(r){return function(n){return r[n]}},r.fToA=function(r,n){for(var t=new Array(n),e=0;n>e;e++)t[e]=r(e);return t},r.memoF=function(r,n){return n||(n={}),function(t){return n.hasOwnProperty(t)?n[t]:n[t]=r(t)}},r.replicate=function(n,t){return r.fToA(r.constant(t),n)},r.setF=function(r,n,t){r[n]=t},r.obj1=function(r,n){var t={};return t[r]=n,t},r.slice=function(r,n,t){if(null==n&&(n=0),Array.isArray(r))return r.slice(n,t);var e=r.length;n=0>n?Math.max(0,e+n):Math.min(e,n),t=void 0===t?e:0>t?Math.max(0,e+t):Math.min(e,t);for(var u=[];t>n;)u.push(r[n++]);return u},r.array=function(){return n.call(arguments,0)},r.concatArgs=r.oMap(r("concat",[]),function(n){return Array.isArray(n)?n:r.slice(n)}),r.concatMap=function(n,t){return r.applyF(r.concatArgs,r.map(n,t))},r.reverseCopy=function(n){return r.slice(n).reverse()},r.findIndex=function(r,n){for(var t=n.length,e=0;t>e;e++)if(r(n[e],e,n))return e;return-1},r.findLastIndex=function(r,n){for(var t=n.length;--t>=0;)if(r(n[t],t,n))return t;return-1},r.find=function(n,t){var e=r.findIndex(n,t);return-1==e?void 0:t[e]},r.elemIndex=function(n,t,e){return t.indexOf&&!e&&Array.isArray(t)?t.indexOf(n):r.findIndex(r.eqTo(n,e),t)},r.elemLastIndex=function(n,t,e){return t.lastIndexOf&&!e&&Array.isArray(t)?t.lastIndexOf(n):r.findLastIndex(r.eqTo(n,e),t)},r.elem=function(n,t,e){return-1!=r.elemIndex(n,t,e)},r.all=function(r,n){if(n.every&&Array.isArray(n))return n.every(r);for(var t=n.length,e=0;t>e;e++)if(!r(n[e],e,n))return!1;return!0},r.any=function(r,n){for(var t=n.length,e=!1,u=0;t>u;u++)if(e=r(n[u],u,n))return e;return e},r.iter=function(t,e){if(2==arguments.length){if(e.forEach&&Array.isArray(e))return e.forEach(t);for(var u=e.length,i=0;u>i;i++)t(e[i],i,e)}else{arguments.length>2||r.err(err_iter_);for(var o=n.call(arguments,1),u=r.applyF(Math.min,r.map(r("length"),o)),i=0;u>i;i++)r.applyF(t,r.map(r(i),o).concat(i,o))}},r.map=function(r,n){if(n.map&&Array.isArray(n))return n.map(r);for(var t=n.length,e=new Array(t),u=0;t>u;u++)e[u]=r(n[u],u,n);return e},r.map1=function(n,t){return r.map(r(1,n),t)},r.zipWith=function(n){arguments.length>1||r.err(err_zipWith_);for(var t=[],e=0;;e++){for(var u=[],i=1;ior should be wrapped in an 1280 | inline-block */ 1281 | M.parseMath = function(nod) { 1282 | if (nod.nodeType == 1 /* Element */ && nod.tagName != 'SCRIPT') { 1283 | if (nod.tagName.toUpperCase() == 'MATH') { 1284 | var newE = M.eToMathE(nod); 1285 | if (newE != nod) nod.parentNode.replaceChild(newE, nod); 1286 | } else 1287 | for (var p = nod.firstChild; p; ) { 1288 | var restP = p.nextSibling; // do before splitting 'p' 1289 | M.parseMath(p); 1290 | p = restP; 1291 | } 1292 | } else if (nod.nodeType == 3 /* Text */ && /[$\\]/.test(nod.data) /* for speed */) { 1293 | var doc = nod.ownerDocument, s = nod.data, a = [], t = '', 1294 | re = /\\([$\\])|\$\$?|\\[([]/g; 1295 | while (true) { 1296 | var j = re.lastIndex, m = re.exec(s), k = m ? m.index : s.length; 1297 | if (j < k) t += s.substring(j, k); 1298 | if (m && m[1]) t += m[1]; 1299 | else { 1300 | var i = -1, z; 1301 | if (m) { 1302 | z = m[0] == '\\(' ? '\\)' : m[0] == '\\[' ? '\\]' : m[0]; 1303 | if (re.lastIndex < s.length && (m[0] != '$' || M.$mathQ)) { 1304 | i = s.indexOf(z, re.lastIndex); 1305 | while (i != -1 && s.charAt(i - 1) == '\\') i = s.indexOf(z, i + 1); 1306 | } 1307 | if (i == -1) { 1308 | t += m[0]; 1309 | continue; 1310 | } 1311 | } 1312 | if (t) { 1313 | a.push(doc.createTextNode(t)); 1314 | t = ''; 1315 | } 1316 | if (! m) break; 1317 | var blockQ = m[0] == '$$' || m[0] == '\\[', 1318 | e = M.sToMathE(s.substring(re.lastIndex, i), blockQ, doc); 1319 | if (blockQ && M.inline$$Q && F.elem(nod.parentNode.nodeName, ['P', 'SPAN'])) 1320 | { 1321 | var wrap$ = $('', doc).css('display', 'inline-block').append(e); 1322 | wrap$ = $('', doc).css('white-space', 'nowrap').append(wrap$); 1323 | // so Firefox won't line-break between e and a period/comma/etc. 1324 | e = wrap$[0]; 1325 | } 1326 | a.push(e); 1327 | re.lastIndex = i + z.length; 1328 | } 1329 | } 1330 | F.iter(function(x) { nod.parentNode.insertBefore(x, nod); }, a); 1331 | nod.parentNode.removeChild(nod); 1332 | } 1333 | }; 1334 | M.parseMathQ = true; 1335 | $(function() { 1336 | if (M.MathML === undefined) M.MathML = M.canMathML(); 1337 | if (M.parseMathQ) 1338 | try { 1339 | M.parseMath(document.body); 1340 | } catch(exc) { 1341 | alert(exc); 1342 | } 1343 | }); 1344 | 1345 | if ($.fn.parseMath == null) 1346 | $.fn.parseMath = function() { F.iter(M.parseMath, this); return this; }; 1347 | 1348 | return M; 1349 | }(); 1350 | var M; if (M === undefined) M = jqMath; 1351 | --------------------------------------------------------------------------------