The EPS format does not support transparency. How can I then include Mathematica graphics that have transparency in LaTeX documents?
2 Answers
You can use Rasterize before exporting to a .eps file.
fig = Graphics3D[{Opacity[0.5], Sphere[]}] Now Export like
Export["fig2.eps", Rasterize[fig]] which will preserve the opacity in .eps. For better resolution you can use RasterSize.
For comparison
Export["fig1.eps", fig] Then I use them in a tex file and this is how they look in pdf
Left is without Rasterize (fig1.eps) and right with Rasterize (fig2.eps).
LaTeX also supports PDF, not only EPS. Export the graphics in PDF format.
In LaTeX, add \usepackage{graphicx} to the preamble, and include the PDF file using
\includegraphics{file.pdf} Compile the document using pdflatex. Transparency is preserved.
- 2$\begingroup$ This does not seem to be an answer... $\endgroup$Yves Klett– Yves Klett2016-06-15 09:02:09 +00:00Commented Jun 15, 2016 at 9:02
- $\begingroup$ Why ? I have encounter the problem many time. I have observed that when you save a picture in eps from mathematica the background may be transparent. But if I surimpose say a Triangle with a light opacity, the transparency is not preserved. With my solution it is the case $\endgroup$cyrille.piatecki– cyrille.piatecki2016-06-15 09:10:09 +00:00Commented Jun 15, 2016 at 9:10
- $\begingroup$ Okay - you should then perhaps add this answer to the thread you mention. The question together with this answer was not clear to me from the start. This answer is more about a TeX implementation... $\endgroup$Yves Klett– Yves Klett2016-06-15 09:17:17 +00:00Commented Jun 15, 2016 at 9:17
- 3$\begingroup$ This doesn't answer the question. The question was "How do I flatten transparency on a graphics, for conversion to eps or similar?" I think most of us are already aware that (1) PDF supports transparency and (2) PDF can easily be included in LaTeX (neither of which are facts related to Mathematica) But in many cases one is required to use EPS and PDF absolutely isn't an option. Exporting to PDF doesn't flatten transparency. It simply preserves transparency in a format that supports it. There are genuine use cases for actually flattening transparency. $\endgroup$Szabolcs– Szabolcs2016-06-15 09:31:21 +00:00Commented Jun 15, 2016 at 9:31
- 1$\begingroup$ @cyrille.piatecki You could rephrase your question so it asks something that this is an answer for. I'm not saying it's not useful. Such as: How to include Mathematica-generated vector figures in LaTeX documents, or similar. $\endgroup$Szabolcs– Szabolcs2016-06-15 10:59:10 +00:00Commented Jun 15, 2016 at 10:59


latex, and notpdflatex. $\endgroup$