Re: [O] Small font size in beamer tables

2011-08-04 Thread Guenter Kolousek
Using beamer the following just works fine too, if the table is the only element inside a frame: #+LATEX: \tiny #+ATTR_LaTeX: align=rr | M (GeV) | K-factor | |-+--| | 50 |1.075 | | 150 | 1.01 | | 250 | 0.9932 | | 350 | 0.9778 | | 450 | 0.9621 |

Re: [O] Largest org file you have + performance

2011-08-04 Thread jiangzuo...@gmail.com
My largest org file is QuanSongCi.org, contains ci poetry of Song dynasty, about 6MB size. Editing in emacs is very slow, save needs to wait about minutes. convert to html needs to wait about minutes, too. So, sometimes, sed like tools is preferred to do editing and converting.

Re: [O] [PATCH] Agenda: Simplify old fix of face for deadline warning 0 day

2011-08-04 Thread Bernt Hansen
Michael Brand writes: > Agenda: Simplify old fix of face for deadline warning 0 day > > * lisp/org-agenda.el (org-agenda-get-deadlines): Fix dfrac for the > case of wdays being 0. Don't pass wdays to org-agenda-deadline-face, > like before the old fix. > (org-agenda-deadline-face): Revert to old

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread Bernt Hansen
David Maus writes: > At Thu, 04 Aug 2011 09:35:24 -0500, > Jason Dunsmore wrote: >> I just tried out your patch. The logic in your patch is slightly >> different - it checks if the point is at the end of the last line in the >> buffer, whereas mine checks if the point is anywhere on the last li

[O] [odt] User-visible improvements

2011-08-04 Thread Jambunathan K
I pushed few user-visible improvements to org-lparse/org-odt a few minutes ago. With these changes an exported document could be post-processed to another format (using an external converter) with just a single command (i.e., you no longer have to launch OpenOffice and do "Save As" etc) (For the

Re: [O] Largest org file you have + performance

2011-08-04 Thread Milan Zamazal
My largest org file is an org-drill file of almost 1 MB size, containing about 32000 lines (most of them are entry properties) and 2000 org-drill entries. It's well useable but tag and property editing is better to be done by hand instead of using org commands and I have to use some folding trick

Re: [O] column formulas: Row descriptor -1 used in line ### leads outside table

2011-08-04 Thread andersvi
> "N" == Nick Dokos writes: N> Set the cell in the first line explicitly with a field formula N> (or just a value): it overrides the column formula. Thanks.

Re: [O] Point jumps when changing timestamps

2011-08-04 Thread Matt Lundin
Nicolas Goaziou writes: > Matt Lundin writes: > >> A bit more generous org-at-timestamp-p does have some practical >> advantages: it can save cursor movement when navigating an org document. >> For instance, when navigating the following headline, I would typically >> type C-n C-e to go to the e

Re: [O] column formulas: Row descriptor -1 used in line ### leads outside table

2011-08-04 Thread Nick Dokos
ander...@notam02.no wrote: > Anyone have suggestions about how i can have a column-formula refer to > value in previous row, but ignore the row before the first line? > > Something like this: > > | 1 | 4 | | > | 2 | 7 | | > | 3 | 1 | | > #+TBLFM: $2=random(10)::$3=(@-1$2)-$

[O] column formulas: Row descriptor -1 used in line ### leads outside table

2011-08-04 Thread andersvi
Anyone have suggestions about how i can have a column-formula refer to value in previous row, but ignore the row before the first line? Something like this: | 1 | 4 | | | 2 | 7 | | | 3 | 1 | | #+TBLFM: $2=random(10)::$3=(@-1$2)-$2 Evaluating this returns an error: "Row d

Re: [O] Point jumps when changing timestamps

2011-08-04 Thread Nicolas Goaziou
Matt Lundin writes: > A bit more generous org-at-timestamp-p does have some practical > advantages: it can save cursor movement when navigating an org document. > For instance, when navigating the following headline, I would typically > type C-n C-e to go to the end of the scheduled line. That pu

Re: [O] Point jumps when changing timestamps

2011-08-04 Thread Matt Lundin
Nicolas Goaziou writes: > Hello, > > Matt Lundin writes: > >> I often change timestamps with S-Left or S-Right when the cursor is at >> the point immediately following the timestamp: >> >> <2011-08-03 Wed .+1d> >> ^ cursor here >> >> When I call S-Left or S-Right at this po

Re: [O] Point jumps when changing timestamps

2011-08-04 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > I often change timestamps with S-Left or S-Right when the cursor is at > the point immediately following the timestamp: > > <2011-08-03 Wed .+1d> > ^ cursor here > > When I call S-Left or S-Right at this point, the cursor jumps to the > last cha

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread David Maus
At Thu, 04 Aug 2011 09:35:24 -0500, Jason Dunsmore wrote: > > Hi David, > > > I just pushed a simplified version of the solution: No need to count > > lines, just check if point is at end of buffer. > > I just tried out your patch. The logic in your patch is slightly > different - it checks if the

Re: [O] undo archive

2011-08-04 Thread Darlan Cavalcante Moreira
I've been hit by this a few times when my fingers type the archive key-binding instead of the attach file key-binding. Undo has worked so far, but it may be a little trick sometimes. -- Darlan At Wed, 03 Aug 2011 14:20:24 -0500, Jason Dunsmore wrote: > > suvayu ali writes: > > > On Wed, Aug

[O] [PATCH] Add :sort option to clocktable report

2011-08-04 Thread Max Mikhanosha
Attached patch adds new options :sort to the clocktable report options. Valid values: time-up or T - highest time on top time-down- lowest time on top For multi-file clock reports, entries in each file are sorted separately and then the files are also sorted based on file total. Perhaps this

Re: [O] Bug: (org-open-at-point 'in-emacs) -> other-frame [7.4]

2011-08-04 Thread Reiner Steib
Jambunathan K wrote: Reiner Steib writes: [this probably rather is a feature request than a bug. Do you want users to use `org-submit-bug-report' for feature requests as well?] [...] It would help if you tag your posts with [fr] or [bug] as appropriate. I will do. Thanks. (The string "B

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread Jason Dunsmore
Hi David, > I just pushed a simplified version of the solution: No need to count > lines, just check if point is at end of buffer. I just tried out your patch. The logic in your patch is slightly different - it checks if the point is at the end of the last line in the buffer, whereas mine checks

Re: [O] Bug: (org-open-at-point 'in-emacs) -> other-frame [7.4]

2011-08-04 Thread Jambunathan K
Reiner Steib writes: > Hi, > > [this probably rather is a feature request than a bug. Do you want > users to use `org-submit-bug-report' for feature requests as well?] There is no set rule when filing bug or feature requests. A simple mail should do. It would help if you tag your posts with [f

[O] Bug: (org-open-at-point 'in-emacs) -> other-frame [7.4]

2011-08-04 Thread Reiner Steib
Hi, [this probably rather is a feature request than a bug. Do you want users to use `org-submit-bug-report' for feature requests as well?] I would like `org-mode' to open "in-emacs" documents (i.e. (org-open-at-point 'in-emacs)?), in another frame, like `ffap-other-frame' does. I.e. when I fol

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread David Maus
At Wed, 03 Aug 2011 21:35:40 -0400, Bernt Hansen wrote: > > Jason Dunsmore writes: > > > Hi Bernt, > > > > Can you see if this patch fixes the problem? > > > > diff --git a/lisp/org.el b/lisp/org.el > > index c7b28dd..41ac8c6 100644 > > --- a/lisp/org.el > > +++ b/lisp/org.el > > @@ -19212,7 +1921

[O] [babel] tangle from within codeblock?

2011-08-04 Thread Rainer M Krug
Hi I have an R package in org, and would like to tangle it before I submit to svn. I commit via a code block: #+begin_src sh :results output svn commit -m "edits" #+end_src How can I tangle automatically before I commit? I could use batch execution as described in http://orgmode.org/manual/Ba

[O] [PATCH] recognize HH:MM duration when sorting table rows

2011-08-04 Thread Max Mikhanosha
`org-table-sort-lines' function allows one to sort the rows of a table, by the t/T format for the column only recognizes timestamps with a date. A patch pasted below adds recognition of HH:MM durations. diff --git a/lisp/org.el b/lisp/org.el index c1fd346..e65d992 100644 --- a/lisp/org.el +++ b/li

[O] Bug: Toggle descriptive and literal links [7.4]

2011-08-04 Thread Reiner Steib
Hi, in the "Org" menu, the are the following toggles: - - There are two (related) issues wit this: (a) There is no (interactive) command to toggle this setting. Here is what I use: #+BEGIN_SRC lisp (defun org-descriptive-links () "Display Descriptive Links in `org-mode'." (

Re: [O] how to include items (filtered) from other org files?

2011-08-04 Thread Christian Moe
Hi, If I understand you correctly, you want to import into your current Org document tasks from other Org files that match a certain tag. Here's one attempt; I'm sure there are better solutions, and solutions involving Agenda commands, which I don't understand very well. Assuming all items

Re: [O] how to include items (filtered) from other org files?

2011-08-04 Thread suvayu ali
Hi Michael, On Thu, Aug 4, 2011 at 2:40 AM, Michael Gilbert wrote: > I manage a lot of complex, overlapping projects. One of these projects is a > regular newsletter. Half of the content that goes out in this newsletter is > created by the newsletter program itself. The other half is the result