Replies: 1 comment
-
Hello, could you please use code blocks, etc. to format your post? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hello,
i would like to embed multiple Jupyter-Notebooks in one .qmd-file. If i just write the embed commands below each other, only the last one will be exectued and displayed within my embed commands. Is there an option (or am I having a syntax error) for emebding multiple jupyter-Notebooks? Ive provided a MWE.
Kind regards,
Test.qmd
{{< embed Test1.ipynb echo=false >}}
{{< embed Test2.ipynb echo=false >}}
Test1.ipynb
from sympy.abc import *
from sympy.functions import *
from spb import plot
plot(x ** 2 + 2, (x, -5, 5), title = "A")
plot((x + 2) ** 2, (x, -7, 3), title = "B") ;
Test2.ipynb
from sympy.abc import *
from sympy.functions import *
from spb import plot
plot(x ** 3 + 2, (x, -5, 5), title = "C")
plot((x + 2) ** 5, (x, -7, 3), title = "D") ;
Beta Was this translation helpful? Give feedback.
All reactions