Changeset 14029 for branches/crossvalidation-2434/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/displayModelFrame.html
- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.DataAnalysis.Symbolic.Views
- Property svn:mergeinfo changed
/stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Views merged: 13316 /trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views (added) merged: 13321,13397,13933,13984,13986-13987
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/displayModelFrame.html
r7446 r14029 1 <!-- this file is derived from sample .html from the MathJax distribution -->2 <!-- Copyright (c) 20 09-2011 Design Science, Inc.-->1 <!-- this file is derived from sample_tex.html from the MathJax distribution --> 2 <!-- Copyright (c) 2010-2015 The MathJax Consortium --> 3 3 <!-- adapted by HEAL for HeuristicLab--> 4 4 <!DOCTYPE html> 5 5 <html> 6 6 <head> 7 <!-- title change by HEAL --> 8 <title>Symbolic Expression Tree</title> 9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 10 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> 11 <script type="text/x-mathjax-config"> 12 MathJax.Hub.Config({ 13 extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"], 14 jax: ["input/TeX","output/HTML-CSS"], 15 tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]}, 16 imageFont: null 17 }); 18 19 </script> 20 <script type="text/javascript" src="./MathJax.js"></script> 21 <!-- begin changes by HEAL --> 22 <script type="text/javascript"> 23 function refreshModel() { 24 var model = document.getElementById("model"); 25 MathJax.Hub.Queue(["Typeset",MathJax.Hub,model]); 26 } 27 </script> 28 <!-- end changes by HEAL --> 29 <style> 30 h1 {text-align:center} 31 h2 { 32 font-weight: bold; 33 background-color: #DDDDDD; 34 padding: .2em .5em; 35 margin-top: 1.5em; 36 border-top: 3px solid #666666; 37 border-bottom: 2px solid #999999; 38 } 39 </style> 7 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 9 <meta name="viewport" content="width=device-width, initial-scale=1"> 10 11 <!-- title change by HEAL --> 12 <title>Symbolic Expression Tree</title> 13 14 <script type="text/x-mathjax-config"> 15 MathJax.Hub.Config({ 16 extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"], 17 jax: ["input/TeX","output/SVG"], 18 tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]}, 19 "HTML-CSS": {preferredFont: "STIX-Web"}, 20 MathMenu: { showLocale:false}, 21 imageFont: null 22 }); 23 </script> 24 25 <script type="text/javascript" async 26 src="./MathJax/MathJax.js?config=TeX-AMS_SVG&locale=en"> 27 </script> 28 <script type="text/javascript"> 29 <!-- necessary to re-typeset when the model is changed--> 30 function refreshModel() { 31 var model = document.getElementById("model"); 32 <!-- see https://docs.mathjax.org/en/v1.1-latest/typeset.html --> 33 MathJax.Hub.Queue(["Typeset",MathJax.Hub,model]); 34 } 35 </script> 40 36 </head> 41 37 <body id="body"> 42 <noscript> 43 <div style="color: #CC0000; text-align: center"> 44 <b>Warning: <a href="http://www.mathjax.org/">MathJax</a> requires JavaScript to process 45 the mathematics on this page.<br /> 46 If your browser supports JavaScript, be sure it is enabled.</b> 47 </div> 48 <hr> 49 </noscript> 50 <p id="model"> 51 </p> 38 <noscript> 39 <div style="color: #CC0000; text-align: center"> 40 <b> 41 Warning: <a href="http://www.mathjax.org/">MathJax</a> requires JavaScript to process 42 the mathematics on this page.<br /> 43 If your browser supports JavaScript, be sure it is enabled. 44 </b> 45 </div> 46 <hr> 47 </noscript> 48 <p id="model"> 49 </p> 52 50 </body> 53 51 </html>
Note: See TracChangeset
for help on using the changeset viewer.