Inconsistent use of \ref and \eqref in ox-latex and ox-html

2020-04-10 Thread Brian Powell
This topic was discussed in 2015: However, it seems that it we are still stuck with inconsistent exports between latex and HTML. The issue is that when exporting equation numbers with ox-html, it uses MathJax's \eqref

Re: wip-cite status question and feedback

2020-04-10 Thread Nicolas Goaziou
Hello, denis.maier.li...@mailbox.org writes: > Bruce has already sent a link to Pandoc's org-mode Reader where you > can find the citation modes. The standard (markdown) implementation > can be found here: >

Re: org-clock misleading description for a prompt option

2020-04-10 Thread Kyle Meyer
Dmitrii Korobeinikov writes: >> That seems confusing to me as well (at least being the not-advanced >> clocker that I am). I suspect the confusion comes from the different >> perspective from which it's written. You're talking about restarting >> Emacs and clocking in again; the description

Re: How to add new type of block to a derived back-end?

2020-04-10 Thread Salomon Turgman
Thank you very much. I will explore what you suggest. I'm glad I emailed, seems like I was going down the wrong path. Salomon On Fri, Apr 10, 2020, 1:10 PM Berry, Charles wrote: > Salomon, see inline comments below. > > HTH, > > Chuck > > > On Apr 10, 2020, at 7:56 AM, Salomon Turgman wrote:

Re: How to add new type of block to a derived back-end?

2020-04-10 Thread Berry, Charles
Salomon, see inline comments below. HTH, Chuck > On Apr 10, 2020, at 7:56 AM, Salomon Turgman wrote: > > Hello all, > > Thanks in advance for any hints you can provide for this. I am trying to > create a derived back-end that handles a new type of block in org-mode. I am > trying to

Re: org-clock misleading description for a prompt option

2020-04-10 Thread Dmitrii Korobeinikov
> That seems confusing to me as well (at least being the not-advanced > clocker that I am). I suspect the confusion comes from the different > perspective from which it's written. You're talking about restarting > Emacs and clocking in again; the description is, I think, written > assuming the

Re: Bug: org-insert-item behaves weirdly and then fails

2020-04-10 Thread Jarmo Hurri
Nicolas Goaziou writes: > Indeed. This should now be fixed. Was that quick or what!? Kudos. Jarmo

How to add new type of block to a derived back-end?

2020-04-10 Thread Salomon Turgman
Hello all, Thanks in advance for any hints you can provide for this. I am trying to create a derived back-end that handles a new type of block in org-mode. I am trying to derive using the html export backend as a parent. Currently I am solving my problem like this: #+CAPTION[Manual control]:

Re: Bug: org-insert-item behaves weirdly and then fails

2020-04-10 Thread Nicolas Goaziou
Hello, Jarmo Hurri writes: > Consider the following org file: > > # --- > 1. Some text [fn:: foo] > > 2. > > 3. with items > # --- > > The bug can be reproduced with the following: > 1. go to the end of first line > 2. press M-return ,

bug org-open-at-point zotero link

2020-04-10 Thread Charles Millar
Hi, Current versions Org mode version 9.3.6 (release_9.3.6-472-g8e3b73 @ /usr/local/share/org-mode/lisp/) GNU Emacs 28.0.50 (build 91, x86_64-pc-linux-gnu, GTK+ Version 3.24.14, cairo version 1.16.0) of 2020-04-10 From reading the documentation zotero is a valid link type and I would

Bug: org-insert-item behaves weirdly and then fails

2020-04-10 Thread Jarmo Hurri
Greetings. The following happens with the latest version of the stable branch and the latest version of the master branch. Consider the following org file: # --- 1. Some text [fn:: foo] 2. 3. with items # --- The bug can be

Re: wip-cite status question and feedback

2020-04-10 Thread Bruce D'Arcus
On Fri, Apr 10, 2020 at 5:30 AM wrote: ... > [Para [Cite [Citation {citationId = "doe", citationPrefix = [], > citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, > citationHash = 0}] [Str "[@doe]"]] I just wanted to add a quick note on this, in case anyone is wondering:

Re: wip-cite status question and feedback

2020-04-10 Thread denis . maier . lists
Hi, very good to see these things are getting discussed again. (Back then, I have been following the citation syntax discussion from a distance rather then participating actively, so that's my first post here.) It would be great if Org had a closer integration with a Citeproc. This would be a

RE: [Bug] org-store-link should not insert a document level ID property

2020-04-10 Thread Gustav Wikström
Hi, Just wanted to say that the patch is applied on master. It's solving the problem. Regarding user-configuration that can be added later if needed. It's not wrong right now per se. Cheers! Gustav > -Original Message- > From: Gustav Wikström > Sent: den 5 april 2020 17:50 > To: Matt

Re: org-ref: xxx-add-bibtex-entry with an org-capture like interface

2020-04-10 Thread Alan Schmitt
Hello, On 2020-04-09 15:43, John Kitchin writes: > This is basically what doi-add-bibtex-entry does. There isn't one > function that does arxiv too, but there is arxiv-add-bibtex-entry. Those > are both commands in org-ref. These don't pop up a buffer for approval, > that is something you would

Org-babel Matlab (session) output is malformed

2020-04-10 Thread Karthik Chikmagalur
I'm trying to evaluate some Matlab code using org-babel in a session: #+BEGIN_SRC matlab :session :results output a = 4; b = a + 3 c = a - 3 #+END_SRC And following the org-babel documentation, (something like) this is the output I expect: #+RESULTS: #+begin_example b = 7 c = 1