Reactormonk
Reactormonk

Reputation: 21730

org-mode export with utf8x instead of utf8

All the fancy characters like ∧, ∀, and ∃ don't have codepoints in the utf8 inputenc package, but the utf8x does. How do I tell emacs to pass the utf8x option when I generate a pdf via org-export?

Upvotes: 3

Views: 839

Answers (1)

Alex Ott
Alex Ott

Reputation: 87249

For example, following way:

#+LATEX_HEADER: \usepackage[utf8x]{inputenc}

More examples you can find in following file...

Upvotes: 1

Related Questions