ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Bruce Horrocks via ntg-context <ntg-context@ntg.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Bruce Horrocks <ntg@scorecrow.com>
Subject: Re: adding module to ConTeXt basic installation
Date: Sat, 6 Nov 2021 20:01:37 +0000	[thread overview]
Message-ID: <AA008283-FBA3-48AA-A352-F754E0391FC8@scorecrow.com> (raw)
In-Reply-To: <CAMwawgOSkXs9orm6cQy-uQ3apGsH6sqK8vNhuRj87df+twWKbA@mail.gmail.com>

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/context-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
___________________________________________________________________________________

  reply	other threads:[~2021-11-06 20:01 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 [this message]
2021-11-11  9:06   ` Denis Maier via ntg-context
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=AA008283-FBA3-48AA-A352-F754E0391FC8@scorecrow.com \
    --to=ntg-context@ntg.nl \
    --cc=ntg@scorecrow.com \
    /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).