How i combine Latex with Quarto? #8149
-
DescriptionI created a complete book in LaTeX and planned to publish it on the internet. Initially, my idea was to convert the LaTeX file to HTML using make4ht/text4ht and host it on GitHub Pages. However, during my research, I came across Quarto. How could I take my latex production and use the Quarto to make a website for the book? What I did was take the output of the tex --> html conversion and change the html extension to qmd and use it as input in the Quarto, but this leads to some incompatibilities, is there an easier way for me to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Quarto is based on markdown. The best way would be to convert to markdown then modify to get Quarto features. quarto pandoc your-book.latex --from latex --to markdown -o your-book.qmd |
Beta Was this translation helpful? Give feedback.
Quarto is based on markdown.
See the guides and start with that:
The best way would be to convert to markdown then modify to get Quarto features.