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}Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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 symboLearn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis