Re: [O] Bug: iCal export does not respect :noexport: tag [9.1.6 (9.1.6-31-gffa5f3-elpa @ /Users/kdm/.emacs.d/elpa/org-20180122/)]

2018-01-25 Thread Ken Mankoff
Adding "(setq org-icalendar-exclude-tags ":noexport:")" prior to exporting does not change anything. On Thu, Jan 25, 2018 at 9:16 PM, Nicolas Goaziou wrote: > Hello, > > Ken Mankoff writes: > > > Package: Org mode version 9.1.6 (9.1.6-31-gffa5f3-elpa @ > > /Users/kdm/.emacs.d/elpa/org-20180122/

Re: [O] [feature] prepend comment char before org-babel-ref

2018-01-25 Thread Nicolas Goaziou
Hello, "numbch...@gmail.com" writes: > I see. Seems current ob-core.el can filter out the `src-coderef`. > Like the following: [...] > My wanted feature is simple, just `(insert (concat comment-char > coderef-format))` Per the above, may I ask why you do need it? Regards, -- Nicolas Goazio

Re: [O] Lower-casing blocks and keywords

2018-01-25 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: > I also like the blocks and keywords to be lower-cased. I see this in the > latest commit on master: > https://code.orgmode.org/bzg/org-mode/commit/13424336a6f30c50952d291e7a82906c1210daf0 > > Did you do that lower-casing by hand? Or do you have an elisp snippet or >

Re: [O] Bug: iCal export does not respect :noexport: tag [9.1.6 (9.1.6-31-gffa5f3-elpa @ /Users/kdm/.emacs.d/elpa/org-20180122/)]

2018-01-25 Thread Nicolas Goaziou
Hello, Ken Mankoff writes: > Package: Org mode version 9.1.6 (9.1.6-31-gffa5f3-elpa @ > /Users/kdm/.emacs.d/elpa/org-20180122/) > > I thought :noexport: tags should be respected on export, but that does > not seem to be the case for iCal export. IIRC, this is a feature. `org-icalendar-exclude-t

Re: [O] executing org-table TBLFM form changes (resets) language settings

2018-01-25 Thread Nick Dokos
Rainer Stengele writes: > All, > > My current-language-environment is "German". > Having an Org table with a TBLFM attached: > > | IM Startzeit | IM Endezeit | Stunden | delta(x,16) | > Anm. | > |---+---+-+-+--| >

[O] Bug: iCal export does not respect :noexport: tag [9.1.6 (9.1.6-31-gffa5f3-elpa @ /Users/kdm/.emacs.d/elpa/org-20180122/)]

2018-01-25 Thread Ken Mankoff
Package: Org mode version 9.1.6 (9.1.6-31-gffa5f3-elpa @ /Users/kdm/.emacs.d/elpa/org-20180122/) I thought :noexport: tags should be respected on export, but that does not seem to be the case for iCal export. I'm using this minimum DEBUG.el and test.org loaded (on OS X) with: open --new -a Emac

[O] exporting a big project in multiple files to both pdf and html

2018-01-25 Thread Alan Schmitt
Hello, I'm working on a project that is becoming too big to manage as a single file, so I'm looking at splitting it in several files. This would also have the benefit of generating several smaller html pages instead of a single huge one. My question is about pdf export. Is it possible to take a d

Re: [O] computing the size of a tikz to png image during export

2018-01-25 Thread Alan Schmitt
On 2018-01-25 06:46, Eric S Fraga writes: > On Wednesday, 24 Jan 2018 at 08:54, Alan Schmitt wrote: >> If I understand how it works in the png case, a standalone latex file is >> first generated, then it is compiled to pdf and converted to png using >> imagemagick. Instead of specifying the geome

[O] executing org-table TBLFM form changes (resets) language settings

2018-01-25 Thread Rainer Stengele
All, My current-language-environment is "German". Having an Org table with a TBLFM attached: | IM Startzeit | IM Endezeit | Stunden | delta(x,16) | Anm. | |---+---+-+-+--| | [2018-01-22 Mo 19:30] | [2018-01-23 Di

Re: [O] [feature] prepend comment char before org-babel-ref

2018-01-25 Thread numbch...@gmail.com
I see. Seems current ob-core.el can filter out the `src-coderef`. Like the following: #+begin_src emacs-lisp (prin1 "hello, world!") (ref:hello) #+end_src #+RESULTS[<2018-01-25 20:28:40> 16eccfedcc87d3ca0c7024b2637c646d4708ec42]: : hello, world! #+begin_src ruby :results output puts "hello, worl