[latex3-commits] [git/LaTeX3-latex3-pdfresources] master: pdf file links and testfiles (e0b9cdb)

Ulrike Fischer fischer at troubleshooting-tex.de
Sun Mar 22 21:51:03 CET 2020


Repository : https://github.com/latex3/pdfresources
On branch  : master
Link       : https://github.com/latex3/pdfresources/commit/e0b9cdb69a2361ec632780bebb67312cf89816dc

>---------------------------------------------------------------

commit e0b9cdb69a2361ec632780bebb67312cf89816dc
Author: Ulrike Fischer <fischer at troubleshooting-tex.de>
Date:   Sun Mar 22 21:51:03 2020 +0100

    pdf file links and testfiles


>---------------------------------------------------------------

e0b9cdb69a2361ec632780bebb67312cf89816dc
 hgeneric-experimental.def                          |  49 ++++----
 hyperreflinktypes.tex                              |   7 +-
 .../{pagelabels.pvt => pdffilelink.pvt}            |  10 +-
 testfiles-dvips/{ismap.tpf => pdffilelink.tpf}     | Bin 4655 -> 4589 bytes
 testfiles/pdffilelink.luatex.tpf                   | 137 +++++++++++++++++++++
 testfiles/pdffilelink.pvt                          |  14 +++
 testfiles/{ismap.tpf => pdffilelink.tpf}           | 120 +++++++++---------
 .../{annot.xetex.tpf => pdffilelink.xetex.tpf}     | 107 +++++++++-------
 8 files changed, 303 insertions(+), 141 deletions(-)

diff --git a/hgeneric-experimental.def b/hgeneric-experimental.def
index 1d61644..d357284 100644
--- a/hgeneric-experimental.def
+++ b/hgeneric-experimental.def
@@ -25,6 +25,7 @@
 %% \l__hyp_tmpa_tl
 %% \l__hyp_destname_tmpa_tl
 %% \l__hyp_uri_tmpa_tl
+%% \l__hyp_filename_tmpa_tl
 %% \l__hyp_CheckmarkYes_tl
 %% \l__hyp_CheckmarkOff_tl
 %% \l__hyp_RadioYes_tl
@@ -112,6 +113,7 @@
 \tl_new:N  \l__hyp_tmpa_tl
 \tl_new:N  \l__hyp_destname_tmpa_tl %needed?
 \tl_new:N  \l__hyp_uri_tmpa_tl
+\tl_new:N  \l__hyp_filename_tmpa_tl
 
 % const
 \tl_const:Nn \c__hyp_destname_undefined_tl {UNDEFINED}
@@ -639,39 +641,40 @@
 \ExplSyntaxOff
 
 \ExplSyntaxOn
-%file links (need to find out when exactly it is used ...)
-\def\hyper at linkfile#1#2#3{% anchor text, filename, linkname
-  \group_begin:
-    \def\Hy at pstringF{#2}%
-    \Hy at CleanupFile\Hy at pstringF
-    \Hy at pstringdef\Hy at pstringF\Hy at pstringF
-    \Hy at pstringdef\Hy at pstringD{#3}
+%file links to pdfs. See test-filelinks.pdf for a few example.
+\cs_new_protected:Npn \hyper at linkfile #1 #2 #3 % anchor text, filename, destname
+  {
+    \group_begin:
+    \tl_set:Nn \l__hyp_filename_tmpa_tl { #2 }
+    \Hy at CleanupFile \l__hyp_filename_tmpa_tl
+    \__hyp_pstringdef:No \l__hyp_filename_tmpa_tl { \l__hyp_filename_tmpa_tl }
+    \__hyp_pstringdef:Nn \l__hyp_destname_tmpa_tl { #3 }
     \Hy at MakeRemoteAction
     \mode_leave_vertical:
-    \pdf_link_user:nnn
-     { file }
-     {
-       /Subtype /Link
-       /A<<
-          /F(\Hy at pstringF)
+    \pdf_link_user:nnn %expansion??
+      { file }
+      {
+        /Subtype /Link
+        /A<<
+          /F( \l__hyp_filename_tmpa_tl )
           /S/GoToR
           \Hy at SetNewWindow
           \ifx\\#3\\
             /D[\Hy at href@page\@pdfremotestartview]
           \else
-            /D(\Hy at pstringD)
+            /D( \l__hyp_destname_tmpa_tl )
           \fi
           \Hy at href@nextactionraw
         >>
-     }
-     {
-       \Hy at colorlink
-        \@filecolor#1\Hy at xspace@end
-       \Hy at endcolorlink
-       \Hy at VerboseLinkStop
-     }
-  \group_end:
-}
+      }
+      {
+        \Hy at colorlink\@filecolor
+        #1\Hy at xspace@end
+        \Hy at endcolorlink
+        \Hy at VerboseLinkStop %where is the start??
+      }
+    \group_end:
+  }
 \ExplSyntaxOff
 
 \ExplSyntaxOn
diff --git a/hyperreflinktypes.tex b/hyperreflinktypes.tex
index 60451ea..0a56469 100644
--- a/hyperreflinktypes.tex
+++ b/hyperreflinktypes.tex
@@ -78,9 +78,12 @@ used in hyperref inside
 
 
  \hyper at linkfile
- 3 arguments
+ 3 arguments: anchor text, filename, destination inside the target
+ (the destination is the text after a #: \href{blub.pdf#destination})
  defined in the driver
  used in hyperref in
  \@hyper at linkfile file:#1\\#2#3#4
+ creates a GoToR action, so only used if the target is a pdf
+ hyperref checks if the file ends with pdf (\XR at ext) or has no extentions.
 
- true: \Hy at IfStringEndsWith{xyz.abc}{abc}{yes}{no}
\ No newline at end of file
+ (true: \Hy at IfStringEndsWith{xyz.abc}{abc}{yes}{no}) 
\ No newline at end of file
diff --git a/testfiles-dvips/pagelabels.pvt b/testfiles-dvips/pdffilelink.pvt
similarity index 50%
copy from testfiles-dvips/pagelabels.pvt
copy to testfiles-dvips/pdffilelink.pvt
index 61cf9a0..c2e0c4d 100644
--- a/testfiles-dvips/pagelabels.pvt
+++ b/testfiles-dvips/pdffilelink.pvt
@@ -1,20 +1,18 @@
 \input{regression-test}
 \documentclass{article}
+
 \usepackage{l3pdf}
 \ExplSyntaxOn
-\usepackage{pdfresources}
-\sys_if_engine_pdftex:T {\usepackage[LGR]{fontenc}}
 \pdf_uncompress:
 \ExplSyntaxOff
-\usepackage[pdfpagelabels=true,customdriver=hgeneric-experimental
-]{hyperref}
+\usepackage[customdriver=hgeneric-experimental]{hyperref}
 
-\renewcommand\thepage{λέγ\arabic{page}}
 \begin{document}
 \ExplSyntaxOn
 \pdf_info_gput:nn{CreationDate}{(D:20200202111111+01'00')}
 \pdf_info_gput:nn{ModDate}{(D:20200202111111+01'00')}
 \pdf_info_gput:nn{Creator}{(l3build test)}
 \ExplSyntaxOff
-abc \newpage abc \newpage abc  \newpage \pagenumbering{roman} abc  \newpage \pagenumbering{Roman}\setcounter{page}{5} abc
+\href{blub.pdf#destination}{pdf}
+
 \end{document}
diff --git a/testfiles-dvips/ismap.tpf b/testfiles-dvips/pdffilelink.tpf
similarity index 54%
copy from testfiles-dvips/ismap.tpf
copy to testfiles-dvips/pdffilelink.tpf
index 6e404bf..8c73364 100644
Binary files a/testfiles-dvips/ismap.tpf and b/testfiles-dvips/pdffilelink.tpf differ
diff --git a/testfiles/pdffilelink.luatex.tpf b/testfiles/pdffilelink.luatex.tpf
new file mode 100644
index 0000000..ea0ee1c
--- /dev/null
+++ b/testfiles/pdffilelink.luatex.tpf
@@ -0,0 +1,137 @@
+%PDF-1.5
+%ÌÕÁÔÅØÐÄÆ
+8 0 obj
+<< /Length 111 >>        
+stream
+BT
+/F25 9.96264 Tf
+1 0 0 1 148.712 707.125 Tm [<0054>-28<002F0037>]TJ
+1 0 0 1 303.133 139.255 Tm [<0052>]TJ
+ET
+endstream
+endobj
+5 0 obj
+<< /Type /Page /Contents 8 0 R /Resources 7 0 R /MediaBox [ 0 0 595.276 841.89 ] /Parent 12 0 R /Annots 13 0 R >>
+endobj
+13 0 obj
+[ 6 0 R ]
+endobj
+6 0 obj
+<< /Type /Annot /Rect [ 147.716 704.196 164.115 715.145 ]
+ /Subtype/Link/A<</F(blub.pdf)/S/GoToR/D(destination)>>
+ >>
+endobj
+9 0 obj
+<< /D [ 5 0 R /XYZ 132.768 754.95 null ] >>
+endobj
+10 0 obj
+<< /D [ 5 0 R /XYZ 133.768 717.088 null ] >>
+endobj
+7 0 obj
+<< /Font << /F25 11 0 R >> /ProcSet [ /PDF /Text ] >>
+endobj
+14 0 obj
+[ 47 [ 556 ] 55 [ 306 ] 82 [ 500 ] 84 [ 556 ] ]
+endobj
+16 0 obj
+<< /Length 11 >>         
+[BINARY STREAM]
+endobj
+17 0 obj
+<< /Subtype /CIDFontType0C /Length 958 >>        
+[BINARY STREAM]
+endobj
+15 0 obj
+<< /Type /FontDescriptor /FontName /OKGYYD+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 17 0 R /CIDSet 16 0 R >>
+endobj
+18 0 obj
+<< /Length 734 >>        
+stream
+%!PS-Adobe-3.0 Resource-CMap
+%%DocumentNeededResources: ProcSet (CIDInit)
+%%IncludeResource: ProcSet (CIDInit)
+%%BeginResource: CMap (TeX-OKGYYD-LMRoman10-Regular-0)
+%%Title: (TeX-OKGYYD-LMRoman10-Regular-0 TeX OKGYYD-LMRoman10-Regular 0)
+%%Version: 1.000
+%%EndComments
+/CIDInit /ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo
+<< /Registry (TeX)
+/Ordering (OKGYYD-LMRoman10-Regular)
+/Supplement 0
+>> def
+/CMapName /TeX-Identity-OKGYYD-LMRoman10-Regular def
+/CMapType 2 def
+1 begincodespacerange
+<0000> <FFFF>
+endcodespacerange
+0 beginbfrange
+endbfrange
+4 beginbfchar
+<002F> <0064>
+<0037> <0066>
+<0052> <0031>
+<0054> <0070>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+%%EndResource
+%%EOF
+endstream
+endobj
+11 0 obj
+<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /OKGYYD+LMRoman10-Regular /DescendantFonts [ 19 0 R ] /ToUnicode 18 0 R >>
+endobj
+19 0 obj
+<< /Type /Font /Subtype /CIDFontType0 /BaseFont /OKGYYD+LMRoman10-Regular /FontDescriptor 15 0 R /W 14 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >>
+endobj
+12 0 obj
+<< /Type /Pages  /Count 1 /Kids [ 5 0 R ] >>
+endobj
+20 0 obj
+<< /Names [ (Doc-Start) 10 0 R (page.1) 9 0 R ] /Limits [ (Doc-Start) (page.1) ] >>
+endobj
+21 0 obj
+<< /Dests 20 0 R >>
+endobj
+22 0 obj
+<< /Type /Catalog /Pages 12 0 R /Names 21 0 R /PageMode /UseOutlines/OpenAction [5 0 R /Fit]/PageLabels <</Nums[0<</S/D>>]>> >>
+endobj
+23 0 obj
+<< /Producer (LuaTeX)/Author ()/Title ()/Subject ()/Creator (LaTeX with hyperref)/CreationDate ()/ModDate ()/Keywords () /Trapped /False >>
+endobj
+xref
+0 24
+0000000001 65535 f 
+0000000002 00000 f 
+0000000003 00000 f 
+0000000004 00000 f 
+0000000000 00000 f 
+0000000190 00000 n 
+0000000345 00000 n 
+0000000598 00000 n 
+0000000020 00000 n 
+0000000478 00000 n 
+0000000537 00000 n 
+0000002874 00000 n 
+0000003228 00000 n 
+0000000319 00000 n 
+0000000667 00000 n 
+0000001844 00000 n 
+0000000731 00000 n 
+0000000802 00000 n 
+0000002080 00000 n 
+0000003028 00000 n 
+0000003289 00000 n 
+0000003389 00000 n 
+0000003425 00000 n 
+0000003569 00000 n 
+trailer
+<< /Size 24 /Root 22 0 R /Info 23 0 R >>
+startxref
+3725
+%%EOF
diff --git a/testfiles/pdffilelink.pvt b/testfiles/pdffilelink.pvt
new file mode 100644
index 0000000..c7c951a
--- /dev/null
+++ b/testfiles/pdffilelink.pvt
@@ -0,0 +1,14 @@
+\input{regression-test}
+\documentclass{article}
+
+\usepackage{l3pdf}
+\ExplSyntaxOn
+\pdf_uncompress:
+\ExplSyntaxOff
+\usepackage[customdriver=hgeneric-experimental]{hyperref}
+
+\begin{document}
+
+\href{blub.pdf#destination}{pdf}
+
+\end{document}
diff --git a/testfiles/ismap.tpf b/testfiles/pdffilelink.tpf
similarity index 55%
copy from testfiles/ismap.tpf
copy to testfiles/pdffilelink.tpf
index 8d10eda..a178912 100644
--- a/testfiles/ismap.tpf
+++ b/testfiles/pdffilelink.tpf
@@ -1,71 +1,64 @@
 %PDF-1.5
 %ÐÔÅØ
-9 0 obj
+8 0 obj
 <<
-/Length 104       
+/Length 81        
 >>
 stream
 BT
-/F8 9.9626 Tf 148.712 707.125 Td [(xxxxx)]TJ 0 -11.955 Td [(xxxxx)]TJ 154.421 -555.915 Td [(1)]TJ
+/F8 9.9626 Tf 148.712 707.125 Td [(p)-28(df)]TJ 154.421 -567.87 Td [(1)]TJ
 ET
 endstream
 endobj
 5 0 obj
 <<
 /Type /Page
-/Contents 9 0 R
-/Resources 8 0 R
+/Contents 8 0 R
+/Resources 7 0 R
 /MediaBox [0 0 595.276 841.89]
-/Parent 13 0 R
-/Annots [ 6 0 R 7 0 R ]
+/Parent 12 0 R
+/Annots [ 6 0 R ]
 >>
 endobj
 6 0 obj
 <<
 /Type /Annot
-/Rect [147.716 706.129 175.999 712.411]
-/Subtype/Link/A<</Type/Action /S/URI /URI(https://www.latex-project.org#abc~xyz) /IsMap true>>
->>
-endobj
-7 0 obj
-<<
-/Type /Annot
-/Rect [147.716 694.174 175.999 700.456]
-/Subtype/Link/A<</Type/Action /S/URI /URI(https://www.latex-project.org#abc~xyz) >>
+/Rect [147.716 704.192 164.099 715.04]
+/Subtype/Link/A<</F(blub.pdf)/S/GoToR/D(destination)>>
 >>
 endobj
-10 0 obj
+9 0 obj
 <<
 /D [5 0 R /XYZ 132.768 754.95 null]
 >>
 endobj
-11 0 obj
+10 0 obj
 <<
 /D [5 0 R /XYZ 133.768 717.088 null]
 >>
 endobj
-8 0 obj
+7 0 obj
 <<
-/Font << /F8 12 0 R >>
+/Font << /F8 11 0 R >>
 /ProcSet [ /PDF /Text ]
 >>
 endobj
-14 0 obj
-[500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8]
+13 0 obj
+[500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6]
 endobj
-15 0 obj
+14 0 obj
 <<
-/Length1 1380
-/Length2 6282
+/Length1 1410
+/Length2 8157
 /Length3 0
-/Length 7662      
+/Length 9567      
 >>
 [BINARY STREAM]
 endobj
-16 0 obj
+15 0 obj
 <<
 /Type /FontDescriptor
-/FontName /XKHRBG+CMR10
+/FontName /NQOYFO+CMR10
 /Flags 4
 /FontBBox [-40 -250 1009 750]
 /Ascent 694
@@ -74,81 +67,80 @@ endobj
 /ItalicAngle 0
 /StemV 69
 /XHeight 431
-/CharSet (/one/x)
-/FontFile 15 0 R
+/CharSet (/d/f/one/p)
+/FontFile 14 0 R
 >>
 endobj
-12 0 obj
+11 0 obj
 <<
 /Type /Font
 /Subtype /Type1
-/BaseFont /XKHRBG+CMR10
-/FontDescriptor 16 0 R
+/BaseFont /NQOYFO+CMR10
+/FontDescriptor 15 0 R
 /FirstChar 49
-/LastChar 120
-/Widths 14 0 R
+/LastChar 112
+/Widths 13 0 R
 >>
 endobj
-13 0 obj
+12 0 obj
 <<
 /Type /Pages
 /Count 1
 /Kids [5 0 R]
 >>
 endobj
-17 0 obj
+16 0 obj
 <<
-/Names [(Doc-Start) 11 0 R (page.1) 10 0 R]
+/Names [(Doc-Start) 10 0 R (page.1) 9 0 R]
 /Limits [(Doc-Start) (page.1)]
 >>
 endobj
-18 0 obj
+17 0 obj
 <<
-/Dests 17 0 R
+/Dests 16 0 R
 >>
 endobj
-19 0 obj
+18 0 obj
 <<
 /Type /Catalog
-/Pages 13 0 R
-/Names 18 0 R
+/Pages 12 0 R
+/Names 17 0 R
 /PageMode /UseOutlines/OpenAction [5 0 R /Fit]/PageLabels <</Nums[0<</S/D>>]>>
 >>
 endobj
-20 0 obj
+19 0 obj
 <<
 /Producer (pdfTeX)/Author ()/Title ()/Subject ()/Creator (LaTeX with hyperref)/CreationDate ()/ModDate ()/Keywords ()
 /Trapped /False
 >>
 endobj
 xref
-0 21
+0 20
 0000000001 65535 f 
 0000000002 00000 f 
 0000000003 00000 f 
 0000000004 00000 f 
 0000000000 00000 f 
-0000000177 00000 n 
-0000000313 00000 n 
-0000000482 00000 n 
-0000000757 00000 n 
+0000000154 00000 n 
+0000000284 00000 n 
+0000000528 00000 n 
 0000000015 00000 n 
-0000000640 00000 n 
-0000000698 00000 n 
-0000009213 00000 n 
-0000009353 00000 n 
-0000000825 00000 n 
-0000001232 00000 n 
-0000008992 00000 n 
-0000009411 00000 n 
-0000009508 00000 n 
-0000009544 00000 n 
-0000009688 00000 n 
+0000000412 00000 n 
+0000000469 00000 n 
+0000010845 00000 n 
+0000010985 00000 n 
+0000000596 00000 n 
+0000000955 00000 n 
+0000010620 00000 n 
+0000011043 00000 n 
+0000011139 00000 n 
+0000011175 00000 n 
+0000011319 00000 n 
 trailer
-<< /Size 21
-/Root 19 0 R
-/Info 20 0 R
+<< /Size 20
+/Root 18 0 R
+/Info 19 0 R
  >>
 startxref
-9844
+11475
 %%EOF
diff --git a/testfiles/annot.xetex.tpf b/testfiles/pdffilelink.xetex.tpf
similarity index 55%
copy from testfiles/annot.xetex.tpf
copy to testfiles/pdffilelink.xetex.tpf
index 4caab0a..e76d4fa 100644
--- a/testfiles/annot.xetex.tpf
+++ b/testfiles/pdffilelink.xetex.tpf
@@ -1,9 +1,13 @@
 %PDF-1.5
 %äðíø
+10 0 obj
+<</Type/Annot/Subtype/Link/A<</F(blub.pdf)/S/GoToR/D(destination)>>/Rect[147.716
+703.24 164.115 719.349]>>
+endobj
 11 0 obj
-<</Length 181>>
+<</Length 137>>
 stream
- q 1 0 0 1 72 769.89 cm BT /F1 9.9626 Tf 76.712 -62.765 Td[<00740074>]TJ ET BT /F1 9.9626 Tf 87.233 -62.765 Td[<00740074007600760078007800720072>]TJ 143.9 -567.87 Td[<0052>]TJ ET Q
+ q 1 0 0 1 72 769.89 cm BT /F1 9.9626 Tf 76.712 -62.765 Td[<0054>-28<002f0037>]TJ ET BT /F1 9.9626 Tf 231.133 -630.635 Td[<0052>]TJ ET Q
 endstream
 endobj
 12 0 obj
@@ -21,27 +25,35 @@ endobj
 7 0 obj
 <<>>
 endobj
-10 0 obj
-<</Type/Annot/Subtype/Widget/F 4/T(abc)/FT/Tx/Q 0/BS<</W 1/S/S>>/MK<</BC[1 0 0]/BG[1
-1 1]>>/DA(/Helv 10 Tf 0 0 0 rg)/DV()/V()/Rect[159.233 707.125 187.579 735.472]>>
+15 0 obj
+<</Names[(Doc-Start)13 0 R(page.1)14 0 R]>>
+endobj
+13 0 obj
+[3 0 R/XYZ 133.77 717.09 null]
 endobj
 14 0 obj
+[3 0 R/XYZ 132.77 754.95 null]
+endobj
+16 0 obj
+<</Dests 15 0 R>>
+endobj
+18 0 obj
 [10 0 R]
 endobj
 3 0 obj
-<</Resources 12 0 R/Type/Page/Parent 13 0 R/Contents[11 0 R]/Annots 14 0 R>>
+<</Resources 12 0 R/Type/Page/Parent 17 0 R/Contents[11 0 R]/Annots 18 0 R>>
 endobj
-13 0 obj
+17 0 obj
 <</Type/Pages/Count 1/Kids[3 0 R]/MediaBox[0 0 595.28 841.89]>>
 endobj
 2 0 obj
 <</Creator(TeX)/Producer(xdvipdfmx)/CreationDate(D:20160520090000-00'00')>>
 endobj
 1 0 obj
-<</Pages 13 0 R/Type/Catalog>>
+<</PageMode/UseOutlines/OpenAction[3 0 R/Fit]/Names 16 0 R/Pages 17 0 R/Type/Catalog>>
 endobj
-15 0 obj
-<</Length 412>>
+19 0 obj
+<</Length 398>>
 stream
 /CIDInit /ProcSet findresource begin
 12 dict begin
@@ -56,12 +68,11 @@ begincmap
 1 begincodespacerange
 <0000> <FFFF>
 endcodespacerange
-5 beginbfchar
+4 beginbfchar
+<002F> <0064>
+<0037> <0066>
 <0052> <0031>
-<0072> <0077>
-<0074> <0078>
-<0076> <0079>
-<0078> <007A>
+<0054> <0070>
 endbfchar
 endcmap
 CMapName currentdict /CMap defineresource pop
@@ -69,55 +80,59 @@ end
 end
 endstream
 endobj
-17 0 obj
-<</Subtype/CIDFontType0C/Length 1156>>
+21 0 obj
+<</Subtype/CIDFontType0C/Length 932>>
 [BINARY STREAM]
 endobj
-18 0 obj
-[82[500]114[722]116[528]118[528]120[444]]
+22 0 obj
+[47[556]55[306]82[500]84[556]]
 endobj
-19 0 obj
-<</Length 16>>
+23 0 obj
+<</Length 11>>
 [BINARY STREAM]
 endobj
 8 0 obj
 <</Type/Font/Subtype/CIDFontType0/BaseFont/EXQIVM+LMRoman10-Regular/CIDSystemInfo<</Registry(Adobe)/Ordering(Identity)/Supplement
-0>>/FontDescriptor 16 0 R/DW 280/W 18 0 R>>
+0>>/FontDescriptor 20 0 R/DW 280/W 22 0 R>>
 endobj
-16 0 obj
+20 0 obj
 <</Type/FontDescriptor/Ascent 806/Descent -194/StemV 69/CapHeight 806/AvgWidth 549/FontBBox[-430
 -290 1417 1127]/ItalicAngle 0/Flags 6/Style<</Panose<000000000500000000000000>>>/FontName/EXQIVM+LMRoman10-Regular/FontFile3
-17 0 R/CIDSet 19 0 R>>
+21 0 R/CIDSet 23 0 R>>
 endobj
 9 0 obj
 <</Type/Font/Subtype/Type0/BaseFont/EXQIVM+LMRoman10-Regular-Identity-H/Encoding/Identity-H/DescendantFonts[8 0 R]/ToUnicode
-15 0 R>>
+19 0 R>>
 endobj
 xref
-0 20
+0 24
 0000000000 65535 f 
-0000000936 00000 n 
-0000000845 00000 n 
-0000000673 00000 n 
-0000000386 00000 n 
-0000000406 00000 n 
-0000000426 00000 n 
-0000000446 00000 n 
-0000002796 00000 n 
-0000003246 00000 n 
-0000000466 00000 n 
+0000001021 00000 n 
+0000000930 00000 n 
+0000000758 00000 n 
+0000000465 00000 n 
+0000000485 00000 n 
+0000000505 00000 n 
+0000000525 00000 n 
+0000002682 00000 n 
+0000003132 00000 n 
 0000000015 00000 n 
-0000000246 00000 n 
-0000000765 00000 n 
-0000000648 00000 n 
-0000000982 00000 n 
-0000002985 00000 n 
-0000001444 00000 n 
-0000002673 00000 n 
-0000002731 00000 n 
+0000000138 00000 n 
+0000000325 00000 n 
+0000000605 00000 n 
+0000000652 00000 n 
+0000000545 00000 n 
+0000000699 00000 n 
+0000000850 00000 n 
+0000000733 00000 n 
+0000001123 00000 n 
+0000002871 00000 n 
+0000001571 00000 n 
+0000002575 00000 n 
+0000002622 00000 n 
 trailer
 <</Root 1 0 R/Info 2 0 R/ID[<ID-STRING><ID-STRING>]/Size
-20>>
+24>>
 startxref
-3395
+3281
 %%EOF





More information about the latex3-commits mailing list.