-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 71e76e8
Showing
12 changed files
with
4,585 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,18 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# See http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[*.md,*.mkd,*.markdown] | ||
trim_trailing_whitespace = false | ||
|
||
[Makefile] | ||
indent_style = tab |
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,3 @@ | ||
.* | ||
*.log | ||
*.iatemplate |
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,7 @@ | ||
.* | ||
*.md | ||
*.log | ||
doc | ||
test | ||
example | ||
benchmark |
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,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>jhermsmeier.template.math</string> | ||
<key>CFBundleName</key> | ||
<string>GitHub-MathML</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>2</string> | ||
<key>IATemplateDocumentFile</key> | ||
<string>document</string> | ||
<key>IATemplateFooterHeight</key> | ||
<integer>90</integer> | ||
<key>IATemplateHeaderHeight</key> | ||
<integer>90</integer> | ||
<key>IATemplateDescription</key> | ||
<string>Document with support for Math</string> | ||
<key>IATemplateAuthor</key> | ||
<string>Jonas Hermsmeier</string> | ||
<key>IATemplateAuthorURL</key> | ||
<string>https://jhermsmeier.de</string> | ||
</dict> | ||
</plist> |
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,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
<link rel="stylesheet" type="text/css" href="github.css"> | ||
<script type="text/javascript" src="texzilla.js"></script> | ||
<script type="text/javascript" src="main.js"></script> | ||
</head> | ||
<body class="markdown-body" data-document> | ||
| ||
<h1>bka</h1> | ||
<div class="math"> | ||
\[ | ||
Rot_{X_i}(⍺_{i,i+1}) = \left( \begin{array}{r} | ||
1 & 0 & 0 & 0 \\ | ||
0 & cos(⍺_{i,i+1}) & -sin(⍺_{i,i+1}) & 0 \\ | ||
0 & sin(⍺_{i,i+1}) & cos(⍺_{i,i+1}) & 0 \\ | ||
0 & 0 & 0 & 1 \\ | ||
\end{array} \right) | ||
\] | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.