-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
4eb01da
commit 0d99272
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>function composition - ctop errors</title> | ||
</head> | ||
<body> | ||
<div class="unit"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<compose/> | ||
<fn> | ||
<ci>f</ci> | ||
</fn> | ||
<fn> | ||
<ci>g</ci> | ||
</fn> | ||
</apply> | ||
</math> | ||
<br/> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<apply> | ||
<compose/> | ||
<fn> | ||
<ci>f</ci> | ||
</fn> | ||
<fn> | ||
<ci>g</ci> | ||
</fn> | ||
</apply> | ||
<ci>x</ci> | ||
</apply> | ||
</math> | ||
</div> | ||
|
||
<script type="text/x-mathjax-config"> | ||
MathJax.Hub.Config({ | ||
skipStartupTypeset: true | ||
}); | ||
</script> | ||
<script type="text/javascript" | ||
src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> | ||
</script> | ||
<script src="../../ctop.js"></script> | ||
<script src="../error-tests.js"></script> | ||
|
||
<style type="text/css"> | ||
.MathJax_Display { | ||
text-align: left !important; | ||
} | ||
.unit { | ||
clear: both; | ||
} | ||
pre { | ||
float: right; | ||
width: 50%; | ||
overflow-y: scroll; | ||
} | ||
</style> | ||
</body> | ||
</html> |