Quarto: Difference between revisions
Created page with "Quarto is an open-source technical publishing system that allows you to render markdown and code chunks into technical documents. It supports several kinds of formats including HTML, PDF, and word documents. The quarto package from nixpkgs by itself will render "qmd" markdown without any extra dependencies. However in order to render R, Python, or other code chunks, you will need to include those tools in your path. For example, consider the following "default.nix" file..." |
|||
| Line 77: | Line 77: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
If you encounter this message while generating PDF documents, you need to add a LaTex distribution to your path (e.g. texLiveFull). If you use "quarto install tinytex", quarto will download a dynamically linked binary that is incompatible with nix. If you've previously run this command, you may need to remove | If you encounter this message while generating PDF documents, you need to add a LaTex distribution to your path (e.g. texLiveFull). If you use "quarto install tinytex", quarto will download a dynamically linked binary that is incompatible with nix. If you've previously run this command, you may need to remove it before rendering PDF documents works as intended. | ||