[O] Change font size temporarily for pdf export

2014-06-29 Thread Shiyuan
Hi, When a src code block is exported to latex-pdf, the src lines sometimes are too long to fit in a pdf line. One easy way to handle this problem I can think of is to temporarily change font size. What is the best way to do that in org model? Say that if I have two src blocks, I want the

Re: [O] Org Export Latex Hyperref Options Format

2014-06-29 Thread Joseph Vidal-Rosset
Hello Andrea, thanks for your very useful reply and for the links. 2014-06-28 16:29 GMT+02:00 Andrea Rossetti andrea.rosse...@gmail.com: I had the same problem some time ago. That variable has been removed in recent Org versions, and you probably have (like me) an old built-in Org shadowed

Re: [O] Change font size temporarily for pdf export

2014-06-29 Thread Shiyuan
I found one solution which surrounds the src block by #+LATEX: \scriptsize #+BEGIN_SRC R print(This block is in scriptsize) #+END_SRC R #+LATEX: \normalize On Sat, Jun 28, 2014 at 11:09 PM, Shiyuan gshy2...@gmail.com wrote: Hi, When a src code block is exported to latex-pdf, the src

Re: [O] org-ref in action

2014-06-29 Thread Joseph Vidal-Rosset
Hi John, hello the list, My question is very simple and it is not unrevelevant vis-à-vis this thread, therefore I keep the same thread. What need is to get either the usual citation format (often in plain style) \cite{one-reference-paper-year} or this one with a mentioned page: \cite[page

[O] Pushing and pulling to google calendar

2014-06-29 Thread Doyley, Marvin M.
Hi Everybody, Is there a way to sync org-agenda with google calendar so that I can exploit googles calendar reminder. I wish there was a way to send calendar reminders (pop-up, emails, text message ) from org-mode rather than going through google. Best Wishes, M Sent from my iPad

Re: [O] [BUG] Infloop in org-element-inlinetask-parser

2014-06-29 Thread Nicolas Goaziou
Hello, Aaron Ecay aarone...@gmail.com writes: In the latest checkout of master, I am seeing an infloop in org-element-inlinetask-parser. This originates when that function calls back into org-element-at-point to look for a property drawer, which moves the point back before the beginning of

Re: [O] [PATCH] curly nested latex fragments

2014-06-29 Thread Nicolas Goaziou
Hello, hero...@gentoo.org writes: Nesting braces is already implemented in the classic org-latex.el[1], and is forward ported into org-element.el. Thanks for your patch. I think you are misunderstanding something. I didn't port this limitation in Org 8. AFAIK it has been there for a long

Re: [O] still seeing semi-regular lockups

2014-06-29 Thread Nicolas Goaziou
Hello, York Zhao gtdplatf...@gmail.com writes: My experience of using `org-mode' (git commit 2824502 and previous versions) with Emacs 24.3.91 (git commit 0f0917d) had been a nightmare. I got bitten by this bug frequently, I was mad. I'm sorry about this. However, just saying that it had

Re: [O] Pushing and pulling to google calendar

2014-06-29 Thread Jorge A. Alfaro-Murillo
Doyley, Marvin M. mdoy...@ur.rochester.edu writes: Hi Everybody, Is there a way to sync org-agenda with google calendar so that I can exploit googles calendar reminder. I wish there was a way to send calendar reminders (pop-up, emails, text message ) from org-mode rather than going through

[O] org-agenda-files and customize

2014-06-29 Thread David Masterson
Hmmm. I just noticed that the following happened: 1. I noticed org-agenda-files was set in the custom-set-variables section of my .emacs. 2. I removed org-agenda-files from the custom-set-variables section of my .emacs. 3. I set org-agenda-files in the standard way (C-c [). 4. I notices that

Re: [O] org-ref in action

2014-06-29 Thread Eric Schulte
Joseph Vidal-Rosset joseph.vidal.ros...@gmail.com writes: Hi John, hello the list, My question is very simple and it is not unrevelevant vis-à-vis this thread, therefore I keep the same thread. What need is to get either the usual citation format (often in plain style)

Re: [O] org-ref in action

2014-06-29 Thread Joseph Vidal-Rosset
2014-06-29 20:19 GMT+02:00 Eric Schulte schulte.e...@gmail.com: With ox-bibtex.el [[cite:(page n)one-reference-paper-year]] will export as \cite[page n]{one-reference-paper-year} Many thanks Eric . It helps a lot ! Best wishes Jo.

[O] html-encode in mathjax latex fragments

2014-06-29 Thread Eric Schulte
I noticed equations with 's weren't displaying correctly in HTML export using mathjax. The attached patch fixes this by html-encoding latex fragments for mathjax HTML export. I imagine this change would be generally useful and could be applied to master. Best, Eric From

[O] Tables of contents for individual sections wanted -- will donate

2014-06-29 Thread D. C. Toedt
Hi all -- BACKGROUND: I've been using org-mode to develop the *Common Draft* annotated collection of business contract clauses, in part for the law school course in contract drafting that I teach to third-year law students. I've been posting the collection as a Creative Commons document at

Re: [O] Org Export Latex Hyperref Options Format

2014-06-29 Thread Andrea Rossetti
Joseph Vidal-Rosset joseph.vidal.ros...@gmail.com writes: How can I remove this old built-in Org shadowed by my new Elpa Org ? It seems to me that it should be the best solution, That time I thought life is too short to mess with it :) and simply ignored that zombie option; it's rare that an

Re: [O] html-encode in mathjax latex fragments

2014-06-29 Thread Nicolas Goaziou
Hello, Eric Schulte schulte.e...@gmail.com writes: I noticed equations with 's weren't displaying correctly in HTML export using mathjax. The attached patch fixes this by html-encoding latex fragments for mathjax HTML export. I imagine this change would be generally useful and could be

Re: [O] Pushing and pulling to google calendar

2014-06-29 Thread Parnell Springmeyer
MobileOrg is the best solution so far. But there's no bi-directionality, which is annoying, the sync options in MobileOrg are pretty solid but getting MobileOrg first setup was enormously confusing for me. I've used dropbox and btsync to sync and they aren't bad. I'm working on an actual product

[O] Always use \hyperref for internal Links in PDF export?

2014-06-29 Thread Bernd Haug
Hello Orgmoders, Given a Document: — [[Section 1]] Bla, bla [[Section 2]] The blah blah is [[Section1][covered well above]], so let me just say: [[Section 1]]! — I get: — … The blah blah is \hyperref[Section 1]{covered well above}, so let me just say: \ref{Section 1} … — Is there a any way

Re: [O] [PATCH] curly nested latex fragments

2014-06-29 Thread heroxbd
Hi Nicolas, Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, hero...@gentoo.org writes: Nesting braces is already implemented in the classic org-latex.el[1], and is forward ported into org-element.el. Thanks for your patch. I think you are misunderstanding something. I didn't port

Re: [O] still seeing semi-regular lockups

2014-06-29 Thread York Zhao
Yeah, I'm using git emacs, labeled 24.4.50.1 Did you compile Emacs from git? I have never seen the tag 24.4.50.1, are you sure you didn't have a typo here? On Sat, Jun 28, 2014 at 10:23 PM, Eric Abrahamsen e...@ericabrahamsen.net wrote: York Zhao gtdplatf...@gmail.com writes: My experience

Re: [O] Pushing and pulling to google calendar

2014-06-29 Thread Jorge A. Alfaro-Murillo
Parnell Springmeyer parn...@ixmat.us writes: MobileOrg is the best solution so far. But there's no bi-directionality, which is annoying, the sync options in MobileOrg are pretty solid but getting MobileOrg first setup was enormously confusing for me. I've used dropbox and btsync to sync and

Re: [O] org-agenda-files and customize

2014-06-29 Thread Jorge A. Alfaro-Murillo
David Masterson dsmaster...@gmail.com writes: 2. I removed org-agenda-files from the custom-set-variables section of my .emacs. 3. I set org-agenda-files in the standard way (C-c [). 4. I notices that org-agenda-files was back in the custom-set-variables section of my .emacs. Is that

Re: [O] still seeing semi-regular lockups

2014-06-29 Thread York Zhao
I know that doesn't help much except for confirming the problem other people was suffering. Sorry for the rant. I was too busy and too frustrated. By the way, what does ECM stands for? This is an entirely different issue, since maint branch doesn't have a cache. I must clarify that what I

Re: [O] html-encode in mathjax latex fragments

2014-06-29 Thread Nick Dokos
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Eric Schulte schulte.e...@gmail.com writes: I noticed equations with 's weren't displaying correctly in HTML export using mathjax. The attached patch fixes this by html-encoding latex fragments for mathjax HTML export. I imagine this