Fwd: solved: how to exclude several single dates from a diary block (was: how to exclude several single dates from a diary block)
Thank you very much, indeed, Ihor. diary-date was exactly the function I was looking for. Please allow me to report that in the meantime I have found a method that seems to suit my personal needs even better. You can use <%%(org-class 2022 04 11 2022 07 15 4 21 26)> to set every Thursday (4) in the time range between April 11th, 2022 and July 15th, 2022, but exclude (the Thursdays in) ISO weeks 21 and 26 (ie, 2022-05-26 and 2022-06-30). Less to type and easier to do if your calendar carries ISO-week numbers. Many thanks again for the help Rainer Am So., 24. Apr. 2022 um 09:59 Uhr schrieb Ihor Radchenko : > > Rainer Thiel writes: > > > I use Org-Mode to schedule most everything, including my lectures > > which typically are recurring events. I have learnt that I can > > exclude a certain range of days or weeks where no lectures take place. > > For this, I use: > > > > * TODO 12:15--13:45 Lecture: Aristotle > > <%%(unless (diary-block 12 20 2021 12 31 2021) (and (= 3 > > (calendar-day-of-week date)) (diary-block 10 18 2021 02 11 2022)))> > > > > What I need to do for this year is to exclude single dates such as > > April 26th, 2022 and June 21st, 2022. Can someone please help me how > > to achieve this? > > You can just change > <%%(unless (diary-block 12 20 2021 12 31 2021) ...)> > to > <%%(unless (or (diary-date 04 26 2022) (diary-date 06 21 2022) (diary-block > 12 20 2021 12 31 2021)) ...)> > > Best, > ihor -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
Re: how to exclude several single dates from a diary block
Thanks for the answer. I used to do this, too, and am aware of this possibility. I find it kind of clutters up the org file and was happy to find a way to avoid this. I will return to this if I need to, but would prefer to adapt the more elegant way to do it, if there is a way. Many thanks again Rainer Am Fr., 22. Apr. 2022 um 16:23 Uhr schrieb Eric S Fraga : > > On Friday, 22 Apr 2022 at 16:15, Rainer Thiel wrote: > > I use Org-Mode to schedule most everything, including my lectures > > which typically are recurring events. > > Instead of using diary s-expressions, what I do is create one entry for > the first lecture, say, and then use org-clone-subtree-with-time-shift > to create the copies, typically shifted by 1 week. Then I go through > the created entries and delete those weeks that need to be omitted. > > Maybe not as elegant but works very well and it's what I've been doing > for years now for my own lectures. > > -- > : Eric S Fraga, with org release_9.5.3-397-g81289b in Emacs 29.0.50 -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
how to exclude several single dates from a diary block
I use Org-Mode to schedule most everything, including my lectures which typically are recurring events. I have learnt that I can exclude a certain range of days or weeks where no lectures take place. For this, I use: * TODO 12:15--13:45 Lecture: Aristotle <%%(unless (diary-block 12 20 2021 12 31 2021) (and (= 3 (calendar-day-of-week date)) (diary-block 10 18 2021 02 11 2022)))> which means that the lecture on Aristotle is scheduled for every Wednesday between October 18th, 2021 and February 11th, 2022 – except for the time between December 20th, 2021 and December 31st, 2021. What I need to do for this year is to exclude single dates such as April 26th, 2022 and June 21st, 2022. Can someone please help me how to achieve this? Many thanks in advance, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
Fwd: how to remove automatically an intermediate odt-File
-- Forwarded message - Von: Kyle Meyer Date: So., 13. Sept. 2020 um 17:09 Uhr Subject: Re: how to remove automatically an intermediate odt-File To: Hi Rainer, Rainer Thiel writes: > Thanks for the help, but I cannot get it right. I am always getting > the message «error: Unknown add-function location ‘org-odt-convert’». org-odt-convert is defined in ox-odt, so if that library isn't loaded yet, you'll need to explicitly load it before that snippet: (require 'ox-odt) Or you could use eval-after-load, as in the next snippet. > Where exactly do I have to place this code snippet? I am sorry should > I be overlooking something obvious. Anywhere in your Emacs customization should do. If you wanted to avoid loading ox-odt at startup, you do something like this: (eval-after-load 'ox-odt '(advice-add 'org-odt-convert :after (lambda (&optional in-file &rest _) (when in-file (delete-file in-file))) '((name . "org-odt-convert--delete-in-file" > Thank you very much again, Happy to help, but in the future please keep your replies on list. That (1) allows others to help and give feedback and (2) may help other readers that had the same question as you. -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
how to remove automatically an intermediate odt-File
I have set org-odt-preferred-output-format to docx, which works fine. How can I have the intermediate odt-file removed automatically after the docx-file is created? Many thanks in advance for any answer Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] Problems with exporting in org-mode 9.1.6
I am getting the error message «Wrong type argument: listp, #("This is the Title" 0 17 (:parent (#0)))» (or similar) whenever I try to export a file with header options to any format (html, txt, pdf via LaTeX, ...), if the file has a header. Minimal example: --> #+TITLE: This is the Title org-mode 9.1.6 does not seem to handle the headers properly. When there is a header, exporting fails with the message: «Wrong type argument: listp, #("This is the Title" 0 17 (:parent (#0)))». There was no such problem with previous recent org-mode versions. <-- Exporting runs through correctly when I remove the line «#+TITLE: This is the Title». Any ideas there? Thanks in advance Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] org export: how to avoid putting :export: in the exported file?
I often export org-files, most of the time to LaTeX/pdf, but the behaviour/problem is alike with many export filters. Let us say I want to export an org-file that runs like this: > * First Section > Some text > * Second Section :export: > Some more text > * Third Section > Even more text When I export this file to an ASCII buffer, the result is: > 1 Second Section:export: > > > Some more text (note «:export:» in the first line on the right) Likewise, in the case of a LaTeX export, the tag «export» is put in small caps in the exported file, with odt export in small caps and square brackets. Of course, it is easy to remove the tag in the output file. But I often export to pdf via LaTeX and automatically have deleted all intermediate files including the LaTeX file. So it would save me time to avoid putting the tag in the file in the first place. So, how can I avoid getting the «export» tag put in the output file? Thanks in advance, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
Re: [O] comma as decimal point: bug?
Hi Bastien, hi Nicolas, 2012/8/26 Bastien : > But I guess it's confusing to align numbers as if they were numbers, > and to then tell the users "well, they are not really numbers." I myself indeed was confused, but now that I know it only concerns aligning of numbers I have no problem living with it. I had be surprised by the supposed change, anyway, because Bastien (I think) in earlier versions of the manual had most definitely excluded to allow commas to be used as decimal points. I am not a programmer and are probably unaware of the problems coming up when allowing both dots and commas to be used as decimal points. As a user, I can say it would be an advantage when exporting org-files to LaTeX or ODT etc. Many thanks again and best wishes Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] (not so) sticky agendas
I use to have the agenda for the next 21 days automatically displayed when Emacs ist run. For this purpose, I have put (org-agenda-list) as one of the last entries in my .emacs init file (the org-agenda-span is set to 21 befor in the custom variables). The agenda thereby displayed is not sticky, though. When I «bury» it, it is computed again when pressing C-c a a. An agenda produced with C-c a a and then «buried» is sticky and works as expected. Any help on this? -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] comma as decimal point: bug?
I have seen that as of v. 7.9, org tables are supposed to accept commas as decimal points which is useful if you set up tables to be used in in files where continental conventions are expected to be followed. But I cannot see this really works. I should have expected that the following two tables should provide the same result: --> | Items | Price | |+---| | Item 1 | 15.3 | | Item 2 | 2.3 | |+---| | Sum| 17.6 | #+TBLFM: @4$2=vsum(@II..@I) | Items | Price | |+---| | Item 1 | 15,3 | | Item 2 | 2,3 | |+---| | Sum|23 | #+TBLFM: @4$2=vsum(@II..@I) <-- As you can see, the outcome is quite different, and wrong when commas are used instead of decimal points. The value of org-table-number-regexp should be the standard value in org 7.9: --> org-table-number-regexp is a variable defined in `org-table.el'. Its value is "^\\([<>]?[-+^.,0-9]*[0-9][-+^.,0-9eEdDx()%:]*\\|\\(0[xX]\\)[0-9a-fA-F]+\\|nan\\)$" <-- Am I doing wrong something here, or is this a bug in org 7.9? Best regards, and many thanks in advance Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
Re: [O] Org-mode release 7.9
Is there a way to install Org 7.9 under Windows Vista? I have written the following local.mk in the Org installation directory: --> # Name of your emacs binary EMACS = emacs.exe # Where local software is found prefix = C:/Program Files/Emacs # Where local lisp files go. lispdir= $(prefix)/site-lisp/org # Where local data files go. datadir = $(prefix)/etc/org # Where info files go. infodir = $(prefix)/info <-- Those are the very setting that I used to put in the Makfile in previous Org versions. Now cygwin make fails with the following output: --> make -C doc clean; make -C lisp clean; make[1]: Entering directory `/cygdrive/c/org-7.9/doc' rm -f org *.pdf *.html *_letter.tex org-version.inc \ *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs \ *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps make[1]: Leaving directory `/cygdrive/c/org-7.9/doc' make[1]: Entering directory `/cygdrive/c/org-7.9/lisp' rm -f org-version.el org-install.el org-version.elc org-install.elc rm -f *.elc make[1]: Leaving directory `/cygdrive/c/org-7.9/lisp' make -C doc all; make -C etc all; make -C lisp all; make[1]: Entering directory `/cygdrive/c/org-7.9/doc' org-version: N/A (N/A) makeinfo --no-split org.texi -o org makeinfo --html --number-sections --no-split -o org.html org.texi ../utils/manfull.pl org.html make[1]: ../utils/manfull.pl: Command not found make[1]: *** [org.html] Error 127 make[1]: Leaving directory `/cygdrive/c/org-7.9/doc' make[1]: Entering directory `/cygdrive/c/org-7.9/etc' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/cygdrive/c/org-7.9/etc' make[1]: Entering directory `/cygdrive/c/org-7.9/lisp' rm -f org-version.el org-install.el org-version.elc org-install.elc org-version: N/A (N/A) Loading c:/org-7.9/lisp/org-compat.el (source)... Cannot open load file: ../utils/org-fixup.el make[1]: *** [org-version.el] Error 255 make[1]: Leaving directory `/cygdrive/c/org-7.9/lisp' make: *** [all] Error 2 <-- Can someone help? Many thanks in advance Rainer Thiel 2012/8/24 Bastien : > Hi all, > > I've released Org 7.9. > > http://orgmode.org/org-7.9.zip > http://orgmode.org/org-7.9.gz > http://orgmode.org/org-mode-download.html > > After 1885 commits since Org 7.8, it was about time. > > See the list of changes here: > > http://orgmode.org/Changes.html > > I cannot thank all the contributors enough: especially Nicolas, for his > great work on org-element.el (among other nice stuff), Achim for the way > he patiently rethought the build mechanism (and bared with me when I was > being stubborn), Eric for the steady maintainance of Babel, Max for the > neat idea of sticky agendas, etc. > > Here is a list of people to praise for their help: > > A. Major, Aaron Peromsik, Achim Gratz, Adam Spiers, Aidan Gauland, > Albert, Alex Lane, Alexander Willand, Andrew Young, Anthony Lander, > Benjamin Motz, Bernt Hansen, Bill Jackson, Bill Wishon, Bjarte Johansen, > Brian J. Carlson, Brian Wood, Brian van den Broek, Carsten Dominik, > Charles Philip Chan, Charles Sebold, Charles, Charlie Millar, Christoph > Lange, Christophe Rhodes, Christopher Schmidt, Daniel Dehennin, Dave > Abrahams, David Coate, David Maus, David Niemi, Dov Grobgeld, Du > Yanning, Dunib, Elias Assarsson, Eric Abrahamsen, Eric S Fraga, Eric > Schulte, Fabrice Pardo, Feiming Chen, François Allisson, François > Pinard, Friedrich Delgado, Giles, Glenn Morris, Greg Troxel, Gsqual, > Guido Arnold, Gustav Wikström, Henning Redestig, Ian Barton, Ilya > Shlyakhter, Ingo Lohmar, Ivan Kanis, Ivars Finvers, Jack Erwin, > Jambunathan, James Harkins, Joe Vornehm Jr., John Hendy, John Wiegley, > Jonathan Leech-Pepin, Joost Kremers, Jose E. Marchesi, Joseph Thomas, > Karl Berg, Ken Williams, Konstantin Ziegler, Laurynas Biveinis, Leo > Alekseyev, Leo and Henning, Loris Bennett, Luis Anaya, Marc-Oliver Ihm, > Marcel Van der Boom, Martin Beck, Martyn Jago, Mathias Bauer, Matt > Lundin, Michael Heerdegen, Mike McLean, Mike McLean, Mikhail Titov, > Mikkel Kristiansen, Moritz Ulrich, Myles English, Nick Dokos, Nicolas > Goaziou, Noorul Islam K M, Olaf Dietsche, Paul Eggert, Paweł Menich, > Peter Danenberg, Peter Münster, Petro Rafael, Rasmus Rempling, Richard > Hansen, Richard Stanton, Robert Lupton the Good, Ryan Kaskel, SW, Samuel > Wales, Sean O'Halpin, Simon Thum, Stefan Vollmar, Steinar Bang, Steve > Revilak, Stuart McLean, Sylvain Rousseau, Sébastien Vauban, T.F. Torrey, > Takaaki Ishikawa, Takafumi Arakaki, Tassilo Horn, Thierry Stoehr, Thomas > S. Dye, Thomas Wallrafen, Tobias Naehring, Toby Cubitt, Tomas Grigera, > Torsten Wagner, Uwe Brauer, Vagn Johansen, Viktor Rosenfeld, Vladimir > Lomov, Waldemar Reusch, Yagnesh Raghava Yakkala,
Re: [O] org-agenda-sticky
Thank you very much for your answer. In fact I had wrongly assumed the User Visible Changes listed on <http://orgmode.org/Changes.html> referred to the latest released version, but now see their first section describe the git repository. Thanks again for correcting me on this point. Best Rainer 2012/5/25 Bastien : > Hi Rainer, > > Rainer Thiel writes: > >> I use org version 7.8.11 with GNU Emacs 24.1.50.1 under Windows XP. >> >> I can't seem to find a way to use the new org-agenda-sticky option. > > This option is not part of the officially released version of Org, yet. > It is available through the master branch of the git repo, though. > > Org 7.9 will be released somewhere in June. > > HTH, > > -- > Bastien -- Prof. Dr. Rainer Thiel Wöllnitzer Str. 12 07749 Jena Germany
[O] org-agenda-sticky
I use org version 7.8.11 with GNU Emacs 24.1.50.1 under Windows XP. I can't seem to find a way to use the new org-agenda-sticky option. It seems the variable doesn't exist even after (require 'org-install) nor after an agenda has been displayed with (org-agenda-list 14) Does anyone have an idea on what I may be doing wrong? Many thanks in advance Rainer -- Prof. Dr. Rainer Thiel Wöllnitzer Str. 12 07749 Jena Germany
[O] parse-time-months/weekdays configuration conflicting with gnus (?)
I have configured the variables parse-time-months and parse-time-weekdays with the German months and weekday names and appropriate abbreviations to be able to use them when setting a time-stamp in org-mode. This has worked fine for years, and still does as far as org-mode is concerned. Since I recently switched to emacs 24.0.93.1, this configuration appears to conflict with gnus. When starting gnus, I am getting an error message like «Invalid date: Tue, 06 Mar 2012 17:53:09 +0100». Does anyone know how to get this right? Many thanks in advance. Rainber Thiel -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] ODT Exporter
I had noticed Org Mode v. 7.8 integrates Jambunathan's ODT exporter that I had used successfully when it was still labelled as a contribution. After installing org-mode 7.8 on my Windows XP machine, I can't seem to be able to use the ODT exporter, though. Trying to do so, I am getting the error message "Cannot find factory styles file. Check package dir layout". I have set the variable org-odt-styles-dir to C:/Programme/Emacs/site-lisp/org/styles where OrgOdtStyles.xml and OrgOdtContentTemplate.xml reside, to no avail. Any ideas what I maay have overlooked? Many thanks in advance Rainer Thiel -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[O] Org Mode export: xelatex
I am aware I am not the only one who wants to export text written in org-mode in pfd through XeLaTeX. In fact, I am aware of Kieran Healy's blog and of <http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html>, but can't seem to find a solution that wotks for me. I use Emacs 23 on a Windows Vista machine. I do manage to persuade org-mode to use XeLaTeX instead of pdfLaTeX, but org-mode insists upon including the fontenc and inputenc packages even though in org-export-latex-default-packages-alist both packages are set to "nil". So compilation of the tex-file produced by org-mode fails. I can heal this by manually removing both packages from the tex-file, but this, of course, detracts much from the convenience I am used to in using org-mode. Any hints how to solve this problem? Many thanks in advance and best regards, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) r.th...@uni-jena.de
[Orgmode] Re: bug in org-write-agenda?
2010/11/12 Rainer Thiel : > I suspect there might be a bug in the org mode 7.3 org-write-agenda > function. When trying to write a pdf-file, org-mode claims to have > written it, but neither a .ps nor a pdf-File is produced. Things did > work with org-mode 7.02, and I don't seem to have changed anything but > installing v. 7.3 since the last time it worked fine. Must have been a temporary problem of my Windows Vista system. After a restart, everthing works as expected. Sorry for the noise. -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] bug in org-write-agenda?
I suspect there might be a bug in the org mode 7.3 org-write-agenda function. When trying to write a pdf-file, org-mode claims to have written it, but neither a .ps nor a pdf-File is produced. Things did work with org-mode 7.02, and I don't seem to have changed anything but installing v. 7.3 since the last time it worked fine. -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] timestamp with repeater interval
2010/10/19 Eric S Fraga : > On Mon, 18 Oct 2010 22:53:45 +0200, Rainer Thiel wrote: > Emacs -> Calendar/Diary -> Advanced Calendar/Diary usage -> Sexp Diary Entries Thanks for trying to help out. I cannot discover any hint to how to define an end date for repeater intervals there, though. It is probably obvious to professional lisp programmers. But while I have done some lisp programming, this is not really my field. Many thanks again, Rainer -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] timestamp with repeater interval
I have a strange problem with timestamps with repeater intervals and think I am doing something wrong. I had assumed that entering in a new TODO item a timestamp like "oct 19 10:00 +14w" pressing C-c . would show the entry in the next 15 weeks including the day of tomorrow. In reality, the item shows up *only* tomorrow, but not in the next 14 weeks. Any idea what I am doing wrong? Many thanks in advance, Rainer -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] bug in org-table?
2010/4/7 Carsten Dominik : > this works just fine for me. Many thanks to Carsten and David for their responses. I'am a bit at a loss on where the problem may lay: I have made a fresh installation of Emacs 23.1 and org-mode 6.35f -- and nothing else. The .emacs init file contains nothing else but: --> (require 'org-install) <-- Yet, I am still experiencing the same problem: When in the file: --> | Col1 | Col2 | Col3 | |+---+---| | long table entry | sh. t. e. | sh. t. e. | | <10> | | | <-- the table is aligned properly (showing " long tab=> " in the first column), and I move the mouse cursor over that field, what is shown in the pop-up window is only "Clipped table field, use C-c ` to edit. Full value is:" and an empty line. Since I am running Emacs under Windows (Vista) I am wondering if in programming this feature any assumptions might have been made about the behaviour of the operating system, assumptions Windows might not match? Best regards, and many thanks for your help Rainer -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] bug in org-table?
I have noticed recently what I think may be a bug in org table: When I hold the mouse over a narrowed field, the tool-tip window shows only the text "Clipped table field, use C-c ` to edit. Full value is:" and an empty line after that. The full text is not shown. I had first noticed this bug in org-version 6.34c, but I now see the problem is still there in v. 6.35. I have exprienced this behaviour on the following file: ---> | Title1 | Title2 | |+-| | One rather long entry | Short entry | | <10> | | <--- I remember the feature worked correctly in earlier versions of org-mode. Any idea what might be behind that problem? Many thanks again for this great mode, Rainer -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] bug [?] writing ics files
With previous org-mode versions (up to 6.25, I think), I could write agenda-views to ics-files. This doesn't seem to work anymore; I am getting the error message "Symbol's function definition is void: org-export-icalendar" when trying to do so. It was useful to export dates and todos from org-mode to pdas etc. Is there any hope this feature will come back to life? Thanks in advance, and as usual kudos to Castens Dominik for this great mode, Rainer -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] feature request: checkboxes in tables
I am wondering if it might be possible to allow check boxes in table columns. This I think might be useful to control how how many people have done certain steps eg in the preparation of a conference. I'd expect this feature to work just like in item lists. Anexample of such a list might be: | Name | announcement made [2/4] | hotel booked [2/4] | |---+-+| | Bill | [ ] | [X]| | Jane | [X] | [X]| | Jim | [X] | [ ]| | Nancy | [ ] | [ ]| Might this be something worth implementing? As always, many thanks to Carsten Dominik for this great mode. -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] Release 6.24c?
I have been wondering quite a while now why the pdf version of the manual (<http://orgmode.org/org.pdf>) claims to be "for Org version 6.24c" while the current version is said to be 6.24b. Is there a good reason for this discrepance or is it just a typo? -- Prof. Dr. Rainer Thiel Dekan Philosophische Fakultät 07737 Jena, Germany (EU) r.th...@uni-jena.de ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] possible bug in org-export (LaTeX), again
2008/10/27 Manish <[EMAIL PROTECTED]>: > My apologies, Rainer. Something kept preventing the point about > folded heading from getting into my thick skull. [...] I can also reproduce > it. Thank you for confirming this. I tested it again and found it isn't the first section being folded either that is relevant. When everything is unfolded, but only the whole first section (with the two subsections) is in the active region, the result is identical. :( Best wishes Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] possible bug in org-export (LaTeX), again
2008/10/26 Sebastian Rose <[EMAIL PROTECTED]>: > I can reproduce thit here. Text is inserted into the LaTeX file > (`C-c C-e l') or buffer (`C-c C-e L') > twice. Thank you for confirming it, Sebastian. I am sure Carsten Dominik will take care of it when he finds the time. Thanks again Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] possible bug in org-export (LaTeX), again
2008/10/26 Manish <[EMAIL PROTECTED]>: > I opened the attached .org file, did "C-c e d" and completely normal > looking PDF was created. I am attaching generated .tex file. I > guess, it should be something specific to your specific setup. The problem doesn't occur in that case here either. As I had explained in my demonstration file, it never occurs when I am exporting the whole file. It does occur, though, at least here, when I mark the folded title line of the first section in an active region and then start the export function to export only the first section (= first outline tree). Could you try if you can reproduce the problem under this condition? Many thanks indeed Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] possible bug in org-export (LaTeX), again
I now realise I sent my answeer only to Manish and not to the list, so I am forwarding it now. In substance, my test file does (and did) have a blank line at the beginning and the problem still persists. I am afraid it is not exactly the same problem that was reportet some time ago. I am appending the .org-source-file and the exported .tex-file again. -- Forwarded message -- From: Rainer Thiel <[EMAIL PROTECTED]> Date: 2008/10/25 Subject: Re: [Orgmode] possible bug in org-export (LaTeX) To: Manish <[EMAIL PROTECTED]> 2008/10/25 Manish <[EMAIL PROTECTED]>: > A similar issue was reported a few weeks ago [1]. When I try the same > workaround (make the first line of your document non-heading, a blank > line or a #+ line or somthing), your example works fine here. Well, as you can see in my example, the first line of my document is actually a blank line, indeed. I was aware of that easy workaround, and it did work with that problem (in fact, I had found the workaround myself before I'd read that posting). I have no idea why it doesn't work here in this case. Many thanks for answering anyway Rainer Thiel -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] explattest.org Description: Binary data explattest.tex Description: TeX document ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] possible bug in org-export (LaTeX)
The following is a demonstration file explaining and showing the problem I have and think is a bug. I append the LaTeX file that shows the bug. In it, I have commented out a few lines in there due to my settings that should be unrelated to the problem. As usual, many thanks to Carsten Dominik for this great mode. Rainer Thiel # File to demonstrate LaTeX export bug * First section: Short org-mode export demonstration file This is a short text intended to explain what I think may be a bug in org-mode's LaTeX exporting feature. The substance of the problem is that when exporting into a LaTeX-buffer the text. ** First subsection: introduction This is an idle paragraph in the first section. Is is /not/ meaningful in any way. It is just here to display some text. Together with the first paragraph, this second paragraph should already be enough to show the problem. ** Second subsection: problem description * When I am exporting the whole file, everything works as expected. * When I am marking the folded title-line of the first section in an active region as explained in 12.4 of the org manual (6.10), the latex-file is created as expected, except that the whole text to be set is repeated (with headlines including the asterisks) /before/ the first LaTeX-section. I suppose this should be a bug. * Second section This second section does not have any sense at all. # End of file -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] exporttest.tex Description: TeX document ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] orgtbl-mode and numerical keypad
I have noticed a side-effect of orgtbl-mode that I suppose is not intended: Whenever orgtbl-mode is active, pressing any key on the numerical keypad (except for ) doesn't insert any character, but produces the following error message: "Wrong type argument: commandp, nil". As all relevant keys in that case are bound to orgtbl-self-insert-command, the problem may lurk in that function definition. I first thought the problem might be an interference with auctex, but now see it can be reproduced with text mode after starting Emacs from the command line with "emacs -q" and evaluating "(require 'org-install)" in the *scratch* buffer. Thanks for this excellent mode and thank for any and all help! Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] adding up decimal fractions in the spreadsheet
Hi Carsten, 2008/9/27 Carsten Dominik <[EMAIL PROTECTED]>: > The other thing you can do is to use your own format to convert the number. > Maybe something like "%.2f" will work for you? Hard to make this correct > for the general case though. Yes, this is not a way to go, as far as I can see, for exactly that reason. Interestingly, | 12130.68 | | -1444.19 | | -12744.90 | | -186.00 | | 7000.00 | | -7056.00 | | -335.58 | | -277.00 | | -2912.99 | #+TBLFM: @[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@8$1 gives the correct value, there's no need to add `;f2' at the end of the last line. This in itself is a way to go, of course, but would be more comfortable to have a way to sum up all rows but the last one (without having to keep track of the number of rows) or at least to work with ranges, which as far as I have seen so far seems not to be possible in this case. These are minutiae, of course. org-mode is already excellent, and since I discovered it a few weeks ago, I've been making use of it at all times. Many thanks again, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] adding up decimal fractions in the spreadsheet
2008/9/27 Manish <[EMAIL PROTECTED]>: > About not being sure how to access latest Org, FAQ at > http://orgmode.org/worg/org-faq.php might help. Thank you, Manish. Is this lykely to work on a Windows machine with cygwin installed, too? Best wishes, and many thanks again, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] adding up decimal fractions in the spreadsheet
Following a hint by Bernt Hansen, I have now changed org-table-sum to (format "%s" res) until I'll be able to use the corrected version Carsten Dominik uploaded to the git repository (which I am not sure how to access). Even so, org-table-sum at times shows a strange behaviour. When I try to sum up the following table: | 12130.68 | | -1444.19 | | -12744.90 | | -186.00 | | 7000.00 | | -7056.00 | | -335.58 | | -277.00 | I get -2912.98993 (-2912.99 being the exact result). This is something I'd expect when square roots or logarithms are implied, but with such a simple addition and subtraction of decimal numbers I'd be inclined to call it a bug. Is there a way to improve org-mode in this respect? Many thanks again for this great mode -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] decimal fractions when summing up large numbers
I have a problem I am confident there is a solution to. I even suspect it may be explained in the manual, but can't for the life of me find it: Summing up small numbers in tables isn't a problem even when they have digits after the decimal point. For example, org-table-sum applied on the table | 1.7 | | 1.5 | | 1.3 | correctly gives 30001.5. On the other hand, applied on the table | 10.7 | | 10.5 | | 10.3 | org-table-sum gives 32, the correctly rounded value of 31.5, which would be the exact value. How can I make org-table-sum deliver the exact value? If this is explained in the manual, please point me to the relevant section. Many thanks in advance Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] org-mode remember visibility
I like the interaction of org-mode and remember, and I have defined the following templates with minimal and trivial adaptations of what is suggested in the manual: (setq org-remember-templates '(("Todo" ?t "* TODO %?\n %i\n %a" org-default-notes-file "Aufgaben") ("Notiz" ?n "* %U %?\n\n %i\n %a" org-default-notes-file "Notizen") ("Besprechung" ?b "* %^{Besprechung mit} %U %?\n\n %i\n" org-default-notes-file "Besprechungen") ("Idee" ?i "* %^{Title}\n %i\n %a" org-default-notes-file "Ideen"))) This works fine. What I find confusing though, is that initially the Text of the newly created entry (including text inserted from the active region) is invisible. Is there are good reason for this default behaviour, and is there a way to change it, viz. to start the entry as visible? Many thanks in advance Rainer Thiel -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
Re: [Orgmode] configuring org-export-latex-classes
2008/9/2 Russell Adams <[EMAIL PROTECTED]>: > I set mine directly in .emacs, I haven't tried the customize > interface. > > Perhaps you should edit it directly if you've already got it set. I'll do that as a last resort indeed, but I am actually trying to use the customize interface as much as possible. Thank you very much anyway, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[Orgmode] configuring org-export-latex-classes
I can't seem to find a way to configure the variable org-export-latex-classes either directly (via customize-variable) or through customizing a group. customize-variable can't find this variable, and I am unable to find the customizing group it may be in. Some time (only a couple of weeks) ago I did successfully customize that variable through a group for the life of me I now can't remember. Can someone help me, please? Many thanks in advance, Rainer -- Prof. Dr. Rainer Thiel Institut für Altertumswissenschaften 07737 Jena, Germany (EU) [EMAIL PROTECTED] ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode