Compatibility between LuaLaTeX and the transparent package

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite












If I run the example below with LuaLaTeX, the transparent package doesn't load with the error: Package transparent Warning: Your pdfTeX version does not support color stacks. (a pretty clear error message)



documentclassminimal
usepackagetransparent

begindocument
transparent0.5Ciao
enddocument


I have a bunch of images generated by Inkscape which contain the transparent command, and at the moment I simply defined an empty transparent command to avoid the error, but I'd like to know if there's a better workaround to maintain the transparency.










share|improve this question

















  • 1




    github.com/ho-tex/oberdiek/issues/47
    – David Carlisle
    22 hours ago














up vote
3
down vote

favorite












If I run the example below with LuaLaTeX, the transparent package doesn't load with the error: Package transparent Warning: Your pdfTeX version does not support color stacks. (a pretty clear error message)



documentclassminimal
usepackagetransparent

begindocument
transparent0.5Ciao
enddocument


I have a bunch of images generated by Inkscape which contain the transparent command, and at the moment I simply defined an empty transparent command to avoid the error, but I'd like to know if there's a better workaround to maintain the transparency.










share|improve this question

















  • 1




    github.com/ho-tex/oberdiek/issues/47
    – David Carlisle
    22 hours ago












up vote
3
down vote

favorite









up vote
3
down vote

favorite











If I run the example below with LuaLaTeX, the transparent package doesn't load with the error: Package transparent Warning: Your pdfTeX version does not support color stacks. (a pretty clear error message)



documentclassminimal
usepackagetransparent

begindocument
transparent0.5Ciao
enddocument


I have a bunch of images generated by Inkscape which contain the transparent command, and at the moment I simply defined an empty transparent command to avoid the error, but I'd like to know if there's a better workaround to maintain the transparency.










share|improve this question













If I run the example below with LuaLaTeX, the transparent package doesn't load with the error: Package transparent Warning: Your pdfTeX version does not support color stacks. (a pretty clear error message)



documentclassminimal
usepackagetransparent

begindocument
transparent0.5Ciao
enddocument


I have a bunch of images generated by Inkscape which contain the transparent command, and at the moment I simply defined an empty transparent command to avoid the error, but I'd like to know if there's a better workaround to maintain the transparency.







luatex transparent






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 22 hours ago









Massimo Ortolano

745513




745513







  • 1




    github.com/ho-tex/oberdiek/issues/47
    – David Carlisle
    22 hours ago












  • 1




    github.com/ho-tex/oberdiek/issues/47
    – David Carlisle
    22 hours ago







1




1




github.com/ho-tex/oberdiek/issues/47
– David Carlisle
22 hours ago




github.com/ho-tex/oberdiek/issues/47
– David Carlisle
22 hours ago










1 Answer
1






active

oldest

votes

















up vote
4
down vote



accepted










You should not use minimal (see Why should the minimal class be avoided?).



Two alternatives:




  1. standalone



    documentclassstandalone
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument



  2. article with the luatex85 package:



    RequirePackageluatex85
    documentclassarticle
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument






share|improve this answer




















  • Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
    – TeXnician
    22 hours ago










  • Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
    – TeXnician
    22 hours ago






  • 1




    @MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
    – TeXnician
    19 hours ago










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f450555%2fcompatibility-between-lualatex-and-the-transparent-package%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
4
down vote



accepted










You should not use minimal (see Why should the minimal class be avoided?).



Two alternatives:




  1. standalone



    documentclassstandalone
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument



  2. article with the luatex85 package:



    RequirePackageluatex85
    documentclassarticle
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument






share|improve this answer




















  • Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
    – TeXnician
    22 hours ago










  • Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
    – TeXnician
    22 hours ago






  • 1




    @MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
    – TeXnician
    19 hours ago














up vote
4
down vote



accepted










You should not use minimal (see Why should the minimal class be avoided?).



Two alternatives:




  1. standalone



    documentclassstandalone
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument



  2. article with the luatex85 package:



    RequirePackageluatex85
    documentclassarticle
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument






share|improve this answer




















  • Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
    – TeXnician
    22 hours ago










  • Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
    – TeXnician
    22 hours ago






  • 1




    @MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
    – TeXnician
    19 hours ago












up vote
4
down vote



accepted







up vote
4
down vote



accepted






You should not use minimal (see Why should the minimal class be avoided?).



Two alternatives:




  1. standalone



    documentclassstandalone
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument



  2. article with the luatex85 package:



    RequirePackageluatex85
    documentclassarticle
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument






share|improve this answer












You should not use minimal (see Why should the minimal class be avoided?).



Two alternatives:




  1. standalone



    documentclassstandalone
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument



  2. article with the luatex85 package:



    RequirePackageluatex85
    documentclassarticle
    usepackagetransparent

    begindocument
    transparent0.5Ciao
    enddocument







share|improve this answer












share|improve this answer



share|improve this answer










answered 22 hours ago









TeXnician

20.8k52881




20.8k52881











  • Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
    – TeXnician
    22 hours ago










  • Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
    – TeXnician
    22 hours ago






  • 1




    @MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
    – TeXnician
    19 hours ago
















  • Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
    – TeXnician
    22 hours ago










  • Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
    – Massimo Ortolano
    22 hours ago










  • @MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
    – TeXnician
    22 hours ago






  • 1




    @MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
    – TeXnician
    19 hours ago















Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
– Massimo Ortolano
22 hours ago




Thank you, but the complete document is based on another class, toptesi, which I think is based on the class report. Adding the luatex85 package in this case doesn't remove the error.
– Massimo Ortolano
22 hours ago












@MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
– TeXnician
22 hours ago




@MassimoOrtolano For me, it does (add the luatex85 package, remove auxiliary files, recompile twice). I'm on TL2018 with LuaLaTeX 1.07.
– TeXnician
22 hours ago












Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
– Massimo Ortolano
22 hours ago




Ah, yes, with the MWE it works but not with the full document. I gotta go now, but I'll investigate more later on.
– Massimo Ortolano
22 hours ago












@MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
– TeXnician
22 hours ago




@MassimoOrtolano Well, I just tried with toptesi and the procedure I described does work on an MWE with that class.
– TeXnician
22 hours ago




1




1




@MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
– TeXnician
19 hours ago




@MassimoOrtolano You're welcome. Yes, it's good that pdfx removes that, because in PDF/X transparency is unsupported.
– TeXnician
19 hours ago

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f450555%2fcompatibility-between-lualatex-and-the-transparent-package%23new-answer', 'question_page');

);

Post as a guest













































































Comments

Popular posts from this blog

What does second last employer means? [closed]

List of Gilmore Girls characters

Confectionery