Re: [O] Cask-initialize messes up org table manipulation commands

2016-10-01 Thread Heikki Lehvaslaiho
Thanks for suggestions, Adam. I had not realised that the bug-hunter package can do interactive tests. I used it now and got the same result: the problem is caused by the (cask-initialize) expression. As far as I understand, cask-initialize only collects the directory locations and dependencies o

[O] Failure to display more than 18 images with captions

2016-10-01 Thread Jean Louis
Hello, I have problem with Org Mode, that it fails to display more than 18 images correctly, while exporting to PDF (LaTeX export). I am using images in following manner: #+CAPTION: Title of image #+NAME: fig:pic001 [[/some/image001.jpg]] #+CAPTION: Title of image #+NAME: fig:pic002 [[/some/ima

Re: [O] export of src block ignores :results

2016-10-01 Thread Nicolas Goaziou
Hello, "Charles C. Berry" writes: > You might try this: > > #+BEGIN_SRC emacs-lisp >(setq org-babel-result-regexp > (concat >"^[]*#\\+RESULTS\\[\\(?:<[0-9]" >"\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?" >"[0-2][0-9]:[0-6][0-9]:[0-6][0-9]> ?" >"[^ > \n[:alnu

Re: [O] manipulate org tables using emacs-lisp

2016-10-01 Thread Alan Schmitt
Hi Thorsten, On 2016-09-30 22:52, Thorsten Jolitz writes: >> Are there functions for manipulating org-tables using emacs-lisp? More >> precisely, I would like to refer to a table by its name, read some cells >> (either by position or by matching some given text with some text in the >> first row

[O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Xebar Saram
Hi all so i have this useful to me capture template (add-to-list 'org-capture-templates '("un" "resturant" entry (file+headline "/home/zeltak/org/files/agenda/travel.org" "NYC") "* TOVISIT %^{Description} %u :PROPERTIES:

Re: [O] [DOCS] Re: Making DocBook xml books from org mode?

2016-10-01 Thread Colin Baxter
On Fri, Sep 30 2016, Nick Dokos wrote: Hello, > > But the OP wanted Docbook XML, not info. Ah! I must remember to read a thread more carefully next time. Thanks. Best wishes, Colin.

Re: [O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Philip Hudson
You need to put the timestamp (%u) /after/ the drawer in the template. On 01/10/2016, Xebar Saram wrote: > Hi all > > so i have this useful to me capture template > > (add-to-list 'org-capture-templates >'("un" "resturant" > entry > (fi

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread Nicolas Goaziou
Hello, Jean Louis writes: > I have problem with Org Mode, that it fails to display more than 18 > images correctly, while exporting to PDF (LaTeX export). Would it be a problem related to LaTeX? I.e, what is the error when you try to compile the produced tex file? Regards, -- Nicolas Goaziou

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread Jean Louis
Majority of LaTeX errors are like following: LaTeX Error: Cannot determine size of graphic in /home/data1/protected/public_html/images/syogm/tanzania/2016/09/2016-09-20/800/IMG_20160920_090633975.jpg (no BoundingBox). and then also: l.235 \begin{figure}[htb] ? ! Undefi

Re: [O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Xebar Saram
got it thx Phillip, appreciate it! in a related continued issue, how does one define a sub header in the capture that will translate correctly to a lower level header than the main orc capture? i have tried both this inside a capture: %^{prompt|*** Ingredients} and also just using 2 stars *

Re: [O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Philip Hudson
Your target location defines how many stars you need at the top-level of your capture template. Each successive level of sub-heading then starts on its own line with one more leading star, just the same as anywhere else in org-mode. I use a certain capture template for a type of task with required

Re: [O] Is there a *Org PDF LaTeX Output* buffer ?

2016-10-01 Thread Eric S Fraga
On Friday, 30 Sep 2016 at 21:09, Julien Cubizolles wrote: > When an export from org to pdf fails, the error message refers to a *Org > PDF LaTeX Output* buffer that doesn't seem to have been created on my > setup. Is it an old message from a previous behaviour long gone ? No, this is current behav

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread John Kitchin
this looks like an issue related to floats. It works with out the caption because they are not floats in that case. But, with floats, there are limits. see http://tex.stackexchange.com/questions/46512/too-many-unprocessed-floats. According to that page: LaTeX can, by default, only cope with 18 o

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread Jean Louis
Thank you. It is possible to increase the number of floats in LaTeX, but I could not succeed. I found out that problem is also in compilation of the table of contents, so when I turned toc off, I could see pictures. Further, I am now using non-floats with: #+ATTR_LATEX: :float nil and I can get

Re: [O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Xebar Saram
thx phil i now remember why i indented the sub headers. i use a init.el file thats an org file (that is i tangle my setting.org) into settings.el at startup thus the above capture you kindly shared: #+BEGIN_SRC emacs-lisp :results none ** TODO Finalize %?%^{item} SCHEDULED: <%(my-next-

Re: [O] manipulate org tables using emacs-lisp

2016-10-01 Thread Thorsten Jolitz
Alan Schmitt writes: Hi Alan, > On 2016-09-30 22:52, Thorsten Jolitz writes: > >>> Are there functions for manipulating org-tables using emacs-lisp? More >>> precisely, I would like to refer to a table by its name, read some cells >>> (either by position or by matching some given text with some

Re: [O] export of src block ignores :results

2016-10-01 Thread Charles C. Berry
On Fri, 30 Sep 2016, Thomas Alexander Gerds wrote: right, this is what changed and setting :eval never-export on a each block solves the problem. however, the new way breaks all my existing org-code. I don't follow this. What exactly is broken? You know all the options for setting header arg

Re: [O] Capture template creates multiple property drawers, help needed

2016-10-01 Thread Xebar Saram
i had an idea of using lisp to solve the header issue like with %(org-insert-heading) , but that dosent seem do to anything. here is the code: (add-to-list 'org-capture-templates '("uu" "resturant" entry (file+headline "/home/zeltak/org/f

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread Nicolas Goaziou
Hello, Jean Louis writes: > It is solved for me, not solved in general as a problem in Org mode. I do not understand: which part is a problem on the Org side? Regards, -- Nicolas Goaziou

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread John Kitchin
It looks to me like no part. It is a Latex issue. On Saturday, October 1, 2016, Nicolas Goaziou wrote: > Hello, > > Jean Louis > writes: > > > It is solved for me, not solved in general as a problem in Org mode. > > I do not understand: which part is a problem on the Org side? > > Regards, > > -

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread Jean Louis
IMHO, the program Org Mode shall not give error when exporting PDF, or it should be documented that certain number of pictures are not tolerated and how to increase that number or how to avoid the problem. Maybe something like explained here: http://tex.stackexchange.com/questions/46512/too-many-u

Re: [O] Cask-initialize messes up org table manipulation commands

2016-10-01 Thread Adam Porter
Heikki Lehvaslaiho writes: > Maybe I should try raising an issue for cask > (https://github.com/cask/cask). I guess that's your best bet now. Hopefully the author will be able to figure it out. Please let us know what you find out. :)

Re: [O] Bug? org-export-babel-evaluate setting breaks :exports results

2016-10-01 Thread Grant Rettke
This setting is one of the gems for developing a personal workflow. My workflow is to never evaluate during export because I want the document to serve as the "master" or the "one source of truth" that is stored in version control. The other perspective is never to store it which is what some peo

[O] gmane link broken

2016-10-01 Thread ilya shlyakhter
The link "Browse org-mode mailing list through Gmane" at http://orgmode.org/community.html seems broken.

Re: [O] Bug: Several small documentation problems [8.3.6 (8.3.6-4-g4835be-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20160926/)]

2016-10-01 Thread Nicolas Goaziou
Hello, Jorge writes: > On 29 September 2016 at 17:36, Nicolas Goaziou wrote: >> I think "grandparent" is correct. In the following document >> >> * H1 >> ** H2 >> Text<--point >> >> "H2" is the parent headline of "Text" and as a consequence, "H1" is its >> grandparent. > What if point is

Re: [O] gmane link broken

2016-10-01 Thread Charles C. Berry
On Sat, 1 Oct 2016, ilya shlyakhter wrote: The link "Browse org-mode mailing list through Gmane" at http://orgmode.org/community.html seems broken. There have been some recent changes to gmane.org. See https://en.wikipedia.org/wiki/Gmane AFAICS, the search has not (yet?) been restor

Re: [O] Failure to display more than 18 images with captions

2016-10-01 Thread William Henney
I think Jean Louis is right: it _is_ an org issue. The problem is that the default value of org-latex-default-figure-position is "htb", which is a very bad idea. The string always needs to contain a "p" in it somewhere, otherwise latex will never be able to find a solution for figure placement i

[O] Bug: Pictures not displaying if more than 18 [8.3.6 (8.3.6-3-gf46b92-elpa @ /home/data1/protected/.emacs.d/elpa/org-20160919/)]

2016-10-01 Thread bugs
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. --

[O] comment lines inside org tables

2016-10-01 Thread Rolf Sander (MPI)
Hello, I need to put comments inside a very big table which then should basically looks like this: |+---+| | animal | size | number | |+---+| | gnus | big | 3 | # don't forget to add elephants here: | gnats | small | 1000 | |+---+-

[O] Kanban board as an agenda view

2016-10-01 Thread eeli
Hello, I was inspired by this post[1], that describes a workflow that uses links and a table to organize tasks in columns like on a Kanban board[2]. I started thinking if this kind of visualization could be done automatically by implementing a view like the agenda, that would use `org-todo-keywor

[O] Bug: org-table/auctex error "Marker does not point anywhere" [8.3.6 (8.3.6-3-gf46b92-elpa @ c:/Users/atamulis/.emacs.d/elpa/org-20160919/)]

2016-10-01 Thread Tamulis, Andrius
I get an error "Marker does not point anywhere" when using orgtbl-mode while using AUCTeX to edit a .tex file. I open the .tex file, get to the table I want to edit, then do M-x orgtbl-mode. I then tab a couple of times. Then make an edit - any edit. Tab again, and the error comes up. I fina

[O] Bug: malformed property drawers [8.3.6 (8.3.6-3-gf46b92-elpa @ c:/Users/atamulis/.emacs.d/elpa/org-20160919/)]

2016-10-01 Thread Tamulis, Andrius
I have a problem with orgmode related to the fixing of "malformed property drawers". I use orgmode a lot; I have been using it for over a decade (if memory serves.) I use it to organize my life, my job, by volunteer work . My .org files are rather large - one is over 500 KB (that's for my job)