Text Formatting ⇒ Font Effect
Font Effect
Is anyone can tell how to make the font like the picture?
Thanks
Sam
- Attachments
-
- Font Effect.PNG (4.34 KiB) Viewed 2253 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Font Effect
you could use the

Code: Select all
\documentclass{article}
\usepackage{contour}
\usepackage{xcolor}
\begin{document}
\contourlength{1pt}% thickness
\contournumber{20}% copies used
\contour{gray!50}{\protect\contour{white}{%
\sffamily\Huge\bfseries\textcolor{green!80!black}{SAMPLE}}}
\end{document}
Font Effect
thanks.Stefan Kottwitz wrote:Hi Sam,
you could use thecontour package. For example:
font-effect.pngCode: Select all
\documentclass{article} \usepackage{contour} \usepackage{xcolor} \begin{document} \contourlength{1pt}% thickness \contournumber{20}% copies used \contour{gray!50}{\protect\contour{white}{% \sffamily\Huge\bfseries\textcolor{green!80!black}{SAMPLE}}} \end{document}
Stefan