[Orgmode] library of babel, bootabs question

2010-10-08 Thread Robert Klein
I'm trying to export a document to LaTeX, using a lob-call to booktabs for a table. Unfortunately I seem to get two tables, the original one and the one from the lob call. The table looks like this: #+tblname: ma |---+---+-| | row 1 cell

Re: [Orgmode] library of babel, bootabs question

2010-10-18 Thread Robert Klein
be done using the COMMENT header keyword by moving the table to a new subtree and pressing C-c ; which runs org-toggle-comment in that subtree. Best -- Eric "Robert Klein" writes: I'm trying to export a document to LaTeX, using a lob-call to booktabs for a table. Unfortunatel

Re: [Orgmode] gnuplot version in org-mode

2010-10-26 Thread Robert Klein
Hi John, when you look into gnuplot-ob.el, there are some commentary about requirements: #+begin_example ;;; Requirements: ;; - gnuplot :: http://www.gnuplot.info/ ;; ;; - gnuplot-mode :: http://cars9.uchicago.edu/~ravel/software/gnuplot-mode.html #+end_example The 3.7 most probably is from

Re: [Orgmode] LaTeX package dependencies

2010-03-26 Thread Robert Klein
Hi Carsten, I tested several systems: * teTeX 3.0 (FreeBSD 7.0, 7.2, and 7.3, openSuSE 10.2) misses MnSymbol * texlive 2007 (openSuSE 10.3 and 11.1): misses MnSymbol * texlive 2008 (openSuSE 11.2): doesn't work when using both wasysym and MnSymbol together (duplicate symbols \iint and \i

Re: [Orgmode] Re: IMPORTANT: (possibly) incompatible Change

2010-04-06 Thread Robert Klein
On Tue, 06 Apr 2010 18:50:36 +0200, Karsten Heymann wrote: Thanks a lot for all this, I will follow your advice. One final question: Will any of these packages spoil the fun for people who want to process through .dvi instead of directly to pdf? Not as far as I know. hyperref and microtype

Re: [Orgmode] Re: Bug: (REVISED) trouble with updated latex export [6.35 (release_6.35a.26.g78cc)]

2010-04-06 Thread Robert Klein
Am 07.04.2010, 09:17 Uhr, schrieb Austin Frank : On Wed, Apr 07 2010, Austin Frank wrote: I then document some unexpected behavior when exporting to latex. Options specified with #+LATEX_HEADER are not exported, and if `org-export-latex-packages-alist' is customized then only those packages ar

Re: [Orgmode] Re: Bug: (REVISED) trouble with updated latex export [6.35 (release_6.35a.26.g78cc)]

2010-04-06 Thread Robert Klein
Am 07.04.2010, 09:43 Uhr, schrieb Austin Frank : On Wed, Apr 07 2010, Robert Klein wrote: Also, when I put (add-to-list 'org-export-latex-packages-alist '("" "listings")) What's the value of `org-export-latex-listings'? Carsten, how should listi

Re: [Orgmode] Re: Bug: (REVISED) trouble with updated latex export [6.35 (release_6.35a.26.g78cc)]

2010-04-06 Thread Robert Klein
Am 07.04.2010, 09:35 Uhr, schrieb Carsten Dominik : Looks I am having a bad day. Can you please pull and try again? As soon as possible? - Carsten It works for me now. Also, the double inclusion of packages as described in my other mail doesn't happen anymore. PS: I've currently got

[Orgmode] begin_src "generic source code"

2010-04-30 Thread Robert Klein
Hi all, is there a way to include generic source code in an org document? I'm trying to put excerpts from configuration files into an org document. However, if I leave the programming language out of the #+begin_src and export to LaTeX or HTML, the text is rendered just like any other paragra

Re: [Orgmode] begin_src "generic source code"

2010-04-30 Thread Robert Klein
On Fri, 30 Apr 2010 20:39:55 +0200, Jason McBrayer wrote: On Fri, Apr 30, 2010 at 2:18 PM, Robert Klein wrote: is there a way to include generic source code in an org document? I'm trying to put excerpts from configuration files into an org document. Have you tried #+begin_src

Re: [Orgmode] begin_src "generic source code"

2010-04-30 Thread Robert Klein
.) Using both "#+begin_src conf" for real configuration files and "#+begin_example" e.g. for a pxelinux message file will do the job as I want. Thank you very much Robert Also sprach Jason McBrayer: On Fri, Apr 30, 2010 at 2:18 PM, Robert Klein wrote: is there a way to in

Re: [Orgmode] strange behavior for export

2010-05-01 Thread Robert Klein
Eric, where in your .emacs is the (require 'org-install) command? In one of my setups I had it before the load-paths. I didn't notice, because of an older version of org-mode bundled with emacs; org-version reports the new version but that is not what my emacs used in exporting. Carsten, is

[Orgmode] Documentation typo

2010-07-01 Thread Robert Klein
Hi, in the Org manual, in Chapter eleven, there is a heading "Index enries" (missing the 't' in entries). Best regards Robert ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.

Re: [Orgmode] CSS and Publishing to HTML Tutorial

2010-07-09 Thread Robert Klein
Hi Adam, On Thu, 08 Jul 2010 09:48:11 +0200, Adam wrote: #+STYLE: or even # STYLE: doing a view source of the HTML published page, shows that it includes the java stuff of org-export-html-style-export, shown below. I feel my defined CSS is being somehow compromised. I also use a style

[Orgmode] org-export-section-number-format, doc typo and question

2010-07-11 Thread Robert Klein
Hi, theres a type in org-exp.el: in the documentation to org-export-section-number-format, there's twice the counter type "a"; the second time it should be an "i", I think: From org-exp.el: 1. A list of lists, each indicating a counter type and a separator. The counter type can be any o

Re: [Orgmode] Re: org-export-section-number-format, doc typo and question

2010-07-12 Thread Robert Klein
On Sun, 11 Jul 2010 15:14:58 +0200, Bernt Hansen wrote: Bernt Hansen writes: "Robert Klein" writes: To my question, I can't seem to get this option to work I've got the following line in the file header: #+OPTIONS: section-number-format:(quote ((("I" &quo

[Orgmode] web site bug

2010-07-20 Thread Robert Klein
Hi, on the web site, the link to the HTML version of the compact guide actually links to the full manual. (http://orgmode.org/index.html#sec-4_1 first link) Best regards Robert ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to

[Orgmode] Captions for source code

2010-07-22 Thread Robert Klein
Hi list, I'm trying to get source code exported to HTML with captions, e.g. like: #+caption: Examples of variable declaration. #+begin_src sql SELECT 6*9; #+end_src There seems to be code in org-exp.el, see lines 2128 and following in version 7.01f of org-mode. However, I'm unable to find out

Re: [Orgmode] text color + highlight

2010-08-09 Thread Robert Klein
Am 09.08.2010, 08:28 Uhr, schrieb Carsten Dominik : Nope, I am against this syntax. If we introduce a more general syntax, then it should be done in the way Samuel proposed. WHich means we firs get a keyword indtroducing the piece, and then properties. Like $[style :color red the red t

Re: [Orgmode] text color + highlight

2010-08-09 Thread Robert Klein
Am 09.08.2010, 09:37 Uhr, schrieb Robert Klein : Sorry dropped something on the keyboard and sent the message early :( Am 09.08.2010, 08:28 Uhr, schrieb Carsten Dominik : Nope, I am against this syntax. If we introduce a more general syntax, then it should be done in the way Samuel proposed

[O] foot note / enumeration question

2011-07-01 Thread Robert Klein
Hi group, A file of #+begin_example * Title This is a text [fn:: the 1. footnote] with a footnote. #+end_example begins an enumeration inside the footenote and then forgets to close the footnote (which in LaTeX export gets closed at the next \section or so). I'm not sure what the expected beh

Re: [O] foot note / enumeration question

2011-07-03 Thread Robert Klein
Hi, On 07/02/2011 10:10 AM, Nicolas Goaziou wrote: Hello, Robert Klein writes: A file of #+begin_example * Title This is a text [fn:: the 1. footnote] with a footnote. #+end_example begins an enumeration inside the footenote and then forgets to close the footnote (which in LaTeX export

Re: [O] [ANN] Org Export in contrib

2011-11-28 Thread Robert Klein
On 11/25/2011 06:32 PM, Nicolas Goaziou wrote: Hello, I've pushed org-export.el to contrib. It's a general export engine, built on top of org-elements aiming at simplifying life of both developers and maintainers (and, therefore, of end-users). Hi Nicolas, I'd like to make same remarks regar

Re: [O] [ANN] Org Export in contrib

2011-11-28 Thread Robert Klein
Umm, sorry, I just found out, I was talking about the other generic exporter :( Robert On 11/29/2011 07:15 AM, Robert Klein wrote: On 11/25/2011 06:32 PM, Nicolas Goaziou wrote: Hello, I've pushed org-export.el to contrib. It's a general export engine, built on top of org-elements

Re: [Orgmode] Problems with source code listings in PDF

2011-02-09 Thread Robert Klein
Am 08.02.2011, 16:47 Uhr, schrieb Thomas S. Dye : On Feb 8, 2011, at 4:59 AM, Avdi Grimm wrote: I'm working on creating a PDF eBook with Org-Mode, and I'm running into some difficulty getting them to come out looking decent. [s.d.] I'm seeing a few problems with the output: 1. There is n

[Orgmode] Clock summary doesn't work in some cases

2011-02-22 Thread Robert Klein
Hi, in the git version as of this morning (1e35a5ea37194d686f432d384f4e264498ca6294) the clock summary doesn't work right. Below is a clock summary with a version from February 11 and below that a clock summary with the git version I downloaded just a couple of hours ago. Somewhere in bet

Re: [Orgmode] org-contacts.el

2011-02-22 Thread Robert Klein
Hi Martin, Martin Butz wrote: Hi to all, I'm using org-mode since a year or so. Its a great peace of software and I could not imagine using another organizer and notes tool anymore! Thanks a lot for all this work! I tried to use org-contacts.el using the current version from git://git.naq

[O] new org-export-html-preamble

2011-02-28 Thread Robert Klein
Hi everyone, does anyone have by chance a working example of the org-export-html-preamble, introduced on February, 10? Up to now I used :preamble "my preamble" Now I'm lost in not knowing lisp enough. Thank you very much for your help! Robert ___

Re: [O] new org-export-html-preamble

2011-02-28 Thread Robert Klein
On 28.02.2011 17:35, Nick Dokos wrote: Robert Klein wrote: Hi everyone, does anyone have by chance a working example of the org-export-html-preamble, introduced on February, 10? Up to now I used :preamble "my preamble" Now I'm lost in not knowing lisp enough. Thank yo

[O] html publish - typo in contrib/lisp/org-e-publish.el

2012-09-18 Thread Robert Klein
Hi, there is a typo in org-e-publish.el. Publishing xxx.org results in a file xxxhtml instead of xxx.html. Fix below. (My published files still have zero length, but this may be a result of a buggy setup.) Best regards Robert --- org-e-publish.el.old2012-09-18 19:27:27.502988132 +

Re: [O] org-e-groff-export-to-groff produces empty output file

2012-09-21 Thread Robert Klein
On 09/21/2012 04:34 PM, Ian Barton wrote: On 20/09/12 20:38, Eric Schulte wrote: Hi, Maybe I'm missing something obvious here, but I can't get org-e-groff to generate anything but an empty output file. I've boiled this down to the following minimal example. First save the attached example.org

Re: [O] org-e-groff-export-to-groff produces empty output file

2012-09-21 Thread Robert Klein
On 09/21/2012 04:44 PM, Robert Klein wrote: On 09/21/2012 04:34 PM, Ian Barton wrote: On 20/09/12 20:38, Eric Schulte wrote: Hi, Maybe I'm missing something obvious here, but I can't get org-e-groff to generate anything but an empty output file. I've boiled this down to the fo

[O] Publishing using the new exporter

2012-09-24 Thread Robert Klein
Hi, I'm trying to use the new exporter for publishing a project. For some reason all .org files get exported to zero length .html files. The org-e-publishh-project-alist is currently shortened to: #+begin_example (setq org-e-publish-project-alist '(("s2-org" :base-directory "~/D

Re: [O] Publishing using the new exporter

2012-09-24 Thread Robert Klein
On 09/24/2012 12:25 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: I'm trying to use the new exporter for publishing a project. For some reason all .org files get exported to zero length .html files. Did you (require 'org-e-html) first? Regards, Thanks, this helps.

Re: [O] Publishing using the new exporter

2012-09-25 Thread Robert Klein
On 09/24/2012 07:27 PM, Robert Klein wrote: On 09/24/2012 12:25 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: I'm trying to use the new exporter for publishing a project. For some reason all .org files get exported to zero length .html files. Did you (require 'org-e-h

Re: [O] new html exporter

2012-09-29 Thread Robert Klein
On 09/29/2012 01:36 PM, henry atting wrote: Hi, I gave the new html exporter a try (org-e-html-to-file). The export obviously ignores my setup file, and so the path to my css and js files. Maybe with the new exporter everything has changed and I only miss a good tutorial? henry Do you want

Re: [O] Publishing using the new exporter

2012-10-06 Thread Robert Klein
On 10/06/2012 01:17 PM, Nicolas Goaziou wrote: Hello, Another issue I encountered, when publishing(!) to pdf, the resulting pdfs didn't have any images. This is probably caused by the images beind created in :base-directory and the pdf being created in :publishing-directory Indeed. Eric: Is

Re: [O] Publishing using the new exporter

2012-10-07 Thread Robert Klein
On 10/06/2012 07:48 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: for pdf publishing I'd rather prefer the tex file also to be created in the base directory and only the pdf appearing in the publishing-directory, if there is a way. You're right: I'm over-enginee

Re: [O] Publishing using the new exporter

2012-10-08 Thread Robert Klein
On 10/08/2012 02:55 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: There is still a small issue, though. I tried org-e-publish to pdf with one small difference: 1. I'm in a buffer, the visited file is in the base-directory. M-x org-e-publish... Publishing works Ok. 2. I&#

Re: [O] Publishing using the new exporter

2012-10-08 Thread Robert Klein
Hallo, On 10/08/2012 06:49 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: umm, no, it doesn't work. I even have more issues now. 1. At first, when calling org-e-publish I got an error message "void function org-e-html-publish-to-html" I go rid of the message by th

Re: [O] Publishing using the new exporter

2012-10-08 Thread Robert Klein
On 10/08/2012 07:46 PM, Suvayu Ali wrote: On Mon, Oct 08, 2012 at 07:36:43PM +0200, Robert Klein wrote: [...] I appended both a minimal .emacs and org file I used for the tests. [...] (add-to-list 'org-e-publish-project-alist '("example-pdf"

Re: [O] Publishing using the new exporter

2012-10-09 Thread Robert Klein
Hello, On 10/08/2012 07:36 PM, Robert Klein wrote: Hallo, On 10/08/2012 06:49 PM, Nicolas Goaziou wrote: Hello, I don't think so, but I cannot reproduce your problem. Could you try again in a fresh emacs, once back-ends you need have been required? I re-installed the git-versi

Re: [O] Publishing using the new exporter

2012-10-10 Thread Robert Klein
Hello, On 10/10/2012 06:59 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: I got i working with this patch: diff --git a/contrib/lisp/org-e-latex.el b/contrib/lisp/org-e-latex.el index 80b8ddb..2d4ad35 100644 --- a/contrib/lisp/org-e-latex.el +++ b/contrib/lisp/org-e-latex.el

Re: [O] Publishing using the new exporter

2012-10-15 Thread Robert Klein
Hallo, On 10/11/2012 11:55 PM, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > >> I did some more tests and it seems the issue happens when Emacs is just >> started and nothing (much) done in it. >> >> Test description below. > > Thank y

[O] new exporter: too many blank lines in .org results in missing images from src blocks

2012-10-15 Thread Robert Klein
Hello, I found another issue with the new exporter. The export of the file below doesn't always include the image in the export (that is, no image, not even a missing image). When there is only one blank line after #+end_src, the image in included. Two or more blank lines, and there is no image

Re: [O] new exporter: too many blank lines in .org results in missing images from src blocks

2012-10-16 Thread Robert Klein
Hello, On 10/15/2012 10:35 PM, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > >> The export of the file below doesn't always include the image in the >> export (that is, no image, not even a missing image). >> >> When there is only one

[O] Patch: HTML body onload/onunload attribute support for new exporter

2012-10-17 Thread Robert Klein
Hallo, I created a patch for the new exporter, so I can adding onload and onunload attributes to the body tag in HTML export. I'm rather new to emacs lisp, please check if this is to be included in org-mode. Best regards Robert -- Robert Klein - Max Planck-Institut für Polymerfors

Re: [O] Patch: HTML body onload/onunload attribute support for new exporter

2012-10-18 Thread Robert Klein
Hallo, On 10/17/2012 03:50 PM, Nicolas Goaziou wrote: Hello, Robert Klein writes: I created a patch for the new exporter, so I can adding onload and onunload attributes to the body tag in HTML export. I'm rather new to emacs lisp, please check if this is to be included in org

Re: [O] Org 8 Bug in interactive formula editing mode?

2014-07-21 Thread Robert Klein
Hi, I confirm at least some variant of this. I start emacs using the command line "emacs -Q -l .e2" with .e2 being: #+begin_src elisp (setq load-path (cons "~/.emacs.d/org-mode/lisp" load-path)) (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) #+end_src org-

Re: [O] Org 8 Bug in interactive formula editing mode?

2014-07-22 Thread Robert Klein
I made some quick tests with different org versions; the first one I see this issue is git commit 30220ffcdcef45c0237f80a2347d4da19877f64a (release_8.2.6-77-g30220f). I don't see the patch causing this, yet; have to look further. Best regards Robert On 07/22/2014 09:01 PM, Nick Dokos wrote: > N

Re: [O] Always use utf-8 for HTML export (No support for other coding systems)

2013-03-04 Thread Robert Klein
On 03/03/2013 06:47 PM, Jambunathan K wrote: > > Always use utf-8 for HTML export (No support for other coding systems). > > For or against. Please register your views. > Against. Character set of a web document is determined by the /outermost/ "entity". The outermost entity available is the

[O] multiline emphasis, was: Re: latex italics in list, with quotation marks

2013-03-14 Thread Robert Klein
On 03/08/2013 11:58 AM, Myles English wrote: > > Hi, > > Just wondering if there is a better way to italicise across more than two > lines > for a list item, currently this is the only way that works for me: > > - on the assumption of equilibrium: /``even if there is equilibrium at > the pore

[O] exporting, too, was: Re: multiline emphasis, was: Re: latex italics in list, with quotation marks

2013-03-15 Thread Robert Klein
On 03/14/2013 09:56 AM, Robert Klein wrote: > On 03/08/2013 11:58 AM, Myles English wrote: >> >> Hi, >> >> Just wondering if there is a better way to italicise across more than two >> lines >> for a list item, currently this is the only way that wor

Re: [O] exporting, too, was: Re: multiline emphasis, was: Re: latex italics in list, with quotation marks

2013-03-17 Thread Robert Klein
Hello, > Robert Klein writes: > >> (require 'org) >> >> ;; change number of newlines for emphasized blocks >> (setq org-emphasis-regexp-components >> '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r

Re: [O] New maintainer

2013-04-18 Thread Robert Klein
t; Please raise your thumbs up or your concerns, if any. > > I'm glad I had this opportunity to work as "Robin" and > I'm even more glad "Batman" may strike back! > > :) > -- Robert Klein - Max Planck-Institut für Polymerforschung Ackermannweg 10 55128 Mainz

Re: [O] [PATCH] ox-koma-letter.el: Reintroduce variables removed in commit 832c6fd with proper defaults (was Re: [patch] ox-koma-letter.el: clean-up/semantic bug [4/4])

2013-05-24 Thread Robert Klein
Hi, FWIW, from a users view it would be nice if: - Use Author/Email information from org file - If not present use information from LCO file - if neither org file nor LCO file has any information use user-full-name and user-email-address Could this be solved by having several e.g. `setkomavar{

Re: [O] [PATCH] ox-koma-letter.el: Reintroduce variables removed in commit 832c6fd with proper defaults (was Re: [patch] ox-koma-letter.el: clean-up/semantic bug [4/4])

2013-05-25 Thread Robert Klein
Hello, On 05/25/2013 03:57 PM, Rasmus wrote: > Alan Schmitt writes: > >> Hello, >> >> Viktor Rosenfeld writes: >> >>> Hi Robert, >>> >>> Robert Klein wrote: >>> >>>> Hi, >>>> >>>> FWIW, from

Re: [O] [Exporter] How to save 'info' plist for later use?

2013-07-10 Thread Robert Klein
:post-blank > 0 :footnote-section-p nil :archivedp nil :commentedp nil :quotedp > nil :CATEGORY nil :title (A) :parent (org-data nil > #0)) (section (:begin 5 :end 7 :contents-begin 5 :contents-end > 7 :post-blank 0 :parent #0) (paragraph (:begin 5 :end > 7 :contents-begin 5 :contents-end 7 :post-blank

Re: [O] Help with new exporter

2013-07-10 Thread Robert Klein
Hi John, would you mind posting an example of the org file, too? It would be easier for me to wrap my thoughts about this.. (The gurus probably don't it...) Thanks a lot Robert On 07/10/2013 06:32 PM, John Rakestraw wrote: > Greetings, list -- > > I've been using Philip Hirschhorn's exam doc

Re: [O] Help with new exporter

2013-07-10 Thread Robert Klein
Hi John. thank you for the example org file. I made two kinds of changes, one in the org-latex-classes definition and one in the .org-file itself: I changed the class definition for org-latex-classes to #+begin_src emacs-lisp ("exam" "\\documentclass[12pt]{exam} % BEGIN exam D

Re: [O] Help with new exporter

2013-07-10 Thread Robert Klein
> class definition: > > \renewcommand\thequestion{\Roman{question}} > \renewcommand\thepartno{\arabic{partno}} > \renewcommand\partlabel{\thepartno.} > > are supposed to have to have the question-level headings numbered with > Roman numerals and the part-level headings numbered with Arabic numbers. > But for some reason that numbering scheme isn't imposed. > > Perhaps I need either just to write in latex or to work with what Rasmus > is suggesting; I've not had time yet to digest his suggestions. I'm > floating on the edge of my knowledge here > > Thanks again. > > --John > -- Robert Klein - Max Planck-Institut für Polymerforschung Ackermannweg 10 55128 Mainz

Re: [O] Help with new exporter

2013-07-12 Thread Robert Klein
while (re-search-forward "\\[]" nil t) > (replace-match "")) > text) > >(add-to-list 'org-export-filter-final-output-functions > 'jr-org-delete-brackets-from-tex-file) > --8<---cut here---end--->8-

Re: [O] Bug: koma-letter-export does not work [8.0.6(8.0.6-5-gb4a8ec-elpa @ /home/stefan/.emacs.d/elpa/org-20130722/)]]

2013-07-26 Thread Robert Klein
On 07/26/2013 12:12 PM, Stefan Reichör wrote: > Hello Alan! > >> ste...@xsteve.at writes: >> >>> Yes, I get the error message after hitting C-c C-e. >>> >>> I installed org via M-x list-packages yesterday. >> >> Are you able to export an org file to a different format (like html)? >> I'm trying to

Re: [O] How to convert a string to Org parsed tree

2013-07-28 Thread Robert Klein
On 07/28/2013 12:18 PM, Yujie Wen wrote: > Hi, > > I am working on the org-reveal exporter and I need to convert a string > get from org-element-property into HTML format. The property string have > some Org-mode markups that need to be converted to relevant HTML labels. > For example, a string

Re: [O] help me get started with org-publish?

2013-11-07 Thread Robert Klein
Hi, I don't put parentheses around org-heml-publish-to-html. The rest of the configuration looks Ok to me. Can you show us a (minimal) example file you want to publish? Thanks and best regards Robert On 11/07/2013 11:48 PM, Jay Dixit wrote: > Hi Bastien, > > Good to hear from you. Thanks f

[O] derived exporter EXPORT_... options

2013-11-26 Thread Robert Klein
ee export (C-c C-e C-d j h and C-c C-e C-d j H. Do I misunderstand subtree export? Thanks for any help. Best regards Robert -- Robert Klein UNIX Operations, Max Planck-Institut für Polymerforschung Ackermannweg 10 55218 Mainz hans.org Description: Lotus Organizer ;; hans example derive

Re: [O] useing :PROPERTIES: to set export options for pdflatex

2013-11-27 Thread Robert Klein
hanges adopted at CSE committee meeting [2013-11-25 Mon] :PROPERTIES: :EXPORT_FILE_NAME: ThomasWileyCloseOf-11-25-2013 :EXPORT_TITLE: Thomas Wiley as Adopted by CSE Committee 25 November 2013 :EXPORT_LATEX_HEADER: \usepackage[margin=1in]{geometry} :EXPORT_OPTIONS: toc:nil :END: Best regards, Robert -- Ro

Re: [O] derived exporter EXPORT_... options

2013-11-27 Thread Robert Klein
Thanks a lot, I was still thinking in old exporter terms. Best regards Robert On 11/26/2013 08:49 PM, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > >> I'm trying to user EXPORT_... options in subtree export in a derived >> exporter. >> >>

Re: [O] http address for cloning org-mode git

2015-09-23 Thread Robert Klein
Hi, Kaushal Modi wrote: > Just to clarify, > > git clone http://orgmode.org/org-mode.git org-mode > > gets stuck at "Cloning into 'org-mode' ..." That's the point where it typically take a couple of minutes to complete for me. Best regards Robert > > But git cloning the mirror http repo w

Re: [O] org export outcomes differ from one attempt to the next

2015-09-29 Thread Robert Klein
Hi, Nicolas Goaziou wrote: > Hello, > > Eric S Fraga writes: > > > Actually, my settings are at the end of the whole 4000+ line file > > so I am not sure what you are suggesting I try. If I delete the > > whole settings subtree, the exports all result in the same LaTeX. > > However, that is

Re: [O] small caps

2015-10-29 Thread Robert Klein
Hi, Matt Price wrote: > do we have a syntax for the "small caps" text attribute in Org? If not, > should we? It is available in odt, html, and latex, and is used in some > bibliographic styles. You can add a link type, e.g.: #+begin_src emacs-lisp (org-add-link-type "fm" nil (lambda (p

Re: [O] orgmode.org is down?

2015-11-29 Thread Robert Klein
Hi, Bastien apparently already restarted it. Thanks a lot, Bastien! Best regards Robert On 11/29/2015 01:40 AM, Ishikawa Takaaki wrote: > Dear Bastien and all, > > @rafiks reported me the official website is > down now. > Port 22 is open, but 80 is filtered. > Ple

Re: [O] Bug: html-preamble doesn't work with a function [8.3.2 (8.3.2-39-gd537a3-elpa @ /home/pillow/.emacs.d/elpa/org-20151123/)]

2015-12-15 Thread Robert Klein
Hi, I only use a function name, e.g. (defun my-html-preamble (options) "my preamble") and (setq org-publish-project-alist '( ("org-notes" :base-directory "~/org/" :base-extension "org" :publishing-directory "~/public_html/" :recursive t

Re: [O] Wrapping section within LaTeX environment

2015-12-15 Thread Robert Klein
Hi On 12/13/2015 03:00 PM, Xavier Garrido wrote: > Dear orgers, > > I would like to wrap a given org section between =\begin,\end= LaTeX > environment. These sections are identified by a special tag :correction: > and to initiate the =\begin= flag I have basically no problem by using > the org-e

Re: [O] Bug: html-preamble doesn't work with a function [8.3.2 (8.3.2-39-gd537a3-elpa /home/pillow/.emacs.d/elpa/org-20151123/)]

2015-12-20 Thread Robert Klein
Hi, On 12/20/2015 11:06 AM, Pillow Kuda Sai wrote: > Nicolas Goaziou nicolasgoaziou.fr> writes: > >> You may try >> >> (org-file-contents "~/Blog/html/preamble.html") > > That worked! Should have figured out that insert-file-contents does not > return a string. Thanks for the help Nicolas! >

[O] Unable to resolve info links during publishing

2015-12-22 Thread Robert Klein
Hi, when publishing a org document (to HTML), info links, e.g. "info:org#Formula syntax for Lisp" throw errors, e.g.: Unable to resolve link "info:org#Formula syntax for Lisp" The link exists and can be followed in the org document by pressing the keys C-c C-o. Org version is 8.3.2 maint. I

Re: [O] Bug in org-lob: Function call adds space to argument string with parenthesis

2015-12-22 Thread Robert Klein
Hi, Nicolas Goaziou wrote: > Hello, > > Tobias Zawada writes: > >> I cannot clone the git-repository as non-developer (permission >> denied). So, trying out the development version is a bit difficult for >> me. > > git clone git://orgmode.org/org-mode.git > > gives access to non-develope

Re: [O] Unable to resolve info links during publishing

2015-12-23 Thread Robert Klein
Hi, On 12/22/2015 01:49 PM, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > >> when publishing a org document (to HTML), info links, e.g. >> "info:org#Formula syntax for Lisp" throw errors, e.g.: >> >> Unable to resolve link "

Re: [O] Org-mode on Github

2016-01-28 Thread Robert Klein
Hi, gongzhitaao wrote: > Hi Awesome Orgmode, > > I got a quick question: why not put org-mode on github? because we have all those, too > > 1. Everyone can see the development process clearly. While currently >we can still do it but github makes it much more easier. git repository on o

Re: [O] "atomic knowledge" modeling tool

2016-02-01 Thread Robert Klein
Hi, luke call wrote: > There's a program that org-mode users (as I have been) specifically > might be interested in, a personal "knowledge manager"/list > manager/organizer/etc called OneModel (Free/AGPL). Instead of > storing data as text, it puts *everything* in a single object model > back

Re: [O] Bug: ox-html.el does not indicate enough languages [8.2.10 (release_8.2.10 @ c:/Users/txiong/emacs-24.5/share/emacs/24.5/lisp/org/)]

2016-03-12 Thread Robert Klein
Hi, thanks for the report. I already began looking into this after my answer on stackexchange. I'll try to make a patch in the next couple of days. I want to run some tests before submitting a patch. You can expect a patch around Tuesday/Wednesday. Best regards Robert Tianxiang Xiong wrot

[O] PATCH: programming language indicators in HTML export

2016-03-14 Thread Robert Klein
Hi, any thoughts about this? Best regards Robert Author: Robert Klein 2016-03-14 14:43:46 Committer: Robert Klein 2016-03-14 14:43:46 Parent: dd9be3a6ea4ff561248b1f6658194fd153b5821c (Fix docstring typo) Branch: maint Follows: release_8.3.4 Precedes: support more programming languages

Re: [O] PATCH: programming language indicators in HTML export

2016-03-14 Thread Robert Klein
Hi Rasmus, Rasmus wrote: > Hi Robert, > > Thanks for the patch. > > Robert Klein writes: > > > any thoughts about this? > > Remind me, would this only show up when hovering above the block with > the mouse when using this setup? Yes. > > The pat

Re: [O] PATCH: programming language indicators in HTML export

2016-03-15 Thread Robert Klein
Hi Rasmus, On Tue, 15 Mar 2016 15:24:00 +0100 Rasmus wrote: [rest deleted] > Robert, do you have a copyright assignment of changes to Emacs? I > think the change is too long (in line count) for a TINYCHANGE. I signed the FSF papers in April 2015. On top of the sheet there is the number "RT:

Re: [O] scheme SRC blocks

2016-03-21 Thread Robert Klein
Hi, Arun Isaac wrote: > > I have an org file with scheme SRC blocks like so. > > #+BEGIN_SRC scheme > (some-code-here) > #+END_SRC > > Every time, I open the org file, I get prompted for the "Scheme > implementation" and I need to choose an implementation (guile, in my > case) before continu

Re: [O] dotfile managment with #+BEGIN_SRC conf code blocks?

2016-04-22 Thread Robert Klein
Hi, Xebar Saram wrote: > hi all > > im looking at this link > https://expoundite.net/guides/dotfile-management > > this sound very nice. yet it says there to put your conf in org > blocks with : #+BEGIN_SRC conf > > yet i cant see this in the org-babel-load-languages or in any contrib > file

Re: [O] PATCH: programming language indicators in HTML export

2016-05-09 Thread Robert Klein
Hi, anyone willing to commit this patch I sent back in march? Best regards Robert On Mon, 14 Mar 2016 15:16:05 +0100 Robert Klein wrote: > > Author: Robert Klein 2016-03-14 14:43:46 > Committer: Robert Klein 2016-03-14 14:43:46 > Parent: dd9be3a6ea4ff561248b1f6658194fd15

Re: [O] PATCH: programming language indicators in HTML export

2016-05-09 Thread Robert Klein
Hi, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > > > anyone willing to commit this patch I sent back in march? > > This patch actually felt through the cracks. Sorry about that. Would > you mind sending it again, using git format-patch so I can ap

Re: [O] PATCH: programming language indicators in HTML export

2016-05-10 Thread Robert Klein
Hi, Rasmus wrote: > Robert Klein writes: > > > Hi, > > > > Nicolas Goaziou wrote: > > > >> Hello, > >> > >> Robert Klein writes: > >> > >> > anyone willing to commit this patch I sent back in march? > >&

Re: [O] org-mode command in a bash script?

2016-06-02 Thread Robert Klein
Hi, On Fri, 03 Jun 2016 06:36:12 +0100 Sharon Kimble wrote: > > How can I run an org-mode command in a bash script please? > > Specifically 'org-latex-export-to-latex'? > > I'm developing my own modular script to choose between, at present, 3 > tex files which have been pre-exported from org-

Re: [O] How to setup a development for org-mode?

2016-06-08 Thread Robert Klein
Hi, On Wed, 08 Jun 2016 06:55:08 + Xi Shen wrote: > Tried that at first, but got: > > Symbol's function definition is void: org-babel--get-vars > > Maybe it is because I am in cygwin environment, so Emacs eval buffers > differently? You are using org-mode 8.3.4 from then maint branch (or

Re: [O] Why no secure code retrieval

2016-07-03 Thread Robert Klein
Hi, I haven't been as active as I'd have liked in this matter... Bastien Guerry wrote: > Hi Ian, > > Ian Barton writes: > > > Not heard of Gogs before, although it looks nice. Another possiblity > > would be gitolite with cgit. Gitolite is very flexible and as a > > consequence can be hard t

Re: [O] [ox-publish, patch] More flexible sitemaps

2016-07-05 Thread Robert Klein
Hi, are those Patches still being worked on? Thanks and best regards Robert On Wed, 01 Jun 2016 17:34:56 +0200 Nicolas Goaziou wrote: > Hello, > > Rasmus writes: > > > This was by far the hardest part... > > Thank you. Some comments follow. > > > +(defun org-publish-find-property (fil

[O] Bug: src block asterisk escaping doesn't work anymore

2016-07-13 Thread Robert Klein
Hi, When exporting a source block, e.g. --- snip (example org file) --- #+begin_src conf Test ,* asterisk in src block #+end_src --- snip --- the escaping of the asterisk does not work. Instead a headline “asterisk in src block” is created. Adding a second comma works but that doesn't w

Re: [O] comment section with latex_header

2015-03-24 Thread Robert Klein
On 03/24/2015 12:36 AM, Nicolas Goaziou wrote: > Hello, > > Andreas Leha writes: > >> If there are `#+latex_header:' entries in a section and that section is >> `COMMENT'ed out, I'd expect the #+latex_header entries to be >> uneffective. As they are when I comment them out one by one as in >> `

Re: [O] comment section with latex_header

2015-03-25 Thread Robert Klein
Hi, On 03/24/2015 10:04 AM, Sebastien Vauban wrote: > Can't we say that a COMMENT'ed subtree is like having all of its > contents commented, line by line? IOW, nothing "accessible"? This would probably break a lot of babel stuff. If there was an option to disable exports for #+NAME:-ed stuff (

Re: [O] comment section with latex_header

2015-03-27 Thread Robert Klein
Hi, On 03/27/2015 12:02 PM, Nicolas Goaziou wrote: > Andreas Leha writes: >> I completely agree. My question was, what a use case would be that >> requires a COMMENT that behaves different from #'ing the individual >> lines (and is not covered by :noexport: already). > > I don't think there is

[O] accessing source block header arguments from exporters

2015-04-10 Thread Robert Klein
Hi, is there a way, to read header arguments to source blocks in the exporters org--src-block funktions? E.g. is there a way to access :firstline in the example below? #+begin_src c++ -n :firstline 23 static struct { char*entity; unsigned char equiv

Re: [O] Help needed on delegating some maintainance tasks (was: Org maintainance)

2015-05-23 Thread Robert Klein
On Sat, 23 May 2015 10:47:49 +0200 Bastien wrote: > Hi all, > > I need help on these maintainance tasks : > > 1. Watching the emacs-diffs mailing list and backport changes on Org >in the local Org repository (2 hours per month). > > 2. Adding public keys on the orgmode.org server for org-m

Re: [O] org-preview-latex-fragment ignores \includes in the LATEX_HEADER

2015-05-27 Thread Robert Klein
Hi, On Wed, 27 May 2015 15:02:02 +0200 Stefan Otte wrote: > Hey, > > I'm using orgmode with lots of LaTeX for equations. A typical document > start with > > #+TITLE: Some Title > #+LaTeX_HEADER: \include{commands} > > commands.tex contains commands like: > \newcommand{\RRR}{{\mathbb{R}}

  1   2   3   >