Text FormattingHeavier exclamation mark to draw attention in beamer

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Stefanie
Posts: 25
Joined: Fri Apr 04, 2008 2:39 pm

Heavier exclamation mark to draw attention in beamer

Post by Stefanie »

I'm writing a presentation in beamer and I want to use a somewhat heavier exclamation mark than the default one, to draw attention to the following text. Something like this
Image
or like the topic icon would be perfect. I prefer not to insert an image, so I am looking for a font which provides this. I checked dingbats but there are only arrows and no exclamation marks or other attention signs.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Heavier exclamation mark to draw attention in beamer

Post by frabjous »

In a moment, someone else will likely be along with a better idea, but you might try combining geometrical symbols from the ifsym package with other symbols with /rlap or /llap. E.g., the following works so-so, though you'd likely need to tweak it for the font and fontsize you're using, and other spacing needs:

Code: Select all

\documentclass{article}
\usepackage[geometry]{ifsym}

\newcommand{\bigexclaim}{\raisebox{-0.1em}{\BigTriangleUp}\hspace{-0.32em}\llap{\small\textbf{!}}\hspace{0.32em}}

\begin{document}
  Wow\bigexclaim ~That's cool.
\end{document} 
I think there are simpler solutions from some of the graphical packages like pstricks and/or tikz, but I'm too lazy to look right now.

P.S. Ok, I'm not as lazy I thought. With pstricks you could use something like \newcommand{\bigexclaim}{\pstribox{\Large\textbf{!}}} -- I've been trying to avoid pstricks lately myself because of the hassle of not being able to use pdflatex directly, however, though latex > DVI > PS > PDF works.
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Heavier exclamation mark to draw attention in beamer

Post by localghost »

Perhaps you can find something suitable in "The Comprehensive LaTeX Symbol List".


Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Post Reply