ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Aditya Mahajan via ntg-context <ntg-context@ntg.nl>
To: Jethro Djan via ntg-context <ntg-context@ntg.nl>
Cc: Aditya Mahajan <adityam@umich.edu>
Subject: Re: Clipping multiple PDFs
Date: Tue, 23 Aug 2022 11:27:03 -0400 (EDT)	[thread overview]
Message-ID: <nycvar.YAK.7.78.908.2208231109170.125139@nqv-guvaxcnq> (raw)
In-Reply-To: <322352C8-805C-4B30-97A7-80F560A32251@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1411 bytes --]

On Mon, 22 Aug 2022, Jethro Djan via ntg-context wrote:

> 
> Thanks for the solution Pablo. It works well.
> 
> I wanted to add more pdfs (which also has many pages) and found it was easier for me to reason in the lua side of things. This is what I have at the moment:
> 
> \starttext
> \startluacode
>   local function doc(fil)
>     return fil..[[.pdf]]
>   end
> 
>   local function disppdf(fname)
>     n = 1 
>     repeat 
>       context.externalfigure({fname},{
>         page = n,
>         width = "200mm",
>         scale = "950"
>       })
>       n = n + 1
>     until n == context(context.noffigurepages)
>   end
> 
>   local pdffiles = {"ass1", "ass2", "ass3", "ass4", "ass5", "ass6", "ass7", "ass8"}
>   for index=1,#pdffiles do 
>     local f = doc(pdffiles[index])
>     context.getfiguredimensions({f})
>     disppdf(pdffiles[index])
>   end
> \stopluacode
> \stoptext
> 
> I didn’t know how to get an array (or indexed table or whatever you call it) in ConTeXt/Tex. My problem is now with context(context.noffigurepages). It doesn’t produce an integer so n is being compared to nil. Am I calling it wrong? All I want to do is call \noffigurepages from the lua side. Is there something I am missing?

For a more low-level interface to finding the number of pages, see:

https://adityam.github.io/context-blog/post/include-multi-page-pdf/

Aditya

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

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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

  reply	other threads:[~2022-08-23 15:27 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-22 15:43 Jethro Djan via ntg-context
2022-08-23 15:27 ` Aditya Mahajan via ntg-context [this message]
2022-08-23 17:38   ` Pablo Rodriguez via ntg-context
2022-08-23 17:47     ` Aditya Mahajan via ntg-context
  -- strict thread matches above, loose matches on Subject: below --
2022-08-22 15:44 Jethro Djan via ntg-context
2022-08-18  0:13 jethro Reuel via ntg-context
2022-08-21 16:41 ` Pablo Rodriguez via ntg-context
2022-08-22 15:46   ` Jethro Djan via ntg-context
2022-08-23 15:57     ` Pablo Rodriguez via ntg-context
2022-08-23 17:12       ` Jethro Djan via ntg-context
2022-08-23 17:50         ` Pablo Rodriguez 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=nycvar.YAK.7.78.908.2208231109170.125139@nqv-guvaxcnq \
    --to=ntg-context@ntg.nl \
    --cc=adityam@umich.edu \
    /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).