A literate program embeds source code in an essay documenting the program.
0
votes
1answer
19 views
Marginalia / Docco / etc for Java Maven projects?
Is it possible to run Marginalia on a Java (multi-module) project which uses Maven?
Or is there any other alternative that's similar to Marginalia or Docco that can do this?
What's important to me ...
4
votes
1answer
73 views
Conditional Compilation inside Literate Haskell
I have a literate haskell file and want to use conditional compilation. I use the bird style of literate programming. The following code does not work.
> #if MIN_VERSION_base(4,6,0)
> import ...
10
votes
1answer
129 views
Put result of code right below the code in resulting PDF. Haskell
Is there any way to execute code in a .lhs file and put the result right below the code itself in the resulting PDF?
For example:
[1,2,3] ++ [4,5,6]
[1,2,3,4,5,6]
2
votes
1answer
37 views
How to hide block of code [closed]
I'm writing a program in a .lhs file which contains code in Haskell (I'm specifying this because I want it to be clear that it's not only for rendering a pdf but it's also for being execute with ...
0
votes
1answer
34 views
MathJax scripts not being generated by knitr::spin
I'm generating an html report from a knitr::spin marked up document
1) It works doing the following
> spin("document.R")
Process the resulting .md file in Rstudio by clicking the "Preview ...
0
votes
0answers
48 views
Literate coffee-script files that pre-date the compiler [closed]
I was curious if there are any accidental literate coffee-script files out there, that pre-date the concept. It seems perfectly rational that someone would write about their coffee-script in markdown, ...
1
vote
1answer
38 views
How to import/expand noweb refs in evaluated (exported) source blocks in org-babel?
I'm trying to do something like this:
* Define some functions
#+begin_src python :noweb_ref defs
def f1(a,b,c):
return True
def f2(d,e,f):
return False
#+end_src
* Use them in a ...
3
votes
2answers
61 views
How can I retain the initial white space in a line when writing Rd documentation?
In conjunction with trying to find a solution for myself in regards to this question, I find myself plunged into trying to write valid Rd markup. What I want is to add a section named Raw Function ...
0
votes
2answers
62 views
Is there a global flag that can be set to provide code alongside ROxygen documentation?
I have taught a class in which I have had students use a package I have written. Now that the class is ending, I'd like to provide them the code for each of those functions inline with the ...
6
votes
4answers
201 views
Does any literate programming environment support on the fly results?
I am currently writing lots of small reports. Most of them are just value dumps with some graphs and illustrative comments.
Is there a literate programming environment that let's me write my reports ...
5
votes
2answers
165 views
Setting HTML meta elements with knitr
I'm generating HTML reports using knitr, and I'd like to include author and generation date meta tags.
My Rhtml page looks something like this.
<html>
<head>
<meta name="author" ...
1
vote
1answer
157 views
Pdflatex error when using {-“ … ”-} inline TeX comments in lhs2TeX
I have the following code block in my .lhs file which uses inline TeX comments:
\begin{code}
main = print 0
{-"$\langle$Link$\rangle$"-}
\end{code}
However, after compiling with lhs2TeX, I get the ...
5
votes
1answer
119 views
Examples on Literate Programming with Racket scribble/lp
In addition to learning Racket I'm trying to learn literate programming. Unfortunately the Racket documentation is sparse to say the least with regards to scribble/lp. Could someone point me to some ...
1
vote
3answers
133 views
How to iterate over a changing vector in Matlab, not consecutive number?
I am really a beginner level at matlab. Now I want to have a loop, such that it iterates over a vector (not consecutive numbers) which contains a decreasing number of elements through iteration.
For ...
7
votes
3answers
164 views
How can I hide code blocks in lhs2TeX?
I want to document my code using latex, but it's really annoying having all those modules and compiler extensions show up at the beginning of the latex document. Is there some flag I can pass to ...
3
votes
0answers
292 views
Is there a way to knitr and produce .rmd files using the external tools function of the StatET Eclipse plugin?
I'm becoming a fan of reproducible analyses and of Sweave, Beamer and specially of the knitr package.
RStudio allows to Sweave and knit documents with just one click, but although RStudio is easy to ...
3
votes
3answers
499 views
How to autogenerate API documentation from Express route mappings?
I am developing a REST API in nodejs + Express and I have been simultaneously documenting my API in the README file and I was wondering if it is possible to automate it. e.g. given:
...
3
votes
0answers
98 views
HTML anchor in noweb style literate programming by org-mode
This is my simple C source code in org-mode.
#+name: hello_one.c
#+begin_src C :noweb tangle :tangle hello_one.c
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
reurn 0;
}
...
3
votes
1answer
51 views
How to pipe input to a src_block as stdin ?
Consider the following snippet of perl in org-babel, which uses <STDIN>.
** Ans 2
#+begin_src perl :results output
use Math::Trig;
$rad = <STDIN>;
$circumference = ...
1
vote
1answer
56 views
How to diagnose emacs lisp problems involving indirect buffers?
I am using Dave Love's noweb-mode to edit a file that is a mix of LaTeX and C code. Love's mode uses his multi-mode to switch back and forth between modes.
This switching is accomplished via indirect ...
1
vote
1answer
75 views
Chunk arguments for noweb
In nuweb, I can do something like this
@d Define the chunk with argument
echo "Hello, @1";
Then I can use it in other chunks by passing arguments:
@d Second chunk
@<Define the chunk with ...
1
vote
1answer
265 views
noweb style weaving in org-babel
I'm using Emacs 23 with Org 7.8.04. My code structure is as follows:
#+TITLE: hello, world!
#+BEGIN_SRC python :tangle yes :noweb yes
<<go_function>>
if __name__ == "__main__":
go()
...
2
votes
1answer
191 views
Cryptic error message in emacs org-mode following attempted export of file containing image-generating block of R code
I have an R code block that generates an image (see below). Executing the code is no problem (i.e., C-c C-c from within the block generates an image temp.png as expected). However, on export to PDF ...
5
votes
1answer
217 views
Make the source code from one code block the input to another code block in Emacs org-mode
I'm getting started with org-mode and there's something I'd like to do that seems like it should be possible, but I'm having trouble figuring out.
Let me describe the scenario: I have some SQL code ...
1
vote
1answer
63 views
Can noweb create traversable links in latex like it does in HTML?
When you generate html documents with noweb each chunk of code can be clicked when referenced elsewhere and you can jump to this definition but I'm not able to get the same functionality with the ...
1
vote
2answers
184 views
Can Pweave play nice with Ruffus?
I am interested in developing self-documenting pipelines.
Can I wrap Ruffus tasks in Pweave chunks?
Pweave and Ruffus
==============================================================
**Let's see if ...
0
votes
2answers
83 views
Macro in Literate programming
I found that some tool such as Noweb doesn't support macro.
I want to know what are the advantages and disadvantages of macro in literate programming?
1
vote
0answers
71 views
How do I make a spreadsheet with named column references that anyone can use?
i would like to make a spreadsheet that:
(a) has named column references in its formulas rather than referring to cell locations, for example, if there are three columns:
month revenue cost profit
...
4
votes
2answers
919 views
Is there a way to customize output of Doxygen index.html (and latex equivalent)?
I am interested in writing an "introduction" on the index.html page, rather than have blank space. Is this a feature supported by the Doxygen tool, or must I put together a hack?
0
votes
1answer
131 views
Literate programming: tool to extract and run a script from source in one pass?
I just started reading about literate programming and noweb - and I find it quite interesting. As far as I understand it, the 'notangle' step is the one that extracts (machine) source code (file), ...
2
votes
3answers
355 views
Infuriating Tab problem in Vim, in literate Haskell
I am using "Bird" style literate haskell, which requires all code to be like the following:
> module Main (main) where
and if I have a block it should look something like this:
> main = do
...
14
votes
1answer
494 views
Literate Haskell: References And Indexing
Does Literate Haskell support indexing function names, typeclasses and variable references? Is there a filter I can run on Literate Haskell source that will do this and give me either a nice PDF ...
13
votes
1answer
895 views
Literate Programming using org-babel
I am on a literate program using org-babel. My source is structured like so,
-imports
-utility fns
-game structure
- detailed explanations
This is the normal structure of the code, what I would ...
8
votes
3answers
377 views
What is legal Literate Haskell? Formal Syntax somewhere?
Someone had a great idea of combining Literate Haskell and Markdown. Made sense to me, so I wanted to try it. But there is something Haskell doesn't like about the Markdown '#' header syntax:
Hello ...
2
votes
1answer
370 views
Customizing Literate Haskell + LaTeX mode
I'm having a hard time forcing literate-haskell-mode to produce PDFlatex output by default. When I use C-c C-t C-f it just parses the lhs file with latex binary producing dvi. I know I can always use ...
20
votes
4answers
2k views
State of the Art for Clojure Documentation Tools
Over the last year or so I've seen various announcements on the Clojure discussion list and other places about tools for documenting Clojure code. These range from full-on literate programming systems ...
2
votes
1answer
326 views
“$” symbol in a code chunk of noweb (literate programming) file
I have following javascript code inside a code chunk of a noweb (i.e., .nw) file:
<<tooltip>>=
$("span").tooltip({
tip: 'tooltip',
predelay: 30,
delay: 3000,
onShow: function(){}
...
1
vote
1answer
82 views
ctwill - mini indexes for cweb
where can i download ctwill? The ftp.cs.stanford.edu/pub/ctwill/ site doesn't work for me, either is ftp://labrea.stanford.edu/pub/ctwill/.
Thanks,
Raoul
0
votes
1answer
203 views
Feature request for a text-editor with support for literate programming [closed]
This is a feature request for the writers of Visual Studio and any other programmer's editor.
Consider a literate program as follows:
/* File Name: LiterateProgram.h */ // \begin{comment}
#pragma ...
2
votes
2answers
357 views
Wysywig literate programming (or viewing generated documentation on-the-fly)
I use a lot of illustrations, diagrams and equations to document C++ and python codes, and a way to do this is to inline them with doxygen. The problem is that, when coding, they are not directly ...
7
votes
1answer
1k views
LHS and Markdown: Codeblocks
I happen to really like Markdown (probably because of SO) and I like programming in Haskell. I have recently discovered Literate Haskell (LHS) and I want to use Markdown and LHS together. Let me give ...
6
votes
3answers
851 views
How do I Sweave a multiple-file project?
I am writing my thesis in LaTeX and because things got a bit long for my taste, I had split it into several files. Let's call them thesis.tex, intro.tex, mat_n_met.tex, rslts.tex and discsn.tex. I ...
11
votes
3answers
1k views
sweave and ggplot2: no pdfs generated at all
i am trying create a sweave report that contains some graphics done with ggplot2. Though I am looking for some environment for the long run – I just use a simple .Rnw file here that only contains the ...
7
votes
2answers
210 views
Interesting / well written unit tests to read (literate programming)
Do you know any open software projects that had particularly interesting / well written unit tests ?
Writing unit tests often feels odd to me, because it seems either too random, too dense, to ...
22
votes
2answers
3k views
Literate Haskell (.lhs) and Haddock
At the moment I'm only using Haddock but after seeing some really interesting examples (e.g. this gist ) of literate Haskell I'm interested in trying it out in a project.
The questions I got are:
...
12
votes
6answers
794 views
“The C Programming Language” interesting quote in the preface
From the preface of the second edition of Kernighan and Ritchie's "The C Programming Language":
As before, all examples have been tested directly from the text, which is in machine-readable form.
...
4
votes
1answer
254 views
How to escape % in roxygen literate programming?
The default value of a parameter of my function contains a "%". This seems to be a problem for roxygen, it produces a lot of warnings and R CMD check fails when trying to build latex documentation.
...
31
votes
9answers
3k views
Is literate programming dead?
A fair bit is written about literate programming, but I've yet to see any project that uses it in any capacity, nor have I seen it used to teach programming. My sample may small, so I'm looking for ...
3
votes
2answers
974 views
R code in Sweave
I have a scientific paper under review, and a referee asked for my R code to be provided as a Sweave document. I've never heard of Sweave before, do you know what's the better way to do it?
Thanks a ...
19
votes
8answers
2k views
Sweave for python
I've recently started using Sweave* for creating reports of analyses run with R, and am now looking to do the same with my python scripts.
I've found references to embedding python in Sweave docs, ...
