ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* producing a pdf/X-1a:2001 file
@ 2010-06-26  0:34 Ciro
  2010-06-26  2:36 ` luigi scarso
  0 siblings, 1 reply; 8+ messages in thread
From: Ciro @ 2010-06-26  0:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users

The company that is printing my book requires format
PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.

I wonder if there will be a problem, and if so, how can I do the
conversion to X-1a:2001?

thank you

Ciro
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-26  0:34 producing a pdf/X-1a:2001 file Ciro
@ 2010-06-26  2:36 ` luigi scarso
  2010-06-26 11:14   ` Peter Rolf
  0 siblings, 1 reply; 8+ messages in thread
From: luigi scarso @ 2010-06-26  2:36 UTC (permalink / raw)
  To: ciro, mailing list for ConTeXt users

On Sat, Jun 26, 2010 at 2:34 AM, Ciro <ciro@kavyata.com> wrote:
> The company that is printing my book requires format
> PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.
>
> I wonder if there will be a problem, and if so, how can I do the
> conversion to X-1a:2001?
It's a complex subject, I fear that you need acrobat to be sure or
defend your result

Anyway
http://www.tug.org/pipermail/pdftex/2009-June/thread.html#8050
-- 
luigi
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-26  2:36 ` luigi scarso
@ 2010-06-26 11:14   ` Peter Rolf
  2010-06-26 20:25     ` Ciro
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Rolf @ 2010-06-26 11:14 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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

Am 26.06.2010 04:36, schrieb luigi scarso:
> On Sat, Jun 26, 2010 at 2:34 AM, Ciro <ciro@kavyata.com> wrote:
>> The company that is printing my book requires format
>> PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.
>>
>> I wonder if there will be a problem, and if so, how can I do the
>> conversion to X-1a:2001?
> It's a complex subject, I fear that you need acrobat to be sure or
> defend your result
>
> Anyway
> http://www.tug.org/pipermail/pdftex/2009-June/thread.html#8050

Context should be able to produce PDF/X-1a:2003 so far (donno the
difference to the 2001 version). I will look into it tomorrow (no time
now). To give you a first impression what is needed (data,formats), I
attached a test file (mkiv only) for the 2003 variant.


Best wishes, Peter

[-- Attachment #2: pdfx-1a2003.tex --]
[-- Type: text/plain, Size: 1176 bytes --]

% PDF/X-1a
\pdfminorversion=3
\pdfobjcompresslevel=0
\setupcolors[rgb=no]% only CMYK and Gray allowed


%\embedICCprofile{CMYK}{ISOcoated_v2_300_eci.icc}

\usePDFXoutputintent
  [%reference=no,
   info={ISO Coated v2 (ECI)},
   outputcondition={Offset printing, according to ISO 12647-2:2004/Amd 1, OFCOM, paper type 1 or 2 = coated art, 115 g/m2, tone value increase curves A (CMY) and B (K)},
   id=FOGRA39,
   name=http://www.color.org]


\starttext

\setupinteraction
  [title=TITLE,
   subtitle=SUBTITLE,
   author=AUTHOR,
   keyword={{KEYWORD1, KEYWORD2}, KEYWORD3},
  ]


\startluacode
-- PDF/X-1a:2003
lpdf.addtoinfo("GTS_PDFXVersion","PDF/X-1a:2003")
lpdf.injectxmpinfo("xml://rdf:RDF","<rdf:Description rdf:about='' xmlns:pdfxid='http://www.npes.org/pdfx/ns/id/'><pdfxid:GTS_PDFXVersion>PDF/X-1a:2003</pdfxid:GTS_PDFXVersion></rdf:Description>",false)
\stopluacode
\null

\definecolor[cmykblack][k=1]

\hbox\bgroup
\blackrule[color=cyan,width=1cm,height=1cm]%
\blackrule[color=magenta,width=1cm,height=1cm]%
\blackrule[color=yellow,width=1cm,height=1cm]%
\blackrule[color=cmykblack,width=1cm,height=1cm]
\egroup

\stoptext

[-- Attachment #3: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-26 11:14   ` Peter Rolf
@ 2010-06-26 20:25     ` Ciro
  2010-06-27 14:13       ` Peter Rolf
  0 siblings, 1 reply; 8+ messages in thread
From: Ciro @ 2010-06-26 20:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Peter, thank you for you file.
I tested it, but the \usePDFXoutputintent
command is not understood by texexec.

thank you
ciro





On Sat, Jun 26, 2010 at 7:14 AM, Peter Rolf <indiego@gmx.net> wrote:
> Am 26.06.2010 04:36, schrieb luigi scarso:
>> On Sat, Jun 26, 2010 at 2:34 AM, Ciro <ciro@kavyata.com> wrote:
>>> The company that is printing my book requires format
>>> PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.
>>>
>>> I wonder if there will be a problem, and if so, how can I do the
>>> conversion to X-1a:2001?
>> It's a complex subject, I fear that you need acrobat to be sure or
>> defend your result
>>
>> Anyway
>> http://www.tug.org/pipermail/pdftex/2009-June/thread.html#8050
>
> Context should be able to produce PDF/X-1a:2003 so far (donno the
> difference to the 2001 version). I will look into it tomorrow (no time
> now). To give you a first impression what is needed (data,formats), I
> attached a test file (mkiv only) for the 2003 variant.
>
>
> Best wishes, Peter
>
> ___________________________________________________________________________________
> 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://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-26 20:25     ` Ciro
@ 2010-06-27 14:13       ` Peter Rolf
  2010-06-27 15:55         ` Ciro
  2010-06-27 23:41         ` producing a pdf/X-1a:2001 file Ciro
  0 siblings, 2 replies; 8+ messages in thread
From: Peter Rolf @ 2010-06-27 14:13 UTC (permalink / raw)
  To: ciro, mailing list for ConTeXt users

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

Am 26.06.2010 22:25, schrieb Ciro:
> Peter, thank you for you file.
> I tested it, but the \usePDFXoutputintent
> command is not understood by texexec.
>
true. the example code is mkiv only. as mkii is frozen (no new features)
pdf/x support is limited to mkiv. you also wrote
'The file produced by LuaTex is PDF 1.5.', so where is the problem? ;)

mkii (pdftex): texexec yourbook.tex
mkiv (luatex): context yourbook.tex

anyhow, here is an interesting link about pdf/x-1a

http://www.prepressure.com/pdf/basics/pdfx-1a

there a quite a lot of other restrictions in pdf/x-1a (aside from what
can be handled in context). be sure to fulfil them all.
and you have to ask your printing house, what output intent is used
(probably stated on their side).

updated test files (now one for each version) are attached.


> thank you
> ciro
> 
> 
> 
> 
> 
> On Sat, Jun 26, 2010 at 7:14 AM, Peter Rolf <indiego@gmx.net> wrote:
>> Am 26.06.2010 04:36, schrieb luigi scarso:
>>> On Sat, Jun 26, 2010 at 2:34 AM, Ciro <ciro@kavyata.com> wrote:
>>>> The company that is printing my book requires format
>>>> PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.
>>>>
>>>> I wonder if there will be a problem, and if so, how can I do the
>>>> conversion to X-1a:2001?
>>> It's a complex subject, I fear that you need acrobat to be sure or
>>> defend your result
>>>
>>> Anyway
>>> http://www.tug.org/pipermail/pdftex/2009-June/thread.html#8050
>>
>> Context should be able to produce PDF/X-1a:2003 so far (donno the
>> difference to the 2001 version). I will look into it tomorrow (no time
>> now). To give you a first impression what is needed (data,formats), I
>> attached a test file (mkiv only) for the 2003 variant.
>>
>>
>> Best wishes, Peter
>>
>> ___________________________________________________________________________________
>> 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://tex.aanhet.net
>> archive  : http://foundry.supelec.fr/projects/contextrev/
>> 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://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
> 


[-- Attachment #2: pdfx-1a2003.tex --]
[-- Type: text/plain, Size: 1226 bytes --]

% PDF/X-1a:2003
\pdfminorversion=4% PDF/X-1a:2003 allows PDF1.4, but no transparency, JBIG2 compression
\setupcolors[rgb=no]% only CMYK and Gray allowed


%\embedICCprofile{CMYK}{ISOcoated_v2_300_eci.icc}

\usePDFXoutputintent
  [%reference=no,
   info={ISO Coated v2 (ECI)},
   outputcondition={Offset printing, according to ISO 12647-2:2004/Amd 1, OFCOM, paper type 1 or 2 = coated art, 115 g/m2, tone value increase curves A (CMY) and B (K)},
   id=FOGRA39,
   name=http://www.color.org]


\starttext

\setupinteraction
  [title=TITLE,
   subtitle=SUBTITLE,
   author=AUTHOR,
   keyword={{KEYWORD1, KEYWORD2}, KEYWORD3},
  ]


\startluacode
-- PDF/X-1a:2003
lpdf.addtoinfo("GTS_PDFXVersion","PDF/X-1a:2003")
lpdf.injectxmpinfo("xml://rdf:RDF","<rdf:Description rdf:about='' xmlns:pdfxid='http://www.npes.org/pdfx/ns/id/'><pdfxid:GTS_PDFXVersion>PDF/X-1a:2003</pdfxid:GTS_PDFXVersion></rdf:Description>",false)
\stopluacode
\null

\definecolor[cmykblack][k=1]

\hbox\bgroup
\blackrule[color=cyan,width=1cm,height=1cm]%
\blackrule[color=magenta,width=1cm,height=1cm]%
\blackrule[color=yellow,width=1cm,height=1cm]%
\blackrule[color=cmykblack,width=1cm,height=1cm]
\egroup

\stoptext

[-- Attachment #3: pdfx-1a2001.tex --]
[-- Type: text/plain, Size: 1226 bytes --]

% PDF/X-1a:2001
\pdfminorversion=3% PDF/X-1a:2003 allows PDF1.4, but no transparency, JBIG2 compression
\setupcolors[rgb=no]% only CMYK and Gray allowed


%\embedICCprofile{CMYK}{ISOcoated_v2_300_eci.icc}

\usePDFXoutputintent
  [%reference=no,
   info={ISO Coated v2 (ECI)},
   outputcondition={Offset printing, according to ISO 12647-2:2004/Amd 1, OFCOM, paper type 1 or 2 = coated art, 115 g/m2, tone value increase curves A (CMY) and B (K)},
   id=FOGRA39,
   name=http://www.color.org]


\starttext

\setupinteraction
  [title=TITLE,
   subtitle=SUBTITLE,
   author=AUTHOR,
   keyword={{KEYWORD1, KEYWORD2}, KEYWORD3},
  ]


\startluacode
-- PDF/X-1a:2001
lpdf.addtoinfo("GTS_PDFXVersion","PDF/X-1a:2001")
lpdf.injectxmpinfo("xml://rdf:RDF","<rdf:Description rdf:about='' xmlns:pdfxid='http://www.npes.org/pdfx/ns/id/'><pdfxid:GTS_PDFXVersion>PDF/X-1a:2001</pdfxid:GTS_PDFXVersion></rdf:Description>",false)
\stopluacode
\null

\definecolor[cmykblack][k=1]

\hbox\bgroup
\blackrule[color=cyan,width=1cm,height=1cm]%
\blackrule[color=magenta,width=1cm,height=1cm]%
\blackrule[color=yellow,width=1cm,height=1cm]%
\blackrule[color=cmykblack,width=1cm,height=1cm]
\egroup

\stoptext

[-- Attachment #4: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-27 14:13       ` Peter Rolf
@ 2010-06-27 15:55         ` Ciro
  2010-06-27 16:03           ` Fonts not found (was: producing a pdf/X-1a:2001 file) Wolfgang Schuster
  2010-06-27 23:41         ` producing a pdf/X-1a:2001 file Ciro
  1 sibling, 1 reply; 8+ messages in thread
From: Ciro @ 2010-06-27 15:55 UTC (permalink / raw)
  To: ntg-context

I just installed ConTeXt minimals, but my fonts are not found now:

"define fonts    > font with name Barnard-Oblique is not found"

font files are there, but some how context can't see them.

I ran "context --generate" and got lines like this:

MTXrun | resolvers: not saving runtime tree
'tree:////home/ciro/context/tex/texmf-fonts'
MTXrun | resolvers: not saving runtime tree
'tree:////home/ciro/context/tex/texmf-local'
MTXrun | resolvers: not saving runtime tree
'tree:////home/ciro/context/tex/texmf-linux'
MTXrun | resolvers: not saving runtime tree
'tree:////home/ciro/context/tex/texmf-context


and also ran "mtxrun --script fonts --reload" and got lines like this:

MTXrun | fontnames: scanning /home/ciro/context/tex/texmf for AFM files
MTXrun | fontnames: 3323 entries found, 0 AFM files checked, 0 okay

MTXrun | fontnames: globbing path /home/ciro/.fonts/**.ttf
MTXrun | fontnames: identifying system font files with suffix TTF
MTXrun | fontnames: globbing path /home/ciro/.fonts/**.TTF
MTXrun | fontnames: 639 system files identified, 39 skipped, 39
duplicates, 600 hash entries added

what should I do?

thank you
Ciro
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Fonts not found (was: producing a pdf/X-1a:2001 file)
  2010-06-27 15:55         ` Ciro
@ 2010-06-27 16:03           ` Wolfgang Schuster
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Schuster @ 2010-06-27 16:03 UTC (permalink / raw)
  To: ciro, mailing list for ConTeXt users

Am 27.06.10 17:55, schrieb Ciro:
> I just installed ConTeXt minimals, but my fonts are not found now:
>
> "define fonts>  font with name Barnard-Oblique is not found"
>
> font files are there, but some how context can't see them.
>
> I ran "context --generate" and got lines like this:
>
> MTXrun | resolvers: not saving runtime tree
> 'tree:////home/ciro/context/tex/texmf-fonts'
> MTXrun | resolvers: not saving runtime tree
> 'tree:////home/ciro/context/tex/texmf-local'
> MTXrun | resolvers: not saving runtime tree
> 'tree:////home/ciro/context/tex/texmf-linux'
> MTXrun | resolvers: not saving runtime tree
> 'tree:////home/ciro/context/tex/texmf-context
>
>
> and also ran "mtxrun --script fonts --reload" and got lines like this:
>
> MTXrun | fontnames: scanning /home/ciro/context/tex/texmf for AFM files
> MTXrun | fontnames: 3323 entries found, 0 AFM files checked, 0 okay
>
> MTXrun | fontnames: globbing path /home/ciro/.fonts/**.ttf
> MTXrun | fontnames: identifying system font files with suffix TTF
> MTXrun | fontnames: globbing path /home/ciro/.fonts/**.TTF
> MTXrun | fontnames: 639 system files identified, 39 skipped, 39
> duplicates, 600 hash entries added
>
> what should I do?
>    

1. Change the subject of the thread.

2. Tell us where you put the fonts.

3. Show us a test document and your typescripts.

Wolfgang

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: producing a pdf/X-1a:2001 file
  2010-06-27 14:13       ` Peter Rolf
  2010-06-27 15:55         ` Ciro
@ 2010-06-27 23:41         ` Ciro
  1 sibling, 0 replies; 8+ messages in thread
From: Ciro @ 2010-06-27 23:41 UTC (permalink / raw)
  To: Peter Rolf; +Cc: mailing list for ConTeXt users

I found open source pstill to do conversions between pdf versions...
It seems to work fine.
http://www.pstill.com/

thank you for your help

Ciro


-- Links:
http://www-personal.engin.umd.umich.edu/~cirosoto/
http://www.TheGuitarMakerExploration.com
https://www.createspace.com/3392936



On Sun, Jun 27, 2010 at 10:13 AM, Peter Rolf <indiego@gmx.net> wrote:
> Am 26.06.2010 22:25, schrieb Ciro:
>> Peter, thank you for you file.
>> I tested it, but the \usePDFXoutputintent
>> command is not understood by texexec.
>>
> true. the example code is mkiv only. as mkii is frozen (no new features)
> pdf/x support is limited to mkiv. you also wrote
> 'The file produced by LuaTex is PDF 1.5.', so where is the problem? ;)
>
> mkii (pdftex): texexec yourbook.tex
> mkiv (luatex): context yourbook.tex
>
> anyhow, here is an interesting link about pdf/x-1a
>
> http://www.prepressure.com/pdf/basics/pdfx-1a
>
> there a quite a lot of other restrictions in pdf/x-1a (aside from what
> can be handled in context). be sure to fulfil them all.
> and you have to ask your printing house, what output intent is used
> (probably stated on their side).
>
> updated test files (now one for each version) are attached.
>
>
>> thank you
>> ciro
>>
>>
>>
>>
>>
>> On Sat, Jun 26, 2010 at 7:14 AM, Peter Rolf <indiego@gmx.net> wrote:
>>> Am 26.06.2010 04:36, schrieb luigi scarso:
>>>> On Sat, Jun 26, 2010 at 2:34 AM, Ciro <ciro@kavyata.com> wrote:
>>>>> The company that is printing my book requires format
>>>>> PDF/X-1a:2001.  The file produced by LuaTex is PDF 1.5.
>>>>>
>>>>> I wonder if there will be a problem, and if so, how can I do the
>>>>> conversion to X-1a:2001?
>>>> It's a complex subject, I fear that you need acrobat to be sure or
>>>> defend your result
>>>>
>>>> Anyway
>>>> http://www.tug.org/pipermail/pdftex/2009-June/thread.html#8050
>>>
>>> Context should be able to produce PDF/X-1a:2003 so far (donno the
>>> difference to the 2001 version). I will look into it tomorrow (no time
>>> now). To give you a first impression what is needed (data,formats), I
>>> attached a test file (mkiv only) for the 2003 variant.
>>>
>>>
>>> Best wishes, Peter
>>>
>>> ___________________________________________________________________________________
>>> 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://tex.aanhet.net
>>> archive  : http://foundry.supelec.fr/projects/contextrev/
>>> 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://tex.aanhet.net
>> archive  : http://foundry.supelec.fr/projects/contextrev/
>> 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-06-27 23:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-26  0:34 producing a pdf/X-1a:2001 file Ciro
2010-06-26  2:36 ` luigi scarso
2010-06-26 11:14   ` Peter Rolf
2010-06-26 20:25     ` Ciro
2010-06-27 14:13       ` Peter Rolf
2010-06-27 15:55         ` Ciro
2010-06-27 16:03           ` Fonts not found (was: producing a pdf/X-1a:2001 file) Wolfgang Schuster
2010-06-27 23:41         ` producing a pdf/X-1a:2001 file Ciro

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).