Re: figures not exported properly by ox-latex

2024-07-11 Thread mahmood sheikh
environment that accepts a \caption too. thanks p.s. sorry i keep hitting the "forward" button instead of the "forward all" button so you may receive duplicate emails. On Thu, Jul 11, 2024 at 11:59 AM mahmood sheikh wrote: > this is an example of what i mean: > #+beg

Re: figures not exported properly by ox-latex

2024-07-11 Thread mahmood sheikh
this is an example of what i mean: #+begin_src org #+name: fig-switching-circuit-kmap-1 #+caption: karnaugh table of \(p\) \begin{tikzpicture} \karnaughmap[function=, defaultmap=8, omitzeros=false, omitidx, variables=xyz]{01101001} \end{tikzpicture} #+end_src i vaguely recall org mode

Re: figures not exported properly by ox-latex

2024-07-11 Thread mahmood sheikh
it might've been fixed for figures as its been a while, but shouldnt latex environments with #+caption: and #+name: above them be exported as figures? because currently the user has to write \begin{figure} and \end{figure} explicitly which would work but may not be as practical for other ox

Re: figures not exported properly by ox-latex

2024-07-05 Thread mahmood sheikh
to someone else where the issue is. thanks! On Fri, Feb 2, 2024 at 1:43 PM Ihor Radchenko wrote: > mahmood sheikh writes: > > > im on tecosaur's dev branch (version 9.7-pre) > > i have the following in an org file: > >... > > CCing Timothy and Karhik. > > -- >

Re: nested blocks in org

2024-03-05 Thread mahmood sheikh
o CC; please use Reply All or wide reply to keep > the discussion public ] > > mahmood sheikh writes: > > > consider the following block > > ``` > > #+begin_solution > > #+begin_src sql > > SELECT > > CONCAT(c.first_name, ' ', c

nested blocks in org

2024-02-15 Thread mahmood sheikh
can you point me in the right direction of getting org mode to recognize nested blocks, like code highlighting for src blocks that are within another special block? and getting org-element-map to iterate through both a parent and its child blocks all the same? could modifying `org-block-regexp` to

figures not exported properly by ox-latex

2024-02-02 Thread mahmood sheikh
im on tecosaur's dev branch (version 9.7-pre) i have the following in an org file: ```org #+name: fig-switching-circuit-1 #+caption: implementation of \(p\) [[attachment:circuit.svg]] ``` it gets turned into this ```