• Getting Started

    From [email protected]@21:1/5 to All on Fri Mar 4 15:48:01 2016
    Hello Everyone

    My Name is Andrew Kohnen. I am new to literate programming want to give noweb a try. However there is a lack of good tutorials on how to install and run noweb.

    At this time, all I want to do is be able to create simple .nw file that I will be able to turn into a pdf or tex file with the word "Hello" with weave and a simple java program that prints out "hello" with the tangle

    Something like this:
    <<input.tex>>=
    \documentclass{article}
    \usepackage{graphicx}
    \usepackage{xcolor}
    \definecolor{background}{HTML}{F68767}
    \begin{document}
    hello
    \end{document}
    @

    <<test.java>>=
    public class test {

    public static void main(String[] args) {
    System.out.println("Hello");
    }

    }
    @


    I am in desperate need of help with this. Thank you for reading.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dr Engelbert Buxbaum@21:1/5 to All on Sat May 11 03:31:24 2024
    In article <nbcsa1$m1b$[email protected]>, [email protected]
    says...

    Hello Everyone

    My Name is Andrew Kohnen. I am new to literate programming want to give noweb a try. However there is a lack of good tutorials on how to install and run noweb.

    For Linux, installing noweb is easy, just use the package manager of
    your system. For windows, install the windows subsystem for Linux (WSL),
    then Ubuntu and in there noweb as above. You then run noweave and
    notangle in WSL and use their output under MikTeX. I find it easiest to
    copy noweb.sty to my windows localtexmf directory, but that is optional.

    I have described the procedure in detail in comp.text.tex a couple of
    years ago.

    noweb itself comes with a decent documentation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)