Skip to content

Commit

Permalink
add mathjax
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Jan 23, 2019
1 parent 6c4ea52 commit 49ba1b2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions blog/_posts/2019-01-18-fluxdiffeq.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ title: DiffEqFlux.jl – A Julia Library for Neural Differential Equations
author: Chris Rackauckas, Mike Innes, Yingbo Ma, Jesse Bettencourt, Lyndon White, Vaibhav Dixit
---

<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML"></script>

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
// Center justify equations in code and markdown cells. Elsewhere
// we use CSS to left justify single line equations in code cells.
displayAlign: 'center',
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}},
linebreaks: { automatic: true }
}
});
</script>

In this blog post we will show you how to easily, efficiently, and
robustly add differential equation (DiffEq) solvers to neural networks in Julia.

Expand Down

0 comments on commit 49ba1b2

Please sign in to comment.