Org: LaTeX export, fix item bullets disappearance

It seems that repeated \let\tempa for itemize, enumerate, and
description causes issues. Just using a unique command for each fixes
things.
This commit is contained in:
TEC 2021-03-27 21:08:41 +08:00
parent a95e619a45
commit 819824f2c0
Signed by: tec
GPG key ID: 779591AFDB81F06C

View file

@ -7917,9 +7917,9 @@ much space it puts between list items by default. I'm generally not a fan.
Thankfully this is easy to correct with a small snippet:
#+name: latex-condense-lists
#+begin_src LaTeX
\\let\\tempa\\itemize\\renewcommand{\\itemize}{\\tempa\\setlength{\\itemsep}{-2ex}}
\\let\\tempa\\enumerate\\renewcommand{\\enumerate}{\\tempa\\setlength{\\itemsep}{-2ex}}
\\let\\tempa\\description\\renewcommand{\\description}{\\tempa\\setlength{\\itemsep}{-2ex}}
\\let\\olditem\\itemize\\renewcommand{\\itemize}{\\olditem\\setlength{\\itemsep}{-2ex}}
\\let\\oldenum\\enumerate\\renewcommand{\\enumerate}{\\oldenum\\setlength{\\itemsep}{-2ex}}
\\let\\olddesc\\description\\renewcommand{\\description}{\\olddesc\\setlength{\\itemsep}{-2ex}}
#+end_src
Then we can just hook this in with our clever preamble.