"[email protected]" <[email protected]> writes: > I encounter issues, when exporting nested plain lists below description > list items via latex to pdf: > > This is the org-mode text: > > - Some description item :: > 1. item 1 > 2. item 2 > > This is the pdf outcome: > > Some description list 1. > item 1 > 2. item 2 > ... > Can I tweak this during export or should I revise my org file?
Your file (likely generated by LLM) contains non-breaking spaces that Org mode syntax does not expect. That's why list items get messed up. I'd say that it is a bug in Org parser. I see no reason to prohibit non-breaking spaces in place of spaces when indenting lists. Confirmed. To fix the problem, clean up non-breaking spaces. (This is generally a good idea, as it clearly leaves traces of LLM in the document) -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>
