[Tex/LaTex] Is there is a package so you can add text with visual effects like “WordArt” from “Word”

diagramspackagestext manipulationtext-decorations

I am elaborating a business card style for LaTeX but I found out that even if I have the style and margin for the cards I can not make it look "pretty" like other text editors without overusing text-images insertions, and this become tedious over time and more if you need to overlap an image to another one, because the background of the image needs to be transparent and it needs to be edited for that.

So like the title says, is there a package so you can add effects to sentences (like 3D, shadows, background-fade, fade, etc.)? Or does someone know some effects to make text "pretty"?

Best Answer

Using pstricks, we can do the following:

\documentclass{article}
\usepackage{pst-all}
\usepackage{pst-light3d}
%http://mirrors.ucr.ac.cr/CTAN/graphics/pstricks/contrib/pst-light3d/pst-light3d-doc.pdf

\begin{document}

\begin{pspicture}(0,-1)(8,2)
\DeclareFixedFont{\bigsf}{T1}{phv}{b}{n}{1.5cm}
\pscharpath[linecolor=yellow,%
fillstyle=gradient,%
gradbegin=yellow,%
gradend=red,%
gradmidpoint=1,%
gradangle=5]%
{\bigsf PSTricks}
\end{pspicture}

\begin{pspicture}(0,-1)(8,2)
\DeclareFixedFont{\nbigsf}{T1}{phv}{b}{n}{1.3cm}
\psset{fillstyle=gradient,gradbegin=red,gradend=blue}
\pscharpath[gradangle=90]{\nbigsf PSTricks}
\pscharpath[gradangle=90,linestyle=none]{\nbigsf PSTricks}
\end{pspicture}

\begin{pspicture}(0,-1)(8,2)
\DeclareFixedFont{\Rmb}{T1}{ptm}{m}{n}{3cm}
\PstLightThreeDText[fillstyle=solid,fillcolor=yellow!100!red!70,
LightThreeDAngle=60,LightThreeDYLength=0.1]{\Rmb PSTricks}
\end{pspicture}

\end{document}

enter image description here