emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [babel] Tangle multiple sections source blocks into single file without #+source: ...
@ 2010-05-28  6:34 Rainer M Krug
  2010-05-28 13:05 ` Eric Schulte
  0 siblings, 1 reply; 3+ messages in thread
From: Rainer M Krug @ 2010-05-28  6:34 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1499 bytes --]

Hi

I am using org-babel to write a simulation model and the accompanying
documentation and it works as expected. But I have many source blocks which
I want to tangle into the same source file. At the moment, I am using
"#+source: BLOCKNAME" (see below). But it is easy to forget to add the block
name to the actual tangle block at the bottom. Is there a way of:

1) tangle all source blocks into the same file? As far as I am aware, a new
tangle to the same file name, overwrites the already existing file --- I
would like to append the new code block to the existing file.

or

2) is there a keyboard shortcut, that I can add the name of the block to the
actual tangle block automatically, when the e.g. block name is selected?

Thanks,

Rainer
* Here I am doing this
#+source: Block1
#+begin_src R
  some code
#+end_src

* Here I am doing that
#+source: Block2
#+begin_src R
  some code
#+end_src

* Creation of Source.R
#+begin_src R :tangle source.R
  <<cBlock1>>
  <<cBlock2>>
#+end_src

-- 
NEW GERMAN FAX NUMBER!!!

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

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 1791 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [babel] Tangle multiple sections source blocks into single file without #+source: ...
  2010-05-28  6:34 [babel] Tangle multiple sections source blocks into single file without #+source: Rainer M Krug
@ 2010-05-28 13:05 ` Eric Schulte
  2010-05-31  7:00   ` Rainer M Krug
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Schulte @ 2010-05-28 13:05 UTC (permalink / raw)
  To: Rainer M Krug; +Cc: emacs-orgmode

Hi Rainer,

The first option you suggested below should already be supported.  For
example the following org-mode text

--8<---------------cut here---------------start------------->8---
* appending tangle
   :PROPERTIES:
   :tangle:   appended.el
   :END:
append all these block

#+begin_src emacs-lisp
  (message "block %d" 1)
#+end_src

#+begin_src emacs-lisp
  (message "block %d" 2)
#+end_src

#+begin_src emacs-lisp
  (message "block %d" 3)
#+end_src
--8<---------------cut here---------------end--------------->8---

tangles all three blocks to the file append.el.  Please try something
analogous and let me know if it doesn't work.

Best -- Eric

Rainer M Krug <r.m.krug@gmail.com> writes:

> Hi
>
> I am using org-babel to write a simulation model and the accompanying
> documentation and it works as expected. But I have many source blocks which
> I want to tangle into the same source file. At the moment, I am using
> "#+source: BLOCKNAME" (see below). But it is easy to forget to add the block
> name to the actual tangle block at the bottom. Is there a way of:
>
> 1) tangle all source blocks into the same file? As far as I am aware, a new
> tangle to the same file name, overwrites the already existing file --- I
> would like to append the new code block to the existing file.
>
> or
>
> 2) is there a keyboard shortcut, that I can add the name of the block to the
> actual tangle block automatically, when the e.g. block name is selected?
>
> Thanks,
>
> Rainer
> * Here I am doing this
> #+source: Block1
> #+begin_src R
>   some code
> #+end_src
>
> * Here I am doing that
> #+source: Block2
> #+begin_src R
>   some code
> #+end_src
>
> * Creation of Source.R
> #+begin_src R :tangle source.R
>   <<cBlock1>>
>   <<cBlock2>>
> #+end_src

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [babel] Tangle multiple sections source blocks into single file without #+source: ...
  2010-05-28 13:05 ` Eric Schulte
@ 2010-05-31  7:00   ` Rainer M Krug
  0 siblings, 0 replies; 3+ messages in thread
From: Rainer M Krug @ 2010-05-31  7:00 UTC (permalink / raw)
  To: Eric Schulte; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2540 bytes --]

On Fri, May 28, 2010 at 3:05 PM, Eric Schulte <schulte.eric@gmail.com>wrote:

> Hi Rainer,
>
> The first option you suggested below should already be supported.  For
> example the following org-mode text
>
>
Thanks Eric,

this is working as expected.

Cheers,

Rainer


> --8<---------------cut here---------------start------------->8---
> * appending tangle
>   :PROPERTIES:
>   :tangle:   appended.el
>   :END:
> append all these block
>
> #+begin_src emacs-lisp
>  (message "block %d" 1)
> #+end_src
>
> #+begin_src emacs-lisp
>  (message "block %d" 2)
> #+end_src
>
> #+begin_src emacs-lisp
>  (message "block %d" 3)
> #+end_src
> --8<---------------cut here---------------end--------------->8---
>
> tangles all three blocks to the file append.el.  Please try something
> analogous and let me know if it doesn't work.
>
> Best -- Eric
>
> Rainer M Krug <r.m.krug@gmail.com> writes:
>
> > Hi
> >
> > I am using org-babel to write a simulation model and the accompanying
> > documentation and it works as expected. But I have many source blocks
> which
> > I want to tangle into the same source file. At the moment, I am using
> > "#+source: BLOCKNAME" (see below). But it is easy to forget to add the
> block
> > name to the actual tangle block at the bottom. Is there a way of:
> >
> > 1) tangle all source blocks into the same file? As far as I am aware, a
> new
> > tangle to the same file name, overwrites the already existing file --- I
> > would like to append the new code block to the existing file.
> >
> > or
> >
> > 2) is there a keyboard shortcut, that I can add the name of the block to
> the
> > actual tangle block automatically, when the e.g. block name is selected?
> >
> > Thanks,
> >
> > Rainer
> > * Here I am doing this
> > #+source: Block1
> > #+begin_src R
> >   some code
> > #+end_src
> >
> > * Here I am doing that
> > #+source: Block2
> > #+begin_src R
> >   some code
> > #+end_src
> >
> > * Creation of Source.R
> > #+begin_src R :tangle source.R
> >   <<cBlock1>>
> >   <<cBlock2>>
> > #+end_src
>



-- 
NEW GERMAN FAX NUMBER!!!

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

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 3643 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-05-31  7:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-28  6:34 [babel] Tangle multiple sections source blocks into single file without #+source: Rainer M Krug
2010-05-28 13:05 ` Eric Schulte
2010-05-31  7:00   ` Rainer M Krug

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).