[O] latex markup in org?

2014-05-31 Thread Steven Arntson
I've been learning to export from org to latex (to pdf), and have had great success. There's a simplification to the process I'd like to make, though, if it's possible. Right now I use files: file.org and filestyle.sty. The .sty gives the latex-specific instruction, and I point to it from file.org

Re: [O] Moving footnotes

2014-05-31 Thread Nicolas Goaziou
Hello, Bastien writes: > Nicolas Goaziou writes: > >> Here it is. It could be prettier but I think it should get the job >> done. > > Wow, thanks! I didn't expect this to be that long... > I tested it with various input files and it works fine. It could probably be refactored to gain a few li

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Nick Dokos
Omid writes: > Hello Nick, > > Thanks for your reply. But no, src html results in the included HTML > being processed by Org and wrapped in , just > like if the contents of myfile.html were put in > #+BEGIN_SRC html > > #+END_SRC > Yes, I misunderstood the doc. -- Nick

Re: [O] Hiding checked items in a checkbox list (FR?)

2014-05-31 Thread Alexis
Sergio Pokrovskij writes: > The next problem is that MobileOrg should respect the preliminary > hiding done before the visit to the shop. I do not request that it > hide the checked (= bought) items as well (actually I'd prefer it to > leave them checked and visible; but also its hiding-on-the-f

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Here is a minimal example, in case someone wants to try myfile.html: Hello, World! orgincludehtml.org: * Test #+INCLUDE: "./myfile.html" html I am using Org-mode version 8.2.6 (from ELPA) and GNU Emacs 24.3.1. Omid Sent from my Emacs On 06/01/2014 12:42 AM, Nick Dokos wrote: > Omid writ

[O] Hiding checked items in a checkbox list (FR?)

2014-05-31 Thread Sergio Pokrovskij
Is it possible to hide the checked items? E.g. I have a long shopping list of items I regularly buy, but for the current date I need only a dozen of them. I'd like to be able to show all the items; possibly to check all of them; then uncheck the dozen I currently need; then hide the checked items

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Hello Nick, Thanks for your reply. But no, src html results in the included HTML being processed by Org and wrapped in , just like if the contents of myfile.html were put in #+BEGIN_SRC html #+END_SRC Omid Sent from my Emacs On 06/01/2014 12:42 AM, Nick Dokos wrote: > Omid writes: > >> Hello

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Nick Dokos
Omid writes: > Hello, > > I am trying to include an HTML file (say myfile.html, which has only > the ) in an Org file so that upon export the contents of > myfile.html are /literally/ inserted in the appropriate section of the > exported HTML file. Following > http://orgmode.org/manual/Include-fi

[O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Hello, I am trying to include an HTML file (say myfile.html, which has only the ) in an Org file so that upon export the contents of myfile.html are /literally/ inserted in the appropriate section of the exported HTML file. Following http://orgmode.org/manual/Include-files.html, I used #+INCLUDE:

Re: [O] How to find the headline matching a string

2014-05-31 Thread Eric Abrahamsen
Thorsten Jolitz writes: > Chris Poole writes: > >> Eric Abrahamsen: >>> the `org-map-entries' function can be given a scope of 'agenda >> >> That worked perfectly, thanks. Here's what I ended up with: >> >> (org-map-entries (lambda () >> (when (equal title (org-get-heading t t)) >> (org-entry-pu

Re: [O] Patch for testing `org-open-at-point'

2014-05-31 Thread York Zhao
Hi Bastien, Thank you very much for implementing this. Really appreciated. So do you think it is a good idea to add my test (the patch) now for testing this? For your convenience, I've attached again in this message the same patch I had sent on April 10. Thanks, York On Sun, Apr 20, 2014 at 3

Re: [O] Filtering org-clock-display

2014-05-31 Thread Noah Slater
Works! Thanks! Can I pass in the range when calling it from a function? At the moment, I'm calling org-clock-display from a wrapper function that does some other things. It would be cool to configure a default range when calling it in that function. On 31 May 2014 16:48, Bastien wrote: > Noah

Re: [O] How to find the headline matching a string

2014-05-31 Thread Thorsten Jolitz
Chris Poole writes: > Eric Abrahamsen: >> the `org-map-entries' function can be given a scope of 'agenda > > That worked perfectly, thanks. Here's what I ended up with: > > (org-map-entries (lambda () > (when (equal title (org-get-heading t t)) > (org-entry-put (point) "TODO" "DONE"))) > tag 'age

Re: [O] How to find the headline matching a string

2014-05-31 Thread Igor Sosa Mayor
Chris Poole writes: > Sure --- it's part of a quick setup file for the GTD methodology that > I'm writing. The specific function in question is here: interesting. Thanks for sharing the code. -- :: Igor Sosa Mayor :: joseleopoldo1...@gmail.com :: :: GnuPG: 0x1C1E2890 :: http://www.gnupg

Re: [O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Igor Sosa Mayor: > could you maybe send a little more of the code? I would like to > understand how it exactly works. Sure --- it's part of a quick setup file for the GTD methodology that I'm writing. The specific function in question is here: https://github.com/chrispoole643/org-gtd/blob/6b13d4f

[O] bug#17651: 24.3.91; Emacs hangs in Org

2014-05-31 Thread Glenn Morris
Sebastien Vauban wrote: > Emacs 24.3.91.1 (of 2014-05-12) regularly hangs with Org-mode version > 8.2.6 (release_8.2.6-1010-g1ca86f). Well I guess this is an Org bug, which will get more attention on the Org list. (See eg http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17484)

Re: [O] How to find the headline matching a string

2014-05-31 Thread Igor Sosa Mayor
Chris Poole writes: > That worked perfectly, thanks. Here's what I ended up with: > > (org-map-entries (lambda () > (when (equal title (org-get-heading t t)) > (org-entry-put (point) "TODO" "DONE"))) > tag 'agenda) could you maybe send a little more of the code? I would like to understand how it

Re: [O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Eric Abrahamsen: > the `org-map-entries' function can be given a scope of 'agenda That worked perfectly, thanks. Here's what I ended up with: (org-map-entries (lambda () (when (equal title (org-get-heading t t)) (org-entry-put (point) "TODO"

Re: [O] tyuyyyjkkllkklll

2014-05-31 Thread Scot Becker
My. Thoughts. Exactly. On Sat, May 31, 2014 at 8:46 PM, jean-jacques Rétorré wrote: > l))l >

Re: [O] An org password manager

2014-05-31 Thread Jorge A. Alfaro-Murillo
Dear Bastien, This is my first time submitting a patch, so I do not know if this is the way I am supposed to do it. Best, Jorge --- org-passwords.el: Add an org derived mode for managing passwords * contrib/lisp/org-passwords.el: new file. The file gives a mode for consu

[O] tyuyyyjkkllkklll

2014-05-31 Thread jean-jacques Rétorré
l))l

Re: [O] How to find the headline matching a string

2014-05-31 Thread Eric Abrahamsen
Chris Poole writes: > Hi all, > > Suppose I have a string, "my first task", that I know is tagged with > "laptop". > > I want to search through the agenda files for a headline that matches > this string, to be able to mark it as DONE (in an automated fashion). > > I can't find a function to searc

[O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Hi all, Suppose I have a string, "my first task", that I know is tagged with "laptop". I want to search through the agenda files for a headline that matches this string, to be able to mark it as DONE (in an automated fashion). I can't find a function to search through for the headline --- is the

Re: [O] Filtering org-clock-display

2014-05-31 Thread Bastien
Noah Slater writes: > I'm getting an error on HEAD now: Please run `make' or `make autoloads'. See http://orgmode.org/manual/Installation.html -- Bastien

Re: [O] problems while editing in org-columns mode

2014-05-31 Thread Andrea Rossetti
Bastien writes: > Let me know if it works for you, Hi! I tried a recent git snapshot (Fri May 30 19:28:04 2014 +0200) and performed some manual tests (1 to 5, see below). - in org-columns mode ("C-c C-x C-c"): - 1) PASS: org-columns-edit-value ("e") updates correctly the empty/whitesp

Re: [O] Filtering org-clock-display

2014-05-31 Thread Noah Slater
I'm getting an error on HEAD now: Debugger entered--Lisp error: (void-function org-add-props) (org-add-props "WARNING: No org-loaddefs.el file could be found from where org.el is loaded." nil (quote face) (quote org-warning)) (message (org-add-props "WARNING: No org-loaddefs.el file could be f

Re: [O] Printable calendar?

2014-05-31 Thread Peter Davis
On Fri, May 30, 2014 at 01:20:21PM -0400, Nick Dokos wrote: > Peter Davis writes: > > > Ok, I was able to get the column rules I want. (See below) > > > > I'm still puzzled by the right/left alignment. In the org buffer the > > columns appear correctly aligned, but in HTML output, the left (Sun)

Re: [O] Moving footnotes

2014-05-31 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > Here it is. It could be prettier but I think it should get the job > done. Wow, thanks! I didn't expect this to be that long... I tested it with various input files and it works fine. >> PS: I think it's useful to trigger the org-footnote-action menu >> w

Re: [O] BUG in reference by ID to remote table (was Re: org babel question: reference tables in remote file)

2014-05-31 Thread William Henney
Hi Bastien Thanks for the suggestion. I'm traveling at the moment, but I'll check it out as soon as I get a chance. Will Sent from a leading brand of mobile device > On 30/05/2014, at 16:44, Bastien wrote: > > Hi William, > > William Henney writes: > >> There is an apparent bug when u

Re: [O] Moving footnotes

2014-05-31 Thread Nicolas Goaziou
Bastien writes: > Nicolas Goaziou writes: >> All in all, I'm not convinced this should be a function provided in Org. > > Okay. Still, it's useful to have it *somewhere*. If you have a > moment, could you revert the commit Done. > rewrite the function with the suggested enhancements Here i

Re: [O] LaTex export questions

2014-05-31 Thread Martin Schöön
On 28 May 2014 06:31, Alan Tyree wrote: > Hi Steven, > You want to learn more about LaTeX, but it's not too much. > > I wrote a little book called Self-publishing with LyX that will help you > set up the title page as well as some of your other problems. This is not a > sales pitch -- it's free :

Re: [O] Searching on gmane fails

2014-05-31 Thread Bastien
Hi Nick, Nick Dokos writes: > I get a "Forbidden" error message, either from gnus or from the > web. Anybody else seeing that? Yes, http://search.gmane.org is not accessible right now. I dropped a note to Lars. -- Bastien