diff options
author | Karl Berry <karl@freefriends.org> | 2006-08-14 23:01:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-08-14 23:01:18 +0000 |
commit | 186b7afe6ad5783e819d1b2a7bec5095e8ff33db (patch) | |
tree | b0bf7ea11706b55630fe1e26f8a6cd6e12f3f2d1 /Master/texmf-dist/tex/latex | |
parent | 29d07a8cd3db51f6eeecc9b1d2cc4d8fd9c7466b (diff) |
pdftex-def 0.03t (14aug06)
git-svn-id: svn://tug.org/texlive/trunk@1959 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex')
-rw-r--r-- | Master/texmf-dist/tex/latex/pdftex-def/pdftex.def | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/latex/pdftex-def/pdftex.def b/Master/texmf-dist/tex/latex/pdftex-def/pdftex.def index e10ee89df99..8285c1e1942 100644 --- a/Master/texmf-dist/tex/latex/pdftex-def/pdftex.def +++ b/Master/texmf-dist/tex/latex/pdftex-def/pdftex.def @@ -1,4 +1,4 @@ -\ProvidesFile{pdftex.def}[2006/07/16 v0.03s Graphics/color for pdfTeX] +\ProvidesFile{pdftex.def}[2006/08/14 v0.03t Graphics/color for pdfTeX] %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% LaTeX Colour and Graphics support for PDFTeX @@ -120,7 +120,7 @@ % * \pagecolor support for plain-TeX fixed (HO). % 2006/05/17 v0.03q % * Error message if ConTeXt's supp-pdf.tex is missing and -% support of MPS files is not available (Markus Kohm, HO). +% support of MPS files is not available (Markus Kohm = MK, HO). % 2006/06/06 v0.03r % * \nopagecolor/\no@page@color added (HO). % 2006/07/16 v0.03s (HO) @@ -128,6 +128,10 @@ % * A little usage. % * Test for \MessageBreak changed (comp.text.tex, % message id: <44baca88$0$10529$9b4e6d93@newsread4.arcor-online.net>). +% 2006/08/14 v0.03t (HO) +% * Extensions added: .jpeg, .JPG, .JPEG, .PNG, .PDF +% No variants for .tif, because TIFF support is no longer available. +% No need for uppercase variant of .msp. % % prefix of internal commands for this file `pdftex.def': % \GPT@ (Graphics bundle PdfTex driver) @@ -839,20 +843,28 @@ % v0.02e: restrict the rules to just the types that pdftex can currently % deal with. \ifnum\driver@release>3 - \def\Gin@extensions{.png,.pdf,.jpg,.mps} + \def\Gin@extensions{.png,.pdf,.jpg,.mps,.jpeg,.PNG,.PDF,.JPG,.JPEG} \@namedef{Gin@rule@.jpg}#1{{jpg}{.jpg}{#1}} + \@namedef{Gin@rule@.jpeg}#1{{jpg}{.jpeg}{#1}} + \@namedef{Gin@rule@.JPG}#1{{jpg}{.JPG}{#1}} + \@namedef{Gin@rule@.JPEG}#1{{jpg}{.JPEG}{#1}} \ifnum\driver@release>5 \ifnum\driver@release<8 - \def\Gin@extensions{.png,.pdf,.jpg,.mps,.tif} + \def\Gin@extensions{% + .png,.pdf,.jpg,.mps,.tif,.jpeg,% + .PNG,.PDF,.JPG,.JPEG% + }% \@namedef{Gin@rule@.tif}#1{{tif}{.tif}{#1}} \fi \fi \else - \def\Gin@extensions{.png,.pdf,.mps} + \def\Gin@extensions{.png,.pdf,.mps,.PNG,.PDF} \fi \@namedef{Gin@rule@.png}#1{{png}{.png}{#1}} +\@namedef{Gin@rule@.PNG}#1{{png}{.PNG}{#1}} \@namedef{Gin@rule@.mps}#1{{mps}{.mps}{#1}} \@namedef{Gin@rule@.pdf}#1{{pdf}{.pdf}{#1}} +\@namedef{Gin@rule@.PDF}#1{{pdf}{.PDF}{#1}} % Rotation |