At the moment I'm using the picture from this page with the following code to resize it.
Code: Select all
\includegraphics[height=1.55ex]{speaker.eps}
Thanks for any help or pointers.
Code: Select all
\includegraphics[height=1.55ex]{speaker.eps}
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
Code: Select all
\documentclass{article}
\newcommand{\speaker}{%
\includegraphics[height=1.55ex]{speaker.eps}%
}
\begin{document}
\speaker
\end{document}
Code: Select all
\documentclass{article}
\newcommand{\speaker}[1]{%
\includegraphics[height=#1]{speaker.eps}%
}
\begin{document}
\speaker{1.55ex}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{tikz}
\newcommand{\speaker}[1]{%
\begin{tikzpicture}[#1]
\draw[thick,rounded corners=2pt, fill=black] (0,0.25) -- (0,0.45) -- (0.25,0.45) -- (0.5,0.7) -- (0.5,0) -- (0.25,0.25) -- cycle;
\draw[line width=2pt,line cap=round] (0.6,0.25) arc (-30:30:2mm);
\draw[line width=2pt,line cap=round] (0.7,0.15) arc (-30:30:4mm);
\draw[line width=2pt,line cap=round] (0.8,0.05) arc (-30:30:6mm);
\end{tikzpicture}
}
\begin{document}
\speaker{}
\end{document}
Code: Select all
\newcommand{\spk}[1]{
\begin{tikzpicture}[#1]
\draw[thick,rounded corners=0.1pt, fill=black] (0,0.0909) -- (0,0.1636) -- (0.0909,0.1636) -- (0.1818,0.2545) -- (0.1818,0) -- (0.0909,0.0909) -- cycle;
\draw[line width=0.65pt,line cap=round] (0.2182,0.0909) arc (-30:30:0.7273mm);
\draw[line width=0.65pt,line cap=round] (0.2545,0.0545) arc (-30:30:1.4545mm);
\draw[line width=0.65pt,line cap=round] (0.2909,0.0182) arc (-30:30:2.1818mm);
\end{tikzpicture}} %speaker symbo
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