[O] How to execute calc commands in src blocks?

2015-08-09 Thread jenia.ivlev
Hello. I want to use calc in org src-blocks. But it doesnt always work. Here is an example that does work: #+BEGIN_SRC calc 3 2 '+ #+END_SRC #+RESULTS: 6 Here is another example where it doesn't work: #+BEGIN_SRC calc [3 2] [2 10] '+ #+END_SRC This doesn't work at

Re: [O] How to make appear the note taken in the calendar?

2014-12-24 Thread jenia.ivlev
I don't want to use . Because date I typically use to set the date when I took the note. The date [], I would like to appear in the more granular view that the key l, in the calendar buffer, gives you.

[O] Hi Rasmus. What does you branch do?

2014-12-24 Thread jenia.ivlev
Hello Rasmus. I was to learn emacs lisp and I figured one of the ways to do it is to read someone else's commit. Can you please tell me what feature is your branch implementing? Thanks in advance for your time and kind concern. Jenia.

Re: [O] How do you show the entires in the logbook drawer in the agenda

2014-12-24 Thread jenia.ivlev
I think it should be another version of the logging view that shows the most recent notes. So if I have * TODO Another loggin view in the agenda - Note taken on [2014-12-25 Thu 01:48] \\ Right now, this will not appear in the agenda That node should appear in the new logging view.

Re: [O] How do you show the entires in the logbook drawer in the agenda

2014-12-22 Thread jenia.ivlev
Eric Abrahamsen e...@ericabrahamsen.net writes: jenia.iv...@gmail.com (jenia.ivlev) writes: Eric Abrahamsen e...@ericabrahamsen.net writes: jenia.iv...@gmail.com (jenia.ivlev) writes: Hello. I thought that the entires in the logbook drawer - entered pressing `C-c C-z` in orgmode - would

[O] How to make appear the note taken in the calendar?

2014-12-22 Thread jenia.ivlev
Hello. How do I make appear the note taken in the agenda? Like for example, if in a org-file, I press C-c C-z under a node, this command will create a new note for that node. How do I make such notes appear in the calendar? In contrast, state changes of an org-node, like going from TODO to

[O] How to use helm to get suggestion for tags in org-mode?

2014-12-22 Thread jenia.ivlev
Hello: This is probably a question for the helm channel but maybe someone here knows. When I leave a tag for a node in org-mode, I press C-c C-c on that node and helm provides me with suggestions for tags. But when I want to put a second tag there, and press C-c C-c, helm doesnt provide me with

Re: [O] How do you show the entires in the logbook drawer in the agenda

2014-12-21 Thread jenia.ivlev
Eric Abrahamsen e...@ericabrahamsen.net writes: jenia.iv...@gmail.com (jenia.ivlev) writes: Hello. I thought that the entires in the logbook drawer - entered pressing `C-c C-z` in orgmode - would show up in the agenda, pressing `C-c a a`, but they do not. Is possible to somehow list

Re: [O] How do you show the entires in the logbook drawer in the agenda

2014-12-17 Thread jenia.ivlev
Eric Abrahamsen e...@ericabrahamsen.net writes: jenia.iv...@gmail.com (jenia.ivlev) writes: Hello. I thought that the entires in the logbook drawer - entered pressing `C-c C-z` in orgmode - would show up in the agenda, pressing `C-c a a`, but they do not. Is possible to somehow list

[O] How do you show the entires in the logbook drawer in the agenda

2014-12-16 Thread jenia.ivlev
Hello. I thought that the entires in the logbook drawer - entered pressing `C-c C-z` in orgmode - would show up in the agenda, pressing `C-c a a`, but they do not. Is possible to somehow list those notes in the agenda? Thanks in advnace for your kind help.

[O] how to export to HTML keeping the whitespaces

2014-11-30 Thread jenia.ivlev
Hello: I want to export to HTML and keep the white spaces. Normally, I have to do skip a line (two newline characters) or use #+begin_verse... #+end_verse. Which is not optimal. The two new lines take up too much space, and the begin/end verse don't export in the same to way to HTML as it does

Re: [O] how to export to HTML keeping the whitespaces

2014-11-30 Thread jenia.ivlev
Eric Abrahamsen e...@ericabrahamsen.net writes: jenia.iv...@gmail.com (jenia.ivlev) writes: Hello: I want to export to HTML and keep the white spaces. Normally, I have to do skip a line (two newline characters) or use #+begin_verse... #+end_verse. Which is not optimal. The two new lines

Re: [O] babel, header arguments.

2014-11-21 Thread jenia.ivlev
Sebastien Vauban sva-n...@mygooglest.com writes: jenia.ivlev wrote: So lets say there's this function: #+name: my-plus #+begin_src scheme (define my-plus (lambda (x y) (+ x y))) #+end_src And i want to call it from another source block, like so

Re: [O] babel, header arguments.

2014-11-21 Thread jenia.ivlev
t...@tsdye.com (Thomas S. Dye) writes: Aloha, jenia.iv...@gmail.com (jenia.ivlev) writes: Also, what if I want to import the actual function defintion into another src block: #+begin_src scheme (+ (my-plus 3 4) 1) #+end_src something here that import the previous

Re: [O] babel, header arguments.

2014-11-21 Thread jenia.ivlev
jenia.iv...@gmail.com (jenia.ivlev) writes: t...@tsdye.com (Thomas S. Dye) writes: Aloha, jenia.iv...@gmail.com (jenia.ivlev) writes: Also, what if I want to import the actual function defintion into another src block: #+begin_src scheme (+ (my-plus 3 4) 1) #+end_src

Re: [O] babel, header arguments.

2014-11-21 Thread jenia.ivlev
t...@tsdye.com (Thomas S. Dye) writes: jenia.iv...@gmail.com (jenia.ivlev) writes: t...@tsdye.com (Thomas S. Dye) writes: Aloha, jenia.iv...@gmail.com (jenia.ivlev) writes: Also, what if I want to import the actual function defintion into another src block: #+begin_src scheme

[O] babel, header arguments.

2014-11-18 Thread jenia.ivlev
Hello. I want to go through the book little schemer and take notes interlaced with the code from the book. For this I want to use babel. So lets say there's this function: #+name: my-plus #+begin_src scheme (define my-plus (lambda (x y) (+ x y))) #+end_src And i

[O] Babel introduction example cannot be executed

2014-10-04 Thread jenia.ivlev
Hello. I want to run one of the examples on babel page. Normally, it's the simplest example the world has ever seen. I have a table of numbers and I want to take the evage of those number. Here is how I did it. Attemp 1: #+name: tbl-example-data() #+begin_src R runif(n=5, min=0,

[O] cannot execute org-mode code from the front page tutorial.

2014-08-15 Thread jenia.ivlev
Hello. I'm trying to go through the org-mode tutorial on its official page. However, I have trouble execute the code there #+NAME: tbl-example-data() #+BEGIN_SRC R :results value runif(n=5, min=0, max=1) #+END_SRC #+RESULTS: tbl-example-data |

Re: [O] cannot execute org-mode code from the front page tutorial.

2014-08-15 Thread jenia.ivlev
I can't make the changes - apply the your path - because my ob-R.el file is completly different, its a elisp file and doesnt contain any R code. The file is located at /usr/share/emacs/24.3/lisp/org/ob-R.el Can you tell me how do I proceed to apply our changes to my emacs? Thanks again for

[O] orgmode capture template how to add entry under org header

2014-08-09 Thread jenia.ivlev
Hello: I added a custom template for the capture-mode: The problem is that the default Tasks template is not there anymore. So I tried to add this: (t Tasks entry (file ~/Documents/org/notes.org)) Now, when I press `M-x org-capture`, the Tasks option appears in the

Re: [O] Can't execute the introductory code: take table as input to produce mean

2014-08-06 Thread jenia.ivlev
Its the first time I use this type of mail system. I connected here using gmane and gnus. I;m not sure how to answer the thread Can't execute the introductory code: take table as input to produce mean. So i'll just try to answer the best way I can who means I'll answer to: