this post was submitted on 16 Oct 2023
13 points (100.0% liked)

F-Droid

7966 readers
1 users here now

F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.

Website | GitLab | Mastodon

Matrix space | forum | IRC

founded 3 years ago
MODERATORS
 

I've been using Quillnote for a long time now and this is a feature I've been sorely missing, are there other apps that can help me do the conversion?

you are viewing a single comment's thread
view the rest of the comments
[–] donio@lemmy.world 9 points 11 months ago* (last edited 11 months ago) (2 children)

I use pandoc:
pandoc input.md -o out.pdf

It can use LaTeX or pdfroff for the PDF generation as well as some other backends that I haven't tried yet. The --pdf-engine flag lets you choose between them.

[–] QuazarOmega@lemy.lol 2 points 11 months ago (1 children)

Oh, so there are some available engines on Termux? I had tried just what you did and not specifying the engine would result in an error of missing pdflatex, could you give me the whole command please? Or the packages I need to install first

[–] donio@lemmy.world 3 points 11 months ago

I must admit that I didn't realize that we were on c/F-Droid :) But I just gave it a go in termux and got it working there too:

apt install pandoc groff ghostscript
pandoc in.md -o out.pdf --pdf-engine=pdfroff
[–] FriendBesto@lemmy.ml 2 points 11 months ago

Pandoc is awesome. Highly recommend. Since it can also do numerous other conversions.