Any help is appreciated. Thanks.

rickcjmac
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
The answer to both questions is yes. You can try something like the following:rickcjmac wrote:... Is there any way to make that symbol with LaTex code or was that something that my teacher made up just for that class?...
Code: Select all
\documentclass{report}
\usepackage{amsmath}
\newcommand*\Heq{\ensuremath{\overset{\kern2pt H}{=}}}
\begin{document}
\[ a\Heq b \]
\end{document}
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$a \overset{\mathrm{H}}{=} b$
\end{document}
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
\[
\lim_{x\to 0}\frac{\sin x}{x}\stackrel{\text{H}}{=}\frac{\cos x}{1}=1
\]
\end{document}
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