claf
claf

Reputation: 9263

Print org-mode files

I'm wondering how you guys do print your org files from emacs? Like when you have a meeting and you can't bring your laptop so you quickly print your main TODO list to have something to work on!

Do you export org files to another format before printing? PDF? Latex? I find this to be messy output, I don't want a table of content when it's almost only TODO items.

Any advice would be useful!

Upvotes: 1

Views: 2787

Answers (2)

fniessen
fniessen

Reputation: 4506

I print a nice HTML'ized version of my Org files, in such cases.

Have a look at my Bigblow theme therefore (see https://github.com/fniessen/org-html-themes). I simply requires you to add a couple of lines into your Org file, and that's it.

Upvotes: 4

legoscia
legoscia

Reputation: 41618

Whenever I remember how, I turn off the table of contents by putting this at the top of my org file:

#+OPTIONS: toc:nil

Then I usually export to HTML, open in a browser, select whatever I need from the file (avoiding headers/footers I don't like) and print the selection only.

Upvotes: 2

Related Questions