By Lilian Besson, Sept.2017.
With inline math sin(x)2+cos(x)2=1 and equations: sin(x)2+cos(x)2=(eix−e−ix2i)2+(eix+e−ix2)2=−e2ix−e−2ix+2++e2ix+e−2ix+24=1.
In Markdown:
Sys.command "ocaml -version";;
And in a executable cell (with OCaml 4.04.2 kernel) :
Sys.command "ocaml -version";;
The OCaml toplevel, version 4.05.0
- : int = 0
And
1.
, 2.
etc1.
, 1.
, ...Avec l'ancienne API de ocaml-jupyter (pré 2020) :
#thread ;;
#require "jupyter.notebook" ;;
(* https://akabe.github.io/ocaml-jupyter/notebook/JupyterNotebook.html *)
let youtube_video url = JupyterNotebook.display "text/html"
(Printf.sprintf "<iframe width=560 height=315 src='%s'></iframe>" url)
;;
File "[8]", line 5, characters 24-47: Error: Unbound module JupyterNotebook Hint: Did you mean Jupyter_notebook? 4: 5: let youtube_video url = JupyterNotebook.display "text/html" 6: (Printf.sprintf "<iframe width=560 height=315 src='%s'></iframe>" url)
Avec la nouvelle API de ocaml-jupyter (après 2020) :
#thread ;;
#require "jupyter" ;;
#require "jupyter.notebook" ;;
(* https://akabe.github.io/ocaml-jupyter/api/jupyter/Jupyter_notebook/ *)
let youtube_video url = Jupyter_notebook.display "text/html"
(Printf.sprintf "<iframe width=560 height=315 src='%s'></iframe>" url)
;;
val youtube_video : string -> Jupyter_notebook.display_id = <fun>
Iframes are disabled by default, but by using the IPython internals we can include let say a YouTube video:
youtube_video "https://www.youtube.com/embed/FNg5_2UUCNU";;
- : Jupyter_notebook.display_id = <abstr>
Et depuis Markdown :