Re: [O] LaTeX equation align in orgmode?

2015-09-28 Thread Andreas Leha
Hi Rainer,

Rainer M Krug  writes:
> Hi
>
> 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?

This seems to a problem with your setup of preview latex.  It
should work just fine.

For me the following org file works as expected -- also with
previewing the equation.

--8<---cut here---start->8---
#+LaTeX_header: \usepackage{amsmath} %% needed explicitely for org-preview-latex


* Test align

\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}
--8<---cut here---end--->8---

I do not seem to have any special setup for previewing latex,
though...

Sorry to be of no further help.

Regards,
Andreas




Re: [O] undefined symbol 'org-export-create-backend' when calling org-plot/gnuplot

2015-09-28 Thread Nick Dokos
Dave Marquardt <davem...@linux.vnet.ibm.com> writes:

> I attempted to plot a table after installing the 20150928 ELPA package,
> and got
>
> Debugger entered--Lisp error: (void-function org-export-create-backend)
>   org-export-create-backend(:parent org :transcoders ((table lambda
> (table contents info) (concat nil contents nil)) (table-row lambda
> (row contents info) (if (eq (org-element-property :type row) (quote
> rule)) nil (let ((headerp (org-export-table-row-in-header-p row info))
> (lastp (not (org-export-get-next-element row info))) (last-header-p
> (org-export-table-row-ends-header-p row info))) (when contents (cond
> nil nil nil (t (concat ...))) (table-cell lambda (cell contents
> info) (let ((headerp (org-export-table-row-in-header-p
> (org-export-get-parent-element cell) info)) (column (1+ (cdr
> (org-export-table-cell-address cell info) nil (when contents nil
> (cond nil (t (setq contents (funcall ... contents) (if (or nil
> (plist-get info :orgtbl-ignore-sep) (not (org-export-get-next-element
>   cell info))) contents (concat contents "" (macro lambda (m c i) 
> (org-element-macro-interpreter m nil
>   orgtbl-to-generic((("*Total time*" "*4:11*" "" "100.0") ("Time"
> "4:11" "" "100.0") ("CMVC" "" "0:21" "8.4") ("Connections" "" "0:23"
> "9.2") ("DAT" "" "0:02" "0.8") ("Defects" "" "1:24" "33.5")
> ("developerWorks" "" "0:02" "0.8") ("Mail" "" "0:39" "15.5") ("RDS" ""
> "0:06" "2.4") ("SDB" "" "0:01" "0.4") ("SDN" "" "0:01" "0.4") ("SMC-R"
> "" "0:01" "0.4") ("Startup" "" "0:27" "10.8") ("TCP" "" "0:02" "0.8")
> ("Team" "" "0:42" "16.7")) (:sep " " :fmt org-plot-quote-tsv-field
> :plot-type 2d :with histograms :ind 1 :labels ("Headline" "Time" ""
> "%") :set ("style fill solid") :deps (4)))
>   org-plot/gnuplot-to-data((("*Total time*" "*4:11*" "" "100.0")
> ("Time" "4:11" "" "100.0") ("CMVC" "" "0:21" "8.4") ("Connections" ""
> "0:23" "9.2") ("DAT" "" "0:02" "0.8") ("Defects" "" "1:24" "33.5")
> ("developerWorks" "" "0:02" "0.8") ("Mail" "" "0:39" "15.5") ("RDS" ""
> "0:06" "2.4") ("SDB" "" "0:01" "0.4") ("SDN" "" "0:01" "0.4") ("SMC-R"
> "" "0:01" "0.4") ("Startup" "" "0:27" "10.8") ("TCP" "" "0:02" "0.8")
> ("Team" "" "0:42" "16.7")) "/tmp/org-plot18132EYn" (:plot-type 2d
> :with histograms :ind 1 :labels ("Headline" "Time" "" "%") :set
> ("style fill solid") :deps (4)))
>   org-plot/gnuplot()
>   call-interactively(org-plot/gnuplot record nil)
>   command-execute(org-plot/gnuplot record)
>   execute-extended-command(nil "org-plot/gnuplot")
>   call-interactively(execute-extended-command nil nil)
>
> org-table.el has a declare-function call that points to a "org-export"
> file, but I don't find such a file in either the code installed by ELPA
> or the daily snapshot:
>
> (declare-function org-export-create-backend "org-export" ( rest))
>
> Calling org-plot/gnuplot worked last week, before I upgraded to 20150928.
>
> -Dave

This sounds like a mixed installation: different versions of org
installed and you are picking up bits from both of them.
Search the list for "mixed installation", e.g. check out

http://thread.gmane.org/gmane.emacs.orgmode/68240/focus=68265

and the link therein:

http://orgmode.org/worg/org-faq.html#mixed-install


Nick




Re: [O] Beamer :BEAMER_envargs: [allowframebreaks] not working

2015-09-28 Thread Andreas Leha
Hi Jeremie,

Jeremie Juste  writes:
> Hello,
>
> It's my first post here finally. Most of my questions were answered
> before by you.:). I have the lastest version of org mode and search
> with the best of my abilities if any had the same issue but couldn't
> find anything.
>
> I have some difficulty with the org-mode variable :BEAMER_envargs.
>
> It does not allow frame break. There was a post on SO about the issue
>
> http://stackoverflow.com/questions/29384107/org-mode-framebreak-does-not-work-with-label-option-in-exported-beamer
>
> As a fix they recommend the following fix
> (setq org-beamer-frame-default-options "allowframebreaks,label=")
>
> This doesn't do the job and on the tex file it produces something like
> \begin{frame}[allowframebreaks,label=,label={sec:orgheadline1}]{part 1}
>
> I tried with
> (setq org-beamer-frame-default-options "allowframebreaks")
> but the results were not better,
>
>
> Finally removing label={sec:orgheadline1} did the job.
> \begin{frame}[allowframebreaks]{part 1}
>
> So I suspect there is a problem with label={sec:orgheadline1}.
>
>
> Can someone help please?
>

(Untested!)

I suspect that this is due to org-latex-prefer-user-labels being
nil.  This will make Org mode inserting auto-generated labels.
Setting this to sth non-nil might work here.

HTH,
Andreas




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

2015-09-28 Thread Nick Dokos
Xebar Saram  writes:

> Hi all
>
> 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?
>

Maybe I'm missing something, but can't you just add asterisks in front
of each line? Maybe with a keyboard macro? Or even a sed script?

There's a reason that org files are plain text.

Nick




Re: [O] Exporter aborts upon encountering even one unresolvable link

2015-09-28 Thread Nick Dokos
thomas  writes:

> just my 2 cents: I think the new error message is very nice and helpful, 
> UNLESS you work on a bigger document, narrow your buffer and try to export 
> the narrowed portion of the
> document.
> This does not work anymore.
>
> I can agree with D. C. Toedt that it would be nice to have an easy way to 
> customize this behaviour of the exporter.
>

See the thread with title "[RFC] Draft mode":

http://thread.gmane.org/gmane.emacs.orgmode/101542

> - thomas
>
> On 25.09.2015 04:50, D. C. Toedt wrote:
>
> I just updated to 8.3.1 from 8.3beta (from git).  That appears to have 
> been a terrible mistake on my part.
>
> From this thread I see that the exporter now throws an error and aborts 
> when it encounters an unresolvable link.  That makes things really, REALLY 
> difficult.  It means I can't get
> a complete, working export to HTML (in my case) until all link problems 
> are fixed in my 22KLOC .org file (which I use to generate 
> http://www.CommonDraft.org/index.html).  That
> seems EXTREMELY suboptimal. (I'm trying to be tactful here.)
>
> Worse, the exporter doesn't even generate a list of unresolvable links 
> before aborting.  That means the only way that I can find and fix busted 
> links (so far as I know) is to do an
> export --- which takes several minutes given the large file  --- and have 
> the export abort on a single link. Then I fix that one link, export again, 
> and have it abort again.
> Repeat.  Aaaargg.
>
> I started looking at the hooks, as suggested in a message in the previous 
> thread, but I'm not nearly skilled enough in elisp to be able to do anything 
> useful.
>
> Any suggestions?
>
> D. C. Toedt III  (My last name is pronounced "Tate"; I go by "D. C.," 
> which stands for Dell Charles) 
> Attorney & neutral arbitrator -- tech contracts & IP  |  Adjunct 
> professor, University of Houston Law Center
> ​ Author, ​​ ​Common Draft desk book of contract clauses & research notes 
>   |  LinkedIn: dctoedt   |   Calendar (redacted) 
> E: d...@toedt.com    O: +1 (713) 364-6545    C: +1 (713) 516-8968
> ​ ​
>     
> ​
> Houston, Texas (Central time zone)
>
> Unless expressly stated otherwise, this message is not intended 
> to serve as assent to an agreement or other document, whether or not
> attached to this message.
>

-- 
Nick




Re: [O] Modification dates in Worg (was: babel header arguments tutorial?)

2015-09-28 Thread Ista Zahn
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. For example,
https://github.com/izahn/worg-mirror/blame/master/org-contrib/babel/languages.org
shows modification of the babel languages page.

Best,
Ista

On Sun, Sep 27, 2015 at 4:22 AM, Michael Strey  wrote:
> On Sa, 2015-09-26 at 23:39, Charles C. Berry wrote:
>
> [...]
>
>> The source is several years old and filed under the FIXME worg
>> directory.
>
> Both things are not visible on the page.  In general there seems to be a
> lot of outdated stuff on Worg.  It would be helpful to have at least the
> date of last modification on the pages.
>
> --
> Michael Strey
> http://www.strey.biz * https://twitter.com/michaelstrey
>
>



Re: [O] Exporter aborts upon encountering even one unresolvable link

2015-09-28 Thread thomas
just my 2 cents: I think the new error message is very nice and helpful, 
UNLESS you work on a bigger document, narrow your buffer and try to 
export the narrowed portion of the document.

This does not work anymore.

I can agree with D. C. Toedt that it would be nice to have an easy way 
to customize this behaviour of the exporter.


- thomas


On 25.09.2015 04:50, D. C. Toedt wrote:
I just updated to 8.3.1 from 8.3beta (from git).  That appears to have 
been a terrible mistake on my part.


From this thread 
 
I see that the exporter now throws an error and aborts when it 
encounters an unresolvable link. That makes things really, REALLY 
difficult.  It means I can't get a complete, working export to HTML 
(in my case) until all link problems are fixed in my 22KLOC .org file 
(which I use to generate http://www.CommonDraft.org/index.html 
). That seems EXTREMELY 
suboptimal. (I'm trying to be tactful here.)


Worse, the exporter doesn't even generate a list of unresolvable links 
before aborting. That means the only way that I can find and fix 
busted links (so far as I know) is to do an export --- which takes 
several minutes given the large file  --- and have the export abort on 
a single link. Then I fix that one link, export again, and have it 
abort again. Repeat.  Aaaargg.


I started looking at the hooks, as suggested in a message in the 
previous thread, but I'm not nearly skilled enough in elisp to be able 
to do anything useful.


Any suggestions?


*D. C. Toedt III */(My last name is pronounced "Tate"; I go by "D. 
C.," which stands for Dell Charles//) /
Attorney & neutral arbitrator -- tech contracts & IP  | Adjunct 
professor, University of Houston Law Center
​ Author, ​​ ​Common Draft **desk book of 
contract clauses & research notes   | LinkedIn:dctoedt 
   |Calendar 
(redacted) 

E: d...@toedt.com  O: +1 (713) 364-6545 C: +1 (713) 
516-8968

​ ​
​
Houston, Texas (Central time zone)

Unless expressly stated otherwise, this message is not intended
to serve as assent to an agreement or other document, whether or not
attached to this message.






[O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-09-28 Thread Jan Seeger

* org-capture.el (org-capture-refile): Call finalize first, then
  refile. If the capture buffer needs to be killed afterwards, kill
  after refiling.

Refiling before finalizing led to an incorrect cursor position during
refile. Since adjusting the buffer position and bounds for the refiled
entry is difficult, I reverted the org-capture-refile function to its
original order of finalizing and then refiling. However, this leads to a
bug with killing the buffer on capture, described in
http://permalink.gmane.org/gmane.emacs.orgmode/78027/. To work around
this, now the :kill-buffer flag is cleared before calling finalize, and
the capture buffer is killed after org-refile is called.

TINYCHANGE
---
 lisp/org-capture.el | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lisp/org-capture.el b/lisp/org-capture.el
index 67dc319..b1cda3d 100644
--- a/lisp/org-capture.el
+++ b/lisp/org-capture.el
@@ -792,7 +792,10 @@ already gone.  Any prefix argument will be passed to the 
refile command."
  "Refiling from a capture buffer makes only sense for `entry'-type 
templates"))
   (let ((pos (point))
(base (buffer-base-buffer (current-buffer)))
-   (org-refile-for-capture t))
+   (org-refile-for-capture t)
+   (kill-buffer (org-capture-get :kill-buffer 'local)))
+(org-capture-put :kill-buffer nil)
+(org-capture-finalize)
 (save-window-excursion
   (with-current-buffer (or base (current-buffer))
(save-excursion
@@ -800,7 +803,7 @@ already gone.  Any prefix argument will be passed to the 
refile command."
(widen)
(goto-char pos)
(call-interactively 'org-refile)
-(org-capture-finalize)))
+(when kill-buffer (kill-buffer base
 
 (defun org-capture-kill ()
   "Abort the current capture process."
-- 
2.4.9



[O] Inhibit HTML-Tags in markdown export

2015-09-28 Thread timor
Hello,

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

Thanks.



[O] Beamer :BEAMER_envargs: [allowframebreaks] not working

2015-09-28 Thread Jeremie Juste
Hello,

It's my first post here finally. Most of my questions were answered
before by you.:). I have the lastest version of org mode and search
with the best of my abilities if any had the same issue but couldn't
find anything.

I have some difficulty with the org-mode variable :BEAMER_envargs.

It does not allow frame break. There was a post on SO about the issue

http://stackoverflow.com/questions/29384107/org-mode-framebreak-does-not-work-with-label-option-in-exported-beamer

As a fix they recommend the following fix
(setq org-beamer-frame-default-options "allowframebreaks,label=")

This doesn't do the job and on the tex file it produces something like
\begin{frame}[allowframebreaks,label=,label={sec:orgheadline1}]{part 1}

I tried with
(setq org-beamer-frame-default-options "allowframebreaks")
but the results were not better,


Finally removing label={sec:orgheadline1} did the job.
\begin{frame}[allowframebreaks]{part 1}

So I suspect there is a problem with label={sec:orgheadline1}.


Can someone help please?

Best
JJ



Re: [O] [RFC] Draft mode

2015-09-28 Thread Aaron Ecay
Hi Nicolas,

This looks like a useful addition.

2015ko irailak 27an, "Charles C. Berry"-ek idatzi zuen:
> 
> On Sun, 27 Sep 2015, Nicolas Goaziou wrote:
> 
>> Nicolas Goaziou  writes:
>> 
>>> The following patch implements a draft mode for export. When in draft
>>> mode, invalid macros and links do not throw an error. It can be toggled
>>> with `org-export-as-draft' variable, or using C-d in export dispatch.
>>> 
>>> It introduces a backward incompatible change since it modifies signature
>>> from `org-export-as' and alike.
>>> 
> 
> I don't get it.
> 
> Why not add the `draft' arg to the end of the `' args? Won't that 
> preserve backward compatibility?
> 
> I maintain derived backends that use the `post-process' arg and are 
> distributed on github. So now I will need to make them version aware 
> and/or provide version specific branches so as not to break when used with 
> older org-mode versions, won't I?

This is a very good point.  OTOH, if backwards compatibility is going to
be broken, wouldn’t it be better to move to a keyword argument system?
IOW, the signature of ‘org-export-as’ and friends would change from:

(backend  subtreep visible-only body-only ext-plist)

to (using cl-defun):

(backend  subtreep visible-only body-only ext-plist draft)

This would allow future changes to the API of this function without
breaking backwards compatibility.  It would also clean up messy
constructs like:

(lambda (a s v b d)
  (if a (org-org-export-to-org t s v b d)
(org-open-file (org-org-export-to-org nil s v b d

which could become:

(lambda ( kwargs)
  (if (plist-get kwargs :async)
  (apply #'org-org-export-to-org kwargs)
(org-open-file (apply #'org-org-export-to-org kwargs

and with further simplification the following, which is vastly clearer
than the original:

(lambda ( kwargs)
  (let ((result (apply #'org-org-export-to-org kwargs)))
(unless (plist-get kwargs :async) (org-open-file result

Since this stanza recurs in the code for most (all?) backends, there’s
some value that org core can provide to backend authors by making it as
simple as possible.

With a non-trivial effort, the old calling convention could still be
supported (if the argument after ‘backend’ is not a :keyword, then
org-export-as knows that the old convention is in use, and it should
map the arguments 2 through 5 to the relevant keywords).  It could
trigger a deprecation warning and be phased out with the next major
version (or whenever).

On a different note, does this scheme make it possible for a backend
to see whether draft mode is enabled?  Latex provides a document-level
draft option, which enables certain optimizations that speed up compile
times (for example, graphics are not read in, but are replaced with a
placeholder).  It would be nice if ox-latex could emit this in the latex
code when draft mode is enabled from the org side.

Thanks,

-- 
Aaron Ecay



Re: [O] org-collector unable to handle macros

2015-09-28 Thread Aaron Ecay
Hi Nicolas,

2015ko irailak 19an, Nicolas Goaziou-ek idatzi zuen:
> 
> Hello,
> 
> Aaron Ecay  writes:
> 
>> This looks like the same problem I reported (and provided a patch for) here:
>> .  Some orgtbl-*
>> functions can’t cope with macro (or macro-resembling) text, because they
>> use the exporter, which expects all macros to have valid definitions.
>> 
>> Hopefully this time the bug can actually get fixed, instead of becoming
>> bogged down in irrelevant aspects of the context in which it is
>> reported.
> 
> Fixed. Thank you.

Thanks.  I can confirm that the bug no longer manifests in the context I
reported (babel results).

-- 
Aaron Ecay



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

2015-09-28 Thread Xebar Saram
Hi all

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?

best

Z


[O] undefined symbol 'org-export-create-backend' when calling org-plot/gnuplot

2015-09-28 Thread Dave Marquardt
I attempted to plot a table after installing the 20150928 ELPA package,
and got

Debugger entered--Lisp error: (void-function org-export-create-backend)
  org-export-create-backend(:parent org :transcoders ((table lambda (table 
contents info) (concat nil contents nil)) (table-row lambda (row contents info) 
(if (eq (org-element-property :type row) (quote rule)) nil (let ((headerp 
(org-export-table-row-in-header-p row info)) (lastp (not 
(org-export-get-next-element row info))) (last-header-p 
(org-export-table-row-ends-header-p row info))) (when contents (cond nil nil 
nil (t (concat ...))) (table-cell lambda (cell contents info) (let 
((headerp (org-export-table-row-in-header-p (org-export-get-parent-element 
cell) info)) (column (1+ (cdr (org-export-table-cell-address cell info) nil 
(when contents nil (cond nil (t (setq contents (funcall ... contents) (if 
(or nil (plist-get info :orgtbl-ignore-sep) (not (org-export-get-next-element 
cell info))) contents (concat contents "   " (macro lambda (m c i) 
(org-element-macro-interpreter m nil
  orgtbl-to-generic((("*Total time*" "*4:11*" "" "100.0") ("Time" "4:11" "" 
"100.0") ("CMVC" "" "0:21" "8.4") ("Connections" "" "0:23" "9.2") ("DAT" "" 
"0:02" "0.8") ("Defects" "" "1:24" "33.5") ("developerWorks" "" "0:02" "0.8") 
("Mail" "" "0:39" "15.5") ("RDS" "" "0:06" "2.4") ("SDB" "" "0:01" "0.4") 
("SDN" "" "0:01" "0.4") ("SMC-R" "" "0:01" "0.4") ("Startup" "" "0:27" "10.8") 
("TCP" "" "0:02" "0.8") ("Team" "" "0:42" "16.7")) (:sep "   " :fmt 
org-plot-quote-tsv-field :plot-type 2d :with histograms :ind 1 :labels 
("Headline" "Time" "" "%") :set ("style fill solid") :deps (4)))
  org-plot/gnuplot-to-data((("*Total time*" "*4:11*" "" "100.0") ("Time" "4:11" 
"" "100.0") ("CMVC" "" "0:21" "8.4") ("Connections" "" "0:23" "9.2") ("DAT" "" 
"0:02" "0.8") ("Defects" "" "1:24" "33.5") ("developerWorks" "" "0:02" "0.8") 
("Mail" "" "0:39" "15.5") ("RDS" "" "0:06" "2.4") ("SDB" "" "0:01" "0.4") 
("SDN" "" "0:01" "0.4") ("SMC-R" "" "0:01" "0.4") ("Startup" "" "0:27" "10.8") 
("TCP" "" "0:02" "0.8") ("Team" "" "0:42" "16.7")) "/tmp/org-plot18132EYn" 
(:plot-type 2d :with histograms :ind 1 :labels ("Headline" "Time" "" "%") :set 
("style fill solid") :deps (4)))
  org-plot/gnuplot()
  call-interactively(org-plot/gnuplot record nil)
  command-execute(org-plot/gnuplot record)
  execute-extended-command(nil "org-plot/gnuplot")
  call-interactively(execute-extended-command nil nil)

org-table.el has a declare-function call that points to a "org-export"
file, but I don't find such a file in either the code installed by ELPA
or the daily snapshot:

(declare-function org-export-create-backend "org-export" ( rest))

Calling org-plot/gnuplot worked last week, before I upgraded to 20150928.

-Dave




[O] LaTeX equation align in orgmode?

2015-09-28 Thread Rainer M Krug

Hi

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?

--8<---cut here---start->8---
\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}
--8<---cut here---end--->8---

I have effectrively

--8<---cut here---start->8---
#+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}
--8<---cut here---end--->8---

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?

I could use


--8<---cut here---start->8---
\begin{eqnarray*}
\hat{f}(x) & \propto & \sum_{\nu} \frac{|F(\nu)H(\nu)|^2}{|N(\nu)|^2}  
   \frac{G(\nu)}{H(\nu)} e^{\frac{2 \pi i \nu x}{N}}\\
   & \propto & \sum_{\nu} \frac{|F(\nu)|^2}{|N(\nu)|^2} H(\nu) H^*(\nu) 
   \frac{G(\nu)}{H(\nu)} e^{\frac{2 \pi i \nu x}{N}}\\
   & \propto & \sum_{\nu} H^*(\nu) G(\nu) e^{\frac{2 \pi i \nu x}{N}}
\end{eqnarray*}
--8<---cut here---end--->8---

but eqnarray is apparently bad (see link above).

Thanks,

Rainer

-- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, 
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :   +33 - (0)9 53 10 27 44
Cell:   +33 - (0)6 85 62 59 98
Fax :   +33 - (0)9 58 10 27 44

Fax (D):+49 - (0)3 21 21 25 22 44

email:  rai...@krugs.de

Skype:  RMkrug

PGP: 0x0F52F982


signature.asc
Description: PGP signature