-
-
Notifications
You must be signed in to change notification settings - Fork 992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Web version #13
Comments
It is not yet planned but it might be possible using the RST sources. |
Some options: StaticNinja https://staticjinja.readthedocs.io/en/stable/index.html Sphinx https://github.com/pydanny/restructuredtext/blob/master/sphinx_tutorial.rst |
I don't have too much time for doing that but I would welcome a PR. |
I've wanted to try sphinx for a while. I've forked the repo. Update 1I've got a web version up and running here.
|
Oh nice! Thank you very much for your effort. I think the style could be fixed but that's a minor point. |
More and more formats of the latest version of the book are created, @DannyDannyDanny great work :) Maybe our efforts can be combined in the future and as an idea to create Jupyterbook version of the book. I haven't studied this framework thoroughly but it has at least several nice properties: @rougier @DannyDannyDanny What do you think about this idea, how difficult will it be? Now I am studying the book, and converting the code to Jupyter Notebooks for experiments here, and it has its own subtleties (like proper DPI fixing and turning off auto tight layout to properly display output images) but it seems that I found the solutions for it.
|
Hi guys, just tuning in to throw another suggestion besides Jupyterbook. I mean Quarto https://quarto.org/ - it's a new project developed by the RMarkdown team and it is a cross-platform, cross-language tool to publish interactive articles, books, presentations etc. based on .md, .ipynb and some other formats (also .rst as far as I can see). I have not tried out the book renderer, only the article renderer, but it seems to be pretty powerful and better with every release. Besides HTML you can also compile to PDF via pandoc from the same sources. My gut feeling is Quarto is going to replace the Jupyterbook in the future because of robustness, so maybe it'd be a better choice. |
Ah! I was wondering how on earth the To make it work in sphinx one of the following changes has to be made:
I've already implemented Option 1 but I'm reverting it in favor of implementing Option 2. An example of Option 2 in .. # BEFORE
.. figure:: introduction/visualization-landscape.pdf
:width: 100%
.. # AFTER
.. figure:: /figures/introduction/visualization-landscape.pdf
:width: 100% If the latex book still compiles after implementing option 2, then that would be the best solution IMO. |
Thanks! I think the idea is great, but I'm already worried I've taken a bigger bite than I can chew with this issue. I'd like to descope it from this issue to start with and keep it in the backlog for now. Perhaps notebooks with the exercises can be added as an extra resource for readers to explore but I suggest we move that discussion to a separate issue 💬 |
Sorry for late reply. Option 1 seems to be the most straighforward because it could be a simple symbolic link and you do not have to change the actual structure. |
If i implement option 1, I'll have to edit the import path
|
Very late again, sorry. Thanks for the detailed update.
|
Could you consider having a web version? i.e through github pages?
The text was updated successfully, but these errors were encountered: