Math & Science ⇒ Symbol for »not proportional to«
Symbol for »not proportional to«
I haven't figured out how to use MetaFont to create my own symbols yet, so if the character already exists I'd be eager to know!
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
Symbol for »not proportional to«
perhaps something like this?
Code: Select all
\documentclass[11pt]{article}
\usepackage{cancel}
\begin{document}
$\cancel{\propto}$
\end{document}
Symbol for »not proportional to«
Code: Select all
\makeatletter
\newcommand{\notprop}{\propto\kern-1\@ptsize pt \diagup}
\makeatother
Re: Symbol for »not proportional to«
Re: Symbol for »not proportional to«
That's neat, I didn't know about \cancel,
I think I like the solution that I posted afterwards a little bit more because not as much of the \propto gets hidden, but I would still either like to have the \propto a little bit bigger so that the top arm doesn't get covered by the slash, or I would like to have the slight pointing at less of an angle with respect to the vertical... maybe I'm asking for too much.