ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Denis Maier via ntg-context <ntg-context@ntg.nl>
To: <ntg-context@ntg.nl>
Cc: denis.maier@unibe.ch
Subject: Re: adding module to ConTeXt basic installation
Date: Thu, 11 Nov 2021 09:06:08 +0000	[thread overview]
Message-ID: <369849efbcf94825828d6f9d26a18bb2@unibe.ch> (raw)
In-Reply-To: <AA008283-FBA3-48AA-A352-F754E0391FC8@scorecrow.com>

Bruce,
I think what the Amine is referring to with "render" is running the code through an external program, and including the result of that external process in your document. Something like this: 
%%%%%%%%%%%%%%%%%%%%%%%%%
The result of 1 + 1 is \pythoncode{1 + 1}
%%%%%%%%%%%%%%%%%%%%%%%%%

The filter module can be used to execute the pythoncode include the result in your context document. So, you'll end up with:
%%%%%%%%%%%%%%%%%%%%%%%%%
The result of 1 + 1 is 2
%%%%%%%%%%%%%%%%%%%%%%%%%

Denis

> -----Ursprüngliche Nachricht-----
> Von: ntg-context <ntg-context-bounces@ntg.nl> Im Auftrag von Bruce
> Horrocks via ntg-context
> Gesendet: Samstag, 6. November 2021 21:02
> An: mailing list for ConTeXt users <ntg-context@ntg.nl>
> Cc: Bruce Horrocks <ntg@scorecrow.com>
> Betreff: Re: [NTG-context] adding module to ConTeXt basic installation
> 
> On 6 Nov 2021, at 10:55, A A via ntg-context <ntg-context@ntg.nl> wrote:
> >
> > Dear All,
> >
> > I installed ConTeXt on my windows machine using the instructions provided
> here:
> >
> >  - https://wiki.contextgarden.net/Installation
> >
> > I would like to now render some python code in my pdf. For this I need
> > to install this module: https://github.com/adityam/filter
> >
> > How do I add this module to my current installation? Thanks for your
> consideration.
> 
> I'm not quite sure what you mean by 'render' Python code. If you just mean
> to typeset it using a monospaced font so that the indentation is preserved
> then a simple \definetyping is probably all that you need.
> 
> e.g.
> \definetyping[PythonSource][style=\mono]
> \starttext
> This is taken from Rosetta Code:\par
> \startPythonSource
> def eratosthenes2(n):
>     multiples = set()
>     for i in range(2, n+1):
>         if i not in multiples:
>             yield i
>             multiples.update(range(i*i, n+1, i))
> 
> print(list(eratosthenes2(100)))
> \stopPythonSource
> \stoptext
> 
> If the source code is in a file then you can read the file directly with:
> \typefile [PythonSource] [ ] {filename.py}
> 
> If you wanted to typeset your code with syntax highlighting/colouring then
> there are more advanced options to \definetyping that can be used and
> there is also the Vim module.
> <https://anorien.csc.warwick.ac.uk/mirrors/CTAN/macros/context/contrib/c
> ontext-vim/doc/context/third/vim/vim.txt>
> 
> Regards,
> —
> Bruce Horrocks
> Hampshire, UK
> 
> __________________________________________________________
> _________________________
> If your question is of interest to others as well, please add an entry to the
> Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-
> context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net archive  :
> https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> __________________________________________________________
> _________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

  reply	other threads:[~2021-11-11  9:06 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-06 10:55 A A via ntg-context
2021-11-06 20:01 ` Bruce Horrocks via ntg-context
2021-11-11  9:06   ` Denis Maier via ntg-context [this message]
2021-11-07 16:38 ` Hans Hagen via ntg-context

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=369849efbcf94825828d6f9d26a18bb2@unibe.ch \
    --to=ntg-context@ntg.nl \
    --cc=denis.maier@unibe.ch \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).