Basics:
[ ] I understand emacs-lisp and can write my configs from the documentation
provided
[X] I copy and paste (emacs-lisp) configs and could slightly modify them to
adapt them to my needs
[ ] emacs-lisp, no please
General font config:
[ ] I want my configurations match the manual(s) of the package(s) I use as
much as possible.
[ ] I prefer to have an abstraction that can be used independently of the
font/language package I use.
I'm not sure how to respond here, so I'll just show you what I use.
(1) Using LuaTeX
In my Org file:
#+LATEX_COMPILER: lualatex
#+LATEX_HEADER_EXTRA: \input{latex-preamble.tex}
In the latex-preamble.tex file:
\usepackage[stixtwo]{fontsetup} % Use Stix 2 OTF fonts
(2) Using pdfTeX (I use this for drafts because it is faster than LuaTeX.)
In my Org file:
#+LATEX_COMPILER: pdflatex
#+LATEX_HEADER_EXTRA: \input{latex-preamble.tex}
In the latex-preamble.tex file:
\usepackage[T1]{fontenc}
\usepackage{stix2} % Stix 2 fonts
Language codes:
[X] I'm comfortable enough with the language codes used by org-mode
[ ] I'd rather use the language names/codes from my font/language package of
choice.
This section doesn't really apply to me because I use American English
exclusively.
Scott Randby