Re: [O] org-latex-export: Name sections by CUSTOM_ID (rather than %s)?

2018-09-02 Thread Robert Klein
Hi, On Sat, 1 Sep 2018 21:30:19 -0500 Florian Hollerweger wrote: > Hi everyone, > > When exporting an .org file to LaTeX, is it possible to name the > sections in the exported .tex file *not* according to the > corresponding headlines in the .org file, but instead according to > the respective

Re: [O] newbie which LaTeX for PDF publish

2018-09-02 Thread Eric S Fraga
On Saturday, 1 Sep 2018 at 22:12, adam wrote: > Am on Ubuntu 16.04, org-version is 8.2.10  > > Export to PDF C-c C-e l o  is working.  > However I wish finer grain LaTeX control.  > > > For Export to PDF to work, I needed  pdftex   But org exports to LaTeX, not TeX. I.e. it exports to TeX with

[O] [PATCH] Change: (org-agenda-bulk-action) Prompt w/number of marked items

2018-09-02 Thread Adam Porter
* lisp/org-agenda.el (org-agenda-bulk-action): When scattering, prompt for number of days with number of marked items. A typical pattern for me is to mark a significant number of items scheduled in the past and scatter them into the future. Usually I want to schedule one item per day, i.e.

[O] org-element-adopt-elements, append before children

2018-09-02 Thread Ivan Tadeu Ferreira Antunes Filho
At the moment org-element-adopt-elements always appends the new elements after the elements original children. In many cases one might want to append before the original children. I want to propose adding an argument to org-element-adopt-elements that defines if the elements should be added

Re: [O] newbie which LaTeX for PDF publish

2018-09-02 Thread adam
On Sat, 2018-09-01 at 14:34 +0200, Robert Klein wrote: > Hi, > > On Sat, 01 Sep 2018 22:12:39 +1200 > adam wrote: > > > > > Am on Ubuntu 16.04, org-version is 8.2.10  > > > > Export to PDF C-c C-e l o  is working.  > > However I wish finer grain LaTeX control.  > > > > > > For Export to PDF

Re: [O] English and Dutch version of a Graphviz picture

2018-09-02 Thread Cecil Westerhof
2018-09-01 17:04 GMT+02:00 Robert Klein : > On Sat, 1 Sep 2018 12:38:54 +0200 > Cecil Westerhof wrote: > > > I have the following: > > #+BEGIN_SRC dot :file Graphviz/habitLoop.png :cmdline -Kfdp -Tpng > > digraph habitLoop { > > bgcolor = steelblue > > edge [penwidth = 4.0 ] > > node

Re: [O] How about lifting the limit of 35 tasks in org-clock-history?

2018-09-02 Thread Marcin Borkowski
On 2018-09-02, at 14:45, Nicolas Goaziou wrote: > Hello, > > Marcin Borkowski writes: > >> I attach a trivial patch fixing a very annoying cap on >> org-clock-history. (I want to set org-clock-history to 120.) > > According to 7972356d092736af06282a09f008c2b5f938134d and >

[O] Bug: Capturing an entry without final endline modifies heading structure [9.1.14 (9.1.14-dist @ /usr/share/emacs/25.2/site-lisp/elpa/org-9.1.11/)]

2018-09-02 Thread Christoph Groth
Hello, I'm using org's capture functionality to file new entries for my agenda. I noticed a problem when capturing entries to be placed in the middle of a file (for example, I have a subtree for "notes" that comes before "miscellaneous"): when the captured text ends without a trailing endline

Re: [O] ob-lilypond and 'Symbol’s function definition is void: org-babel-get-header'

2018-09-02 Thread Henrik Frisk
Den tis 21 aug. 2018 23:39Nicolas Goaziou skrev: > Hello, > > Henrik Frisk writes: > > > I have been trying out ob-lilypond and it works really well, except for > the > > arrange mode. Any attempt to run ly-tangle results in 'Symbol’s function > > definition is void: org-babel-get-header' and

[O] org-copy-visible does not work with x-select-enable-primary

2018-09-02 Thread Alain . Cochard
Hello. I use emacs -Q -l ~/.emacs.debug with the ~/.emacs.debug file containing only (add-to-list 'load-path "/home/cochard/Org/Coch-git/org-mode/lisp") I tried 2 versions of emacs, giving: Emacs : GNU Emacs 24.5.1 (x86_64-redhat-linux-gnu, GTK+ Version 3.18.9) of 2016-04-11

Re: [O] org-element-adopt-elements, append before children

2018-09-02 Thread Nicolas Goaziou
Hello, Ivan Tadeu Ferreira Antunes Filho writes: > At the moment org-element-adopt-elements always appends the new elements > after the elements original children. In many cases one might want to > append before the original children. > > I want to propose adding an argument to

Re: [O] [PATCH] Fix: (org-agenda-get-progress) Logbook list bullets with 2+ spaces

2018-09-02 Thread Nicolas Goaziou
Hello, Adam Porter writes: > Previously, logbook list entries with more than one space between the > bullet and the beginning of the entry would be ignored (i.e. if a > bullet is defined in org-list-two-spaces-after-bullet-regexp, two > spaces will be inserted after the bullet, and that

Re: [O] [PATCH] edit installation section

2018-09-02 Thread Nicolas Goaziou
Hello, Will Pierce writes: > * emphasize org's near-universal distribution > * reformat vertical list > * minor grammar fix > Applied, with a minor tweak to the commit message. Thank you. Regards, -- Nicolas Goaziou

Re: [O] How about lifting the limit of 35 tasks in org-clock-history?

2018-09-02 Thread Nicolas Goaziou
Hello, Marcin Borkowski writes: > I attach a trivial patch fixing a very annoying cap on > org-clock-history. (I want to set org-clock-history to 120.) According to 7972356d092736af06282a09f008c2b5f938134d and 77f1f31c99f521751dc0b57f9923773e97644bb5, this limits selection to standard

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-01 14:24 GMT+02:00 Robert Klein : > Hi Cecil, > > On Sat, 1 Sep 2018 11:12:57 +0200 > Cecil Westerhof wrote: > > > 2018-08-31 13:22 GMT+02:00 Robert Klein : > > > > > On Fri, 31 Aug 2018 12:24:33 +0200 > > > Cecil Westerhof wrote: > > > > > > > 2018-08-31 11:17 GMT+02:00 Robert Klein :

Re: [O] newbie which LaTeX for PDF publish

2018-09-02 Thread Robert Klein
Hi Adam, On Mon, 03 Sep 2018 09:32:14 +1200 adam wrote: > On Sun, 2018-09-02 at 11:04 +0100, Eric S Fraga wrote: > > On Saturday,  1 Sep 2018 at 22:12, adam wrote: > > > > > > Am on Ubuntu 16.04, org-version is 8.2.10  > > > > > > Export to PDF C-c C-e l o  is working.  > > > However I wish

[O] code.orgmode.org misbehaving?

2018-09-02 Thread Adam Porter
Hi, Trying to pull with git from the main Org repo, I'm getting errors from git: fatal: https://code.orgmode.org/bzg/org-mode.git/info/refs not valid: is this a git repository? Loading https://code.orgmode.org/ in a browser, that page loads fine, but loading

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-02 15:22 GMT+02:00 Cecil Westerhof : > > > 2018-09-01 14:24 GMT+02:00 Robert Klein : > >> Hi Cecil, >> >> On Sat, 1 Sep 2018 11:12:57 +0200 >> Cecil Westerhof wrote: >> >> > 2018-08-31 13:22 GMT+02:00 Robert Klein : >> > >> > > On Fri, 31 Aug 2018 12:24:33 +0200 >> > > Cecil Westerhof

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
It has to do with the data. With the following I can reproduce it: #+BEGIN_SRC sqlite :db ~/testingOrgBabel.sqlite :colnames yes DROP TABLE IF EXISTS quotes ; CREATE TABLE "quotes" ( quoteID TEXT PRIMARY KEY, quote TEXT NOT NULL UNIQUE, lastUsed

Re: [O] org-copy-visible does not work with x-select-enable-primary

2018-09-02 Thread Nicolas Goaziou
Hello, alain.coch...@unistra.fr writes: > Hello. > > > I use > >emacs -Q -l ~/.emacs.debug > > with the ~/.emacs.debug file containing only > >(add-to-list 'load-path "/home/cochard/Org/Coch-git/org-mode/lisp") > > I tried 2 versions of emacs, giving: > >Emacs : GNU Emacs 24.5.1

Re: [O] newbie which LaTeX for PDF publish

2018-09-02 Thread Eric S Fraga
On Monday, 3 Sep 2018 at 09:32, adam wrote: > On Sun, 2018-09-02 at 11:04 +0100, Eric S Fraga wrote: >> On Saturday,  1 Sep 2018 at 22:12, adam wrote: >> > > >> > Am on Ubuntu 16.04, org-version is 8.2.10  >> > >> > Export to PDF C-c C-e l o  is working.  >> > However I wish finer grain LaTeX

Re: [O] newbie which LaTeX for PDF publish

2018-09-02 Thread adam
On Sun, 2018-09-02 at 11:04 +0100, Eric S Fraga wrote: > On Saturday,  1 Sep 2018 at 22:12, adam wrote: > > > > Am on Ubuntu 16.04, org-version is 8.2.10  > > > > Export to PDF C-c C-e l o  is working.  > > However I wish finer grain LaTeX control.  > > > > > > For Export to PDF to work, I

Re: [O] org-element-adopt-elements, append before children

2018-09-02 Thread Ivan Tadeu Ferreira Antunes Filho
Org element insert before would insert the new element before the selected element, not as the first element child (I think) At the moment I'm finding the first child, checking if it is non nil, and if it is not nil, dolist insert before the first child, else, adopt the elements. Which is a

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-01 14:24 GMT+02:00 Robert Klein : > Hi Cecil, > > On Sat, 1 Sep 2018 11:12:57 +0200 > Cecil Westerhof wrote: > > > 2018-08-31 13:22 GMT+02:00 Robert Klein : > > > > > On Fri, 31 Aug 2018 12:24:33 +0200 > > > Cecil Westerhof wrote: > > > > > > > 2018-08-31 11:17 GMT+02:00 Robert Klein :