Re: [O] hiding footnotes

2013-02-26 Thread 42 147
Set it to 20, thanks. Hopefully I never need to hit the 26 limit. 2012/11/29 Nick Dokos nicholas.do...@hp.com 42 147 aeus...@gmail.com wrote: Very nice. However, I'd like to write a function that toggles the color value (without recourse to the customize menu), since it would be

Re: [O] hiding footnotes

2013-02-26 Thread 42 147
Oops, wrong thread. 2013/2/26 42 147 aeus...@gmail.com Set it to 20, thanks. Hopefully I never need to hit the 26 limit. 2012/11/29 Nick Dokos nicholas.do...@hp.com 42 147 aeus...@gmail.com wrote: Very nice. However, I'd like to write a function that toggles the color value

Re: [O] hiding footnotes

2012-11-28 Thread John Hendy
On Wed, Nov 28, 2012 at 7:03 AM, 42 147 aeus...@gmail.com wrote: Self-explanatory. I like how org-mode handles footnotes, but I want an option to hide them while reading (for they are distracting). Reading what? The org file or resultant PDF? If you're talking about the org file, I don't

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
Reading an org-file. I should note, it is the highlighting that is the problem, not the footnote itself. If I could somehow toggle it to the color of the text, that would solve my problem. For example, the [16] here is a distraction: * Chomsky ** Books *** Deterring Democracy Chapter 1.

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
Reading an org-file. I should note, it is the highlighting that is the problem, not the footnote itself. If I could somehow toggle it to the color of the text, that would solve my problem. Put your cursor on the footnote. Then do C-u C-x = In the resulting buffer, toward the end, you

Re: [O] hiding footnotes

2012-11-28 Thread Alan L Tyree
SNIP Hiding footnotes would be a great enhancement as far as I am concerned. I mean hiding in the same way that entities can be hidden in Auctec. Auctec allows a fold mode that replaces various entities with user defined symbols. For example, \label{xxx} becomes [l]; \footnote{} becomes

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
Very nice. However, I'd like to write a function that toggles the color value (without recourse to the customize menu), since it would be useful to highlight the footnotes from time to time. After some tests, it is clear I also disliked the underlining. On Wed, Nov 28, 2012 at 12:26 PM,

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
I should add that Tyree's idea is what I was looking for originally (changing the face to the text font at least fixed readability). Ideally, instead of jumping to the footnote section, it would be collapsible / expandable, much like headings. Right now having a dedicated footnote section is

Re: [O] hiding footnotes

2012-11-28 Thread Alan L Tyree
On 29/11/12 14:35, 42 147 wrote: I should add that Tyree's idea is what I was looking for originally (changing the face to the text font at least fixed readability). Ideally, instead of jumping to the footnote section, it would be collapsible / expandable, much like headings. Right now having

Re: [O] hiding footnotes

2012-11-28 Thread Nick Dokos
42 147 aeus...@gmail.com wrote: Very nice. However, I'd like to write a function that toggles the color value (without recourse to the customize menu), since it would be useful to highlight the footnotes from time to time. Anything that can be done interactively can also be done

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
Nick Dokos nicholas.do...@hp.com writes: 42 147 aeus...@gmail.com wrote: Very nice. However, I'd like to write a function that toggles the color value (without recourse to the customize menu), since it would be useful to highlight the footnotes from time to time. Anything that can be

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
Jambunathan K kjambunat...@gmail.com writes: Install the following defun, put the cursor on fontified text and do M-x toggle-face. (defun toggle-face (optional face-from) (interactive (list (read-face-name Face (face-at-point (let ((f (assq face-from

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
I added this to my .emacs: (defun t-face () to pass org-footnote automatically to toggle-face (interactive) (toggle-face 'org-footnote)) (defun toggle-face (optional face-from) (interactive (list (read-face-name Face (face-at-point (let ((f (assq face-from face-remapping-alist))