Re: [O] convert a simple list of lines each to a orgmode header

2015-09-30 Thread Xebar Saram
C-c * is perfect!

thx so much

z

On Tue, Sep 29, 2015 at 11:00 AM, Michael Strey  wrote:

> On Mo, 2015-09-28 at 18:52, Xebar Saram wrote:
>
> > im looking for a simple way to convert a simple list of lines (i can
> > mark it first if needed) each to a orgmode header
> > anyone has such a way?
>
> Mark the region and press C-c *.
>
> --
> Michael Strey
> http://www.strey.biz * https://twitter.com/michaelstrey
>
>
>


Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Nick Dokos
Rainer M Krug  writes:

> Exporting to latex of the simple file below results in an error:
>
> ,
> | mapcar: Symbol’s value as variable is void: compile
> `
>

Can't reproduce it.

> #+LATEX_CLASS: article
> #+LATEX_CLASS_OPTIONS:
> #+LATEX_HEADER:
> #+LATEX_HEADER_EXTRA:
> #+DESCRIPTION:
> #+KEYWORDS:
> #+SUBTITLE:
> #+LATEX_COMPILER: pdflatex
> #+DATE: \today
>
> * Emacs version
> #+begin_src emacs-lisp 
>  (emacs-version)
> #+end_src
>
> #+RESULTS:
> : GNU Emacs 25.0.50.1 (x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 
> 10.10.5 (Build 14F27))
> :  of 2015-09-29
>
> #+begin_src emacs-lisp
>  (org-version)
> #+end_src
>
> #+RESULTS:
> : 8.3.1
>
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @ 
> /Users/rainerkrug/.emacs.d/org-mode/lisp/)
>
> PS: how do I get this output from a source block above?
>

#+BEGIN_SRC emacs-lisp
(org-version nil t)
#+END_SRC

#+RESULTS:
: Org-mode version 8.3.1 (release_8.3.1-48-g3add78 @ 
/home/nick/elisp/org-mode/lisp/)

>

> ,
> | Debugger entered--Lisp error: (void-variable compile)
> |   #[(pkg) "<\205..\3038\211.\205..\304\n <\203.. \202..
> | C\"?)?\205\".\207" [pkg third compile 3 member-ignore-case]
^^^
This is the problem but it's not clear to me where it's coming from.
Try with an uncompiled org perhaps? See

(info "(org) Feedback")

for how to do that.

> | 4](("AUTO" "inputenc" t ("pdflatex")))
> |   mapcar(#[(pkg) "<\205..\3038\211.\205..\304\n <\203..
> | \202.. C\"?)?\205\".\207" [pkg third compile 3
> | member-ignore-case] 4] (("AUTO" "inputenc" t ("pdflatex")) ("T1"
> | "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) (""
> | "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem"
> | "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) (""
> | "capt-of" nil) ("" "hyperref" nil)))
> |   org-latex--remove-packages((("AUTO" "inputenc" t ("pdflatex"))
> |...

BTW, I cannot find an org-latex--remove-packages function in my org
installation.

Nick




Re: [O] bug: latex exporter

2015-09-30 Thread Rainer M Krug


Envoyé de mon iPhone

> Le 29 sept. 2015 à 11:37, Charles Millar  a écrit :
> 
> Since Monday morning (New York time) I have not been able to export to 
> pdflatex (worked OK the night before). Instead the message buffer reads
> 
> symbol's value as variable is void - compile
> 
> GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of 2014-03-07 on 
> lamiak, modified by Debian
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @ 
> /usr/share/emacs/site-lisp/org-mode/lisp/)
> 

I can confirm this - please see my other post for an example. 

Rainer

> Charlie Millar
> 



Re: [O] Inhibit HTML-Tags in markdown export

2015-09-30 Thread Nicolas Goaziou
Hello,

timor  writes:

> Is there a way to export to Markdown without any embedded HTML?

Short answer: no. What do you need to remove ?

Regards,

-- 
Nicolas Goaziou



Re: [O] bug: latex exporter

2015-09-30 Thread Charles Millar

I see that Rasmus has fixed this. Thank you.

On 09/29/2015 03:00 PM, Rainer M Krug wrote:


Envoyé de mon iPhone


Le 29 sept. 2015 à 11:37, Charles Millar  a écrit :

Since Monday morning (New York time) I have not been able to export to pdflatex 
(worked OK the night before). Instead the message buffer reads

symbol's value as variable is void - compile

GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of 2014-03-07 on 
lamiak, modified by Debian
Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @ 
/usr/share/emacs/site-lisp/org-mode/lisp/)


I can confirm this - please see my other post for an example.

Rainer


Charlie Millar







Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Nick Dokos
Rainer M Krug  writes:

> Exporting to latex of the simple file below results in an error:
>
> ,
> | mapcar: Symbol’s value as variable is void: compile
> `
>

Rasmus just fixed it:

commit 679adcaa64613c821b38cd1d34b081640315293a
Author: Rasmus 
Date:   Tue Sep 29 19:39:01 2015 +0200

ox-latex: Fix typo in 1e4b7e4bec6b6d4351b1e23872b6

* ox-latex.el (org-latex--remove-packages): Fix typo.

Nick




Re: [O] [patch] support latex variants

2015-09-30 Thread Grant Rettke
On Sun, Sep 27, 2015 at 4:51 PM, Rasmus  wrote:
> Pushed.
> --
> May contains speling mistake

Cool! Thanks!



Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Rasmus
Hi Rainer,

Thanks for the report.

Rainer M Krug  writes:

> Exporting to latex of the simple file below results in an error:

How embarrassing!  Hopefully there are no more typos in the choice of
latex compiler changeset...

Rasmus

-- 
It was you, Jezebel, it was you




Re: [O] bug: latex exporter

2015-09-30 Thread Nick Dokos
Charles Millar  writes:

> Since Monday morning (New York time) I have not been able to export to
> pdflatex (worked OK the night before). Instead the message buffer
> reads
>
> symbol's value as variable is void - compile
>
> GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of
> 2014-03-07 on lamiak, modified by Debian
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @
> /usr/share/emacs/site-lisp/org-mode/lisp/)
>
> Charlie Millar

Rasmus just fixed it:

commit 679adcaa64613c821b38cd1d34b081640315293a
Author: Rasmus 
Date:   Tue Sep 29 19:39:01 2015 +0200

ox-latex: Fix typo in 1e4b7e4bec6b6d4351b1e23872b6

* ox-latex.el (org-latex--remove-packages): Fix typo.

Nick




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

2015-09-30 Thread Nicolas Goaziou
Hello,

Robert Klein  writes:

> is there another way to get property values during export (i use them
> in #+LaTeX_Header: lines).

During export, all property values are accessible through communication
channel (usually INFO argument), e.g.,

  (plist-get info :latex-header)
  (plist-get info :latex-header-extra)

Regards,


-- 
Nicolas Goaziou



Re: [O] bug: latex exporter

2015-09-30 Thread Kaushal Modi
Rasmus has fixed this in
http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=679adcaa64613c821b38cd1d34b081640315293a
.


--
Kaushal Modi

On Tue, Sep 29, 2015 at 5:37 AM, Charles Millar  wrote:

> Since Monday morning (New York time) I have not been able to export to
> pdflatex (worked OK the night before). Instead the message buffer reads
>
> symbol's value as variable is void - compile
>
> GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of 2014-03-07
> on lamiak, modified by Debian
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @
> /usr/share/emacs/site-lisp/org-mode/lisp/)
>
> Charlie Millar
>
>


Re: [O] bug: latex exporter

2015-09-30 Thread Rasmus
Hi Charles,

Charles Millar  writes:

> Since Monday morning (New York time) I have not been able to export to
> pdflatex (worked OK the night before). Instead the message buffer
> reads

Yeah, sorry about the inconvenience!

Please try to update to 679adcaa64613c821b38cd1d34b081640315293a (current
head) and let me know if this does not solve the issue.

Rasmus

-- 
Evidence suggests Snowden used a powerful tool called monospaced fonts




Re: [O] LaTeX equation align in orgmode?

2015-09-30 Thread Nicolas Goaziou
Hello,

Rainer M Krug  writes:

> I would need in a document several equations which are aligned as in 
> http://tex.stackexchange.com/a/167908/6941
>
> How can I use the following latex formula in orgmode?
>
> \begin{proof} The proof is a follows: 
> \begin{align}
> (x+y)^3&=(x+y)(x+y)^2\\
>&=(x+y)(x^2+2xy+y^2)\\
>&=x^3+3x^2y+3xy^3+x^3.\qedhere
> \end{align}
> \end{proof}
>
> I have effectrively
>
> #+LATEX_HEADER: \usepackage{amsmath}
>
> * The equations
>
> \begin{equation}
> \begin{align}
> (x+y)^3&=(x+y)(x+y)^2\\
>&=(x+y)(x^2+2xy+y^2)\\
>&=x^3+3x^2y+3xy^3+x^3.\qedhere
> \end{align}
> \end{equation}
>
> but with latex fragment preview (C-c C-x C-l) I only get an empty frame.
>
> How can use this align environment in org?

Make sure to C-c C-c on the keyword.

Regards,

-- 
Nicolas Goaziou



Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Eric S Fraga
On Tuesday, 29 Sep 2015 at 11:11, Rainer M Krug wrote:
> Exporting to latex of the simple file below results in an error:
>
> ,
> | mapcar: Symbol’s value as variable is void: compile
> `

Works for me... albeit in a slightly older version of org that I have on
my laptop.

> PS: how do I get this output from a source block above?

(org-version nil t)
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.5.1, Org release_8.3.1-203-g4ca3d3



[O] Latex compilation broken on orgmode master?

2015-09-30 Thread Kaushal Modi
Hi,

Doing C-c C-e l o on any org file gives me the error

Symbol's value as variable is void: compile

If I use the latest org-mode-plus-contrib package from org elpa, latex
compilation works fine.

Can anyone using org git master confirm this?

--
Kaushal Modi


Re: [O] SOLVED: LaTeX equation align in orgmode?

2015-09-30 Thread Andreas Leha
Rainer M Krug  writes:
> Eric S Fraga  writes:
>
>> On Monday, 28 Sep 2015 at 21:10, Rainer M Krug wrote:
>>> Hi
>>>
>>> I would need in a document several equations which are aligned as in 
>>> http://tex.stackexchange.com/a/167908/6941
>>
>> I use align all the time.
>>
>>> How can I use the following latex formula in orgmode?
>>>
>>> \begin{proof} The proof is a follows: 
>>> \begin{align}
>>> (x+y)^3&=(x+y)(x+y)^2\\
>>>&=(x+y)(x^2+2xy+y^2)\\
>>>&=x^3+3x^2y+3xy^3+x^3.\qedhere
>>> \end{align}
>>> \end{proof}
>>
>> Where is proof defined? You may need to add specific packages to
>> org-latex-packages-alist.
>
> The proof and the ".\qedhere"
>
> Stupid typos.
>
>>
>> In any case, I find that it is safer generally to enclose all LaTeX
>> fragments in a LaTeX block: #+begin_latex ... #+end_latex.
>
> Good idea - but then the preview does not work anymore?
>

see http://orgmode.org/worg/org-hacks.html#orgheadline91

Best,
Andreas




Re: [O] convert a simple list of lines each to a orgmode header

2015-09-30 Thread Nick Dokos
Kaushal Modi  writes:

> I realized that the default binding `C-c *` works only on the current line, 
> not the whole selection (and the same applies to the opposite `C-c -`).
>
> It would be great to have those commands work over a region too.
>

I don't think that's right - at least, when I tried it with a region, it
worked. I just didn't know about it (or, more likely, didn't remember it)
before Christian mentioned it.

The docstring for the function says:

,
| org-toggle-heading is an interactive Lisp function in
| ‘../org-mode/lisp/org.el’.
| 
| (org-toggle-heading  NSTARS)
| 
| Convert headings to normal text, or items or text to headings.
| If there is no active region, only convert the current line.
`

Is transient mark mode enabled? I think it's enabled by default
nowadays, but maybe you turned it off?

Nick






Re: [O] :EXPORT tags in property drawer not recognised in org 8.3

2015-09-30 Thread Rasmus
Hi Zhihao,

Zhihao Ding  writes:

> Dear Org experts,
>
> I am having some problems with exporting in org 8.3.1. I've been using
> :PROPERTIES to control export of a heading, e.g.
>
> :PROPERTIES:
> :EXPORT_LaTeX_HEADER+: \usepackage{array}
> :EXPORT_LaTeX_HEADER+: \usepackage{tikz}
> :EXPORT_LATEX_HEADER+: \usepackage{geometry}
> :EXPORT_TITLE: title
> :EXPORT_FILE_NAME: file.pdf
> :END:
>
> However I realised that they are not correctly recognised in the latex
> output. Any advice?


Could you be more specific about what is wrong? In a quick test I got the
requested packages and title.

Could you try 8.3.2 or master to see if the problem persists.

Thanks,
Rasmus

-- 
ツ




Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Kaushal Modi
Rasmus has fixed this in
http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=679adcaa64613c821b38cd1d34b081640315293a
.



--
Kaushal Modi

On Tue, Sep 29, 2015 at 5:11 AM, Rainer M Krug  wrote:

>
> Exporting to latex of the simple file below results in an error:
>
> ,
> | mapcar: Symbol’s value as variable is void: compile
> `
>
> --8<---cut here---start->8---
> #+LATEX_CLASS: article
> #+LATEX_CLASS_OPTIONS:
> #+LATEX_HEADER:
> #+LATEX_HEADER_EXTRA:
> #+DESCRIPTION:
> #+KEYWORDS:
> #+SUBTITLE:
> #+LATEX_COMPILER: pdflatex
> #+DATE: \today
>
> * Emacs version
> #+begin_src emacs-lisp
>  (emacs-version)
> #+end_src
>
> #+RESULTS:
> : GNU Emacs 25.0.50.1 (x86_64-apple-darwin14.5.0, NS appkit-1348.17
> Version 10.10.5 (Build 14F27))
> :  of 2015-09-29
>
> #+begin_src emacs-lisp
>  (org-version)
> #+end_src
>
> #+RESULTS:
> : 8.3.1
>
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @
> /Users/rainerkrug/.emacs.d/org-mode/lisp/)
>
> PS: how do I get this output from a source block above?
> --8<---cut here---end--->8---
>
>
> ,
> | Debugger entered--Lisp error: (void-variable compile)
> |   #[(pkg) " <\205. \303 8\211.\205. \304\n<\203.  \202.
>  C\"?)?\205\". \207" [pkg third compile 3 member-ignore-case] 4](("AUTO"
> "inputenc" t ("pdflatex")))
> |   mapcar(#[(pkg) " <\205. \303 8\211.\205. \304\n <\203.  \202.
>  C\"?)?\205\". \207" [pkg third compile 3 member-ignore-case] 4] (("AUTO"
> "inputenc" t ("pdflatex")) ("T1" "fontenc" t ("pdflatex")) ("" "graphicx"
> t) ("" "grffile" t) ("" "longtable" nil) ("" "wrapfig" nil) ("" "rotating"
> nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb"
> t) ("" "capt-of" nil) ("" "hyperref" nil)))
> |   org-latex--remove-packages((("AUTO" "inputenc" t ("pdflatex")) ("T1"
> "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) (""
> "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem"
> t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) ("" "capt-of" nil)
> ("" "hyperref" nil)) (:export-options nil :input-buffer "test.org"
> :input-file "/Users/rainerkrug/tmp/test.org" :latex-class "article"
> :latex-class-options "" :latex-header "" :latex-header-extra ""
> :description nil :keywords nil :subtitle nil :latex-active-timestamp-format
> "\\textit{%s}" :latex-caption-above (table) :latex-classes (("article"
> "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
> "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}")
> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report"
> "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}")
> ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
> "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}"
> ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" .
> "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
> :latex-default-figure-position "htb" :latex-default-table-environment
> "tabular" :latex-default-table-mode table :latex-diary-timestamp-format
> "\\textit{%s}" :latex-footnote-separator "\\textsuperscript{,}\\,"
> :latex-format-drawer-function (lambda (name contents) contents)
> :latex-format-headline-function org-latex-format-headline-default-function
> :latex-format-inlinetask-function
> org-latex-format-inlinetask-default-function :latex-hyperref-template
> "\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},\n
> pdfsubject={%d},\n pdfcreator={%c}, \n pdflang={%L}}\n"
> :latex-image-default-height "" :latex-image-default-option ""
> :latex-image-default-width ".9\\linewidth" ...))
> |   org-latex--make-header((:export-options nil :input-buffer "test.org"
> :input-file "/Users/rainerkrug/tmp/test.org" :latex-class "article"
> :latex-class-options "" :latex-header "" :latex-header-extra ""
> :description nil :keywords nil :subtitle nil :latex-active-timestamp-format
> "\\textit{%s}" :latex-caption-above (table) :latex-classes (("article"
> "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
> "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}")
> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report"
> "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}")
> ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
> "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}"
> ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" .
> "\\subsection*{%s}") ("\\subsubsection{%s}" . 

Re: [O] Latex compilation broken on orgmode master?

2015-09-30 Thread Kaushal Modi
​​
Thanks for fixing this (
http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=679adcaa64613c821b38cd1d34b081640315293a
)


--
Kaushal Modi

On Tue, Sep 29, 2015 at 11:18 AM, Kaushal Modi 
wrote:

> Hi,
>
> Doing C-c C-e l o on any org file gives me the error
>
> Symbol's value as variable is void: compile
>
> If I use the latest org-mode-plus-contrib package from org elpa, latex
> compilation works fine.
>
> Can anyone using org git master confirm this?
>
> --
> Kaushal Modi
>


Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Rainer M Krug
Kaushal Modi  writes:

> Rasmus has fixed this in
> http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=679adcaa64613c821b38cd1d34b081640315293a

Working - thanks

> .
>
>
>
> --
> Kaushal Modi
>
> On Tue, Sep 29, 2015 at 5:11 AM, Rainer M Krug  wrote:
>
>>
>> Exporting to latex of the simple file below results in an error:
>>
>> ,
>> | mapcar: Symbol’s value as variable is void: compile
>> `
>>
>> --8<---cut here---start->8---
>> #+LATEX_CLASS: article
>> #+LATEX_CLASS_OPTIONS:
>> #+LATEX_HEADER:
>> #+LATEX_HEADER_EXTRA:
>> #+DESCRIPTION:
>> #+KEYWORDS:
>> #+SUBTITLE:
>> #+LATEX_COMPILER: pdflatex
>> #+DATE: \today
>>
>> * Emacs version
>> #+begin_src emacs-lisp
>>  (emacs-version)
>> #+end_src
>>
>> #+RESULTS:
>> : GNU Emacs 25.0.50.1 (x86_64-apple-darwin14.5.0, NS appkit-1348.17
>> Version 10.10.5 (Build 14F27))
>> :  of 2015-09-29
>>
>> #+begin_src emacs-lisp
>>  (org-version)
>> #+end_src
>>
>> #+RESULTS:
>> : 8.3.1
>>
>> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @
>> /Users/rainerkrug/.emacs.d/org-mode/lisp/)
>>
>> PS: how do I get this output from a source block above?
>> --8<---cut here---end--->8---
>>
>>
>> ,
>> | Debugger entered--Lisp error: (void-variable compile)
>> |   #[(pkg) " <\205. \303 8\211.\205. \304\n<\203.  \202.
>>  C\"?)?\205\". \207" [pkg third compile 3 member-ignore-case] 4](("AUTO"
>> "inputenc" t ("pdflatex")))
>> |   mapcar(#[(pkg) " <\205. \303 8\211.\205. \304\n <\203.  \202.
>>  C\"?)?\205\". \207" [pkg third compile 3 member-ignore-case] 4] (("AUTO"
>> "inputenc" t ("pdflatex")) ("T1" "fontenc" t ("pdflatex")) ("" "graphicx"
>> t) ("" "grffile" t) ("" "longtable" nil) ("" "wrapfig" nil) ("" "rotating"
>> nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb"
>> t) ("" "capt-of" nil) ("" "hyperref" nil)))
>> |   org-latex--remove-packages((("AUTO" "inputenc" t ("pdflatex")) ("T1"
>> "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) (""
>> "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem"
>> t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) ("" "capt-of" nil)
>> ("" "hyperref" nil)) (:export-options nil :input-buffer "test.org"
>> :input-file "/Users/rainerkrug/tmp/test.org" :latex-class "article"
>> :latex-class-options "" :latex-header "" :latex-header-extra ""
>> :description nil :keywords nil :subtitle nil :latex-active-timestamp-format
>> "\\textit{%s}" :latex-caption-above (table) :latex-classes (("article"
>> "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}")
>> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
>> "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}")
>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report"
>> "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}")
>> ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}")
>> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
>> "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}"
>> ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}")
>> ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" .
>> "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
>> :latex-default-figure-position "htb" :latex-default-table-environment
>> "tabular" :latex-default-table-mode table :latex-diary-timestamp-format
>> "\\textit{%s}" :latex-footnote-separator "\\textsuperscript{,}\\,"
>> :latex-format-drawer-function (lambda (name contents) contents)
>> :latex-format-headline-function org-latex-format-headline-default-function
>> :latex-format-inlinetask-function
>> org-latex-format-inlinetask-default-function :latex-hyperref-template
>> "\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},\n
>> pdfsubject={%d},\n pdfcreator={%c}, \n pdflang={%L}}\n"
>> :latex-image-default-height "" :latex-image-default-option ""
>> :latex-image-default-width ".9\\linewidth" ...))
>> |   org-latex--make-header((:export-options nil :input-buffer "test.org"
>> :input-file "/Users/rainerkrug/tmp/test.org" :latex-class "article"
>> :latex-class-options "" :latex-header "" :latex-header-extra ""
>> :description nil :keywords nil :subtitle nil :latex-active-timestamp-format
>> "\\textit{%s}" :latex-caption-above (table) :latex-classes (("article"
>> "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}")
>> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
>> "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}")
>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report"
>> "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}")
>> ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}")
>> ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" .
>> "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}"

Re: [O] "Symbol’s value as variable is void: compile" when export to latex

2015-09-30 Thread Suvayu Ali
On Tue, Sep 29, 2015 at 11:11:09AM +0200, Rainer M Krug wrote:
> 
> Exporting to latex of the simple file below results in an error:
> 
> ,
> | mapcar: Symbol’s value as variable is void: compile
> `

 [...chomp...chomp...chomp...]

> #+LATEX_COMPILER: pdflatex

Are you trying to use Rasmus's latex variant facility?  I'll update and
test soon.

Cheers,

-- 
Suvayu

Open source is the future. It sets us free.



Re: [O] bug: latex exporter

2015-09-30 Thread Suvayu Ali
On Tue, Sep 29, 2015 at 05:37:30AM -0400, Charles Millar wrote:
> Since Monday morning (New York time) I have not been able to export to
> pdflatex (worked OK the night before). Instead the message buffer reads
> 
> symbol's value as variable is void - compile
> 
> GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7) of 2014-03-07 on
> lamiak, modified by Debian
> Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @
> /usr/share/emacs/site-lisp/org-mode/lisp/)

You do not provide enough information.  Did you reload Org?  How do you
export?  Did you try to produce a backtrace?  What does that show?
Maybe try with minimal settings?

Please see: http://orgmode.org/manual/Feedback.html#Feedback

-- 
Suvayu

Open source is the future. It sets us free.



[O] Release Org 8.3.2

2015-09-30 Thread Bastien
Hi all,

Org 8.3.2, a bugfix release is out.

Enjoy!

-- 
 Bastien




Re: [O] Modification dates in Worg

2015-09-30 Thread Ista Zahn
Hi Machael,

Well, you're welcome to add modification dates to the worg files. IMO
this won't help much, since some sections of the same file may be up
to date while other sections may be out of date. Something like
git-blame is needed I think in order to get a sense of how up-to-date
a particular section might be.

Best,
Ista

On Tue, Sep 29, 2015 at 4:06 AM, Michael Strey  wrote:
> On Mo, 2015-09-28 at 17:04, Ista Zahn wrote:
>> I've created a worg mirror on github at
>> https://github.com/izahn/worg-mirror/, so you can see the modification
>> dates via git-blame.
>
> Thank you.  That will help me and maybe some other people who follow this
> thread.  Unfortunately it does not solve the general problem.  Most
> people access Worg via HTML.
>
> --
> Michael Strey
> http://www.strey.biz * https://twitter.com/michaelstrey
>
>