Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-23 Thread Ihor Radchenko
Max Nikulin writes: >> Maybe we can somehow use `org-latex--protect-text' in >> `org-latex--protect-texttt'. > > Unfortunately it does not cover the case of babel shortcuts like "<">. Maybe there is some suitable LaTeX command then? -- Ihor Radchenko // yantar92, Org mode contributor, Learn mo

Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-20 Thread Garid Z.
Ihor Radchenko writes: > "Garid Z." writes: > >> | 3 | =>>>=| =<<<=| >> | 4 | == | == | >> ... >> Resulted PDF file has » and « symbols (maybe: U+00BB, U+00AB) >> instead of 2 normal < symbols. >> ... >> Solution for this might be almost identical with the previous fix. >>

Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-20 Thread Max Nikulin
On 20/04/2023 22:00, Ihor Radchenko wrote: Max Nikulin writes: While \texttt is used, this source of bugs would not exhaust soon. Maybe we can somehow use `org-latex--protect-text' in `org-latex--protect-texttt'. Unfortunately it does not cover the case of babel shortcuts like "<">.

Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-20 Thread Ihor Radchenko
Max Nikulin writes: > While \texttt is used, this source of bugs would not exhaust soon. Maybe we can somehow use `org-latex--protect-text' in `org-latex--protect-texttt'. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at . Support Org deve

Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-20 Thread Max Nikulin
On 20/04/2023 21:18, Ihor Radchenko wrote: +(cond ((equal m ">>") ">{}>{}") +(cond ((equal m "<<") "<{}<{}") Thanks for reporting! Fixed, on bugfix. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=27ee55ebf While \texttt is used, this source of bugs would not exhaust s

Re: [BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-20 Thread Ihor Radchenko
"Garid Z." writes: > | 3 | =>>>=| =<<<=| > | 4 | == | == | > ... > Resulted PDF file has » and « symbols (maybe: U+00BB, U+00AB) > instead of 2 normal < symbols. > ... > Solution for this might be almost identical with the previous fix. > Maybe something like: > > +(cond (

[BUG] Org-LaTeX-export: >> and << (inside of ~code~/=verbatim=) gets exported to single monospace symbol instead of 2 monospace symbols [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-18 Thread Garid Z.
I tried to export following org file (table) to PDF via org-latex-export-to-pdf. * Test Org-file |---+--+--| | 1 | =>= | =<= | | 2 | =>>= | =<<= | | 3 | =>>>=| =<<<=| | 4 | == | == | | 5 | =>= | =<= | | 6 | =>>= | =<<= | |-