Re: [O] publishuing in html5

2013-12-31 Thread Catonano
Nicolas, 2013/12/18 Nicolas Goaziou > As specified already in this thread, you also need > > :html-doctype "html5" > > in your configuration. > > > Regards, > that worked. Thanks

Re: [O] publishuing in html5

2013-12-31 Thread Catonano
Nick, 2013/12/18 Nick Dokos > I'm not suggesting that you write this stuff in each and every file in > your blog. I'm just suggesting that before you can even have a blog (at > least using this mechanism), you have to first figure out what the > problem is and resolve it. Then you can optimize.

Re: [O] publishuing in html5

2013-12-31 Thread Catonano
2013/12/20 Scott Randby > > Here is an example that works for me: > > thank you Scott. Note taken

Re: [O] publishuing in html5

2013-12-31 Thread Catonano
Nicolas, 2013/12/9 Nicolas Goaziou > > #+HTML_HTML5_FANCY: t > > > > in level-0.org > > There is no such keyword. Use: > > #+OPTIONS: html5-fancy:t > > or set `org-html-html5-fancy' to a non-nil value. > > Thanks. I copied that line from here: http://orgmode.org/worg/org-tutorials/org-publish-

[O] bug#16265: 24.3.50; re-search-forward (error "Invalid search bound (wrong side of point)")

2013-12-31 Thread Nicolas Richard
Le 28/12/2013 21:44, Keith David Bershatsky a écrit : > This example demonstrates the problem caused when `org-capture` > damages the line numbers in the `org-agenda-files`, making it > impossible to go to the bottom of the buffer with (goto-char > (point-max)) -- consequently, re-search-backward

Re: [O] publishuing in html5

2013-12-31 Thread Catonano
Nick, 2013/12/31 Catonano > > I think I will have to use your suggestion to move from a configuration > based html5 publishing to a templates based one. > > I'll let you know > I promised that I would have let you know: here I am: it works even with templates now. So I can have my configuratio

[O] bug#16265: 24.3.50; re-search-forward (error "Invalid search bound (wrong side of point)")

2013-12-31 Thread Nicolas Richard
Nicolas Richard writes: > I'll bisect this (I tested 24.3, it works there) and post the result bisection is done. # first bad commit: [f56f1e3993fd79240e03666cf8390f489b4a2435] Switch cache-long-scans to t by default. and indeed, running emacs -Q --batch --eval '(setq-default cache-long-scans n

[O] Finer control over LaTeX export

2013-12-31 Thread Uwe Ziegenhagen
Hi everyone, I have short parts of Python code in my org file: #+begin_src python :results value def foo(x): if x>0: return x+1 else: return x-1 return foo(590) #+end_src #+RESULTS: : 591 #+begin_src python :results value return 1+1 #+end_src #+RESULTS: : 2 #+begin_src python :r

Re: [O] Finer control over LaTeX export

2013-12-31 Thread Nicolas Goaziou
Hello, Uwe Ziegenhagen writes: [...] > These get exported to > > \#+begin$_{\text{src}}$ python :results output > print(1+2+3+4+5+6+7+8+9+11) > \#+end$_{\text{src}}$ python This is wrong. You ended your block with #+end_src python but it should be #+end_src > The whole verbatim stuff

Re: [O] publishuing in html5

2013-12-31 Thread Nick Dokos
Catonano writes: > Nicolas, > > 2013/12/9 Nicolas Goaziou > > > #+HTML_HTML5_FANCY: t > > > > in level-0.org > > There is no such keyword. Use: > >   #+OPTIONS: html5-fancy:t > > or set `org-html-html5-fancy' to a non-nil value. > > Thanks. I copied that line

Re: [O] Finer control over LaTeX export

2013-12-31 Thread Nick Dokos
Uwe Ziegenhagen writes: > Hi everyone, > > I have short parts of Python code in my org file: > > #+begin_src python :results value > def foo(x): > if x>0: > return x+1 > > else: > return x-1 > > return foo(590) > #+end_src > > > How can I define how Org Mode is exporting these snippet

Re: [O] publishuing in html5

2013-12-31 Thread Nick Dokos
Catonano writes: > Nick, > > 2013/12/18 Nick Dokos > > I'm not suggesting that you write this stuff in each and every file in > your blog. I'm just suggesting that before you can even have a blog (at > least using this mechanism), you have to first figure out what the > problem i

[O] bug#16265: 24.3.50; re-search-forward (error "Invalid search bound (wrong side of point)")

2013-12-31 Thread Keith David Bershatsky
Nicolas: Yes, `(setq-default cache-long-scans nil)` does indeed fix the problem. In a version of Emacs Trunk built on October 5, 2013, the default value for `cache-long-scans` is `nil`. In the recent version of Emacs Trunk built on December 23, 2013, the default value for `cache-long-scans` i

Re: [O] Org-mode-publish: link to dedicated target accross files

2013-12-31 Thread Sébastien Brisard
Hello, > yes, that might help. Org-file =references.org= is a list of bibliographic > > references. Each entry is actually an item in a description list, like so > > > > #+BEGIN_SRC > > - <> > > [[http://dx.doi.org/10.1016/0022-5096(62)90004-2][Hashinand Shtrikman > > (1962)]] :: Z. Hashin and

[O] Added an obsolescence warning to org-special-blocks documentation on worg

2013-12-31 Thread Nick Dokos
http://orgmode.org/worg/org-contrib/org-special-blocks.html Hope the warning is correct, but if not, please let me know. Nick

Re: [O] How to use org src functions in other major mode (markdow)?

2013-12-31 Thread Charles Berry
Shuguang Sun gmail.com> writes: > Dear all, > Is it possible to use org src functions in other major mode, e.g., > markddown-mode? > In some extend markdown, source code can be put in to block, for example, > r-mode for R script```rx <- 1:10``` > Is it possible to highlight the block as org-bl

Re: [O] latex equation and html export

2013-12-31 Thread Nick Dokos
Joseph Vidal-Rosset writes: > 2013/12/30 Thomas S. Dye > > get this LaTeX, which works as expected: > > \begin{equation} > \label{eq:2} > A \to \neg{} B > \end{equation} > % Emacs 24.3.1 (Org mode 8.2.4) > > Bonsoir Thomas, > > Indeed, the code works correctly.

[O] html - how to make table of contents floating? - Stack Overflow

2013-12-31 Thread Joseph Vidal-Rosset
http://stackoverflow.com/questions/12232675/how-to-make-table-of-contents-floating Hello the list, My "problem" is simple and I do not doubt that there is a solution with org-mode: I would be happy to get an org-file exporting the same style of orgmode web-site (which is very nice) and avoiding c