When I try \neq the output looks like =.
I found a similar problem - \neq (not equal) command does not work anymore.
Doesn't look like my case (see below for details), and don't know how to follow the directions anyway ('Issue \changenotsign after loading it.' - if I put this command after any of my \usepackage{...} I get an error).
An example of my problem:
%% Based on a TeXnicCenter-Template by Gyorgy SZEIDL.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%------------------------------------------------------------
%
\documentclass{amsart}
%
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
%------------------------------------------------------------
% Theorem like environments
%
\newtheorem{theorem}{Theorem}
\theoremstyle{plain}
\newtheorem{acknowledgement}{Acknowledgement}
\newtheorem{algorithm}{Algorithm}
\newtheorem{axiom}{Axiom}
\newtheorem{case}{Case}
\newtheorem{claim}{Claim}
\newtheorem{conclusion}{Conclusion}
\newtheorem{condition}{Condition}
\newtheorem{conjecture}{Conjecture}
\newtheorem{corollary}{Corollary}
\newtheorem{criterion}{Criterion}
\newtheorem{definition}{Definition}
\newtheorem{example}{Example}
\newtheorem{exercise}{Exercise}
\newtheorem{lemma}{Lemma}
\newtheorem{notation}{Notation}
\newtheorem{problem}{Problem}
\newtheorem{proposition}{Proposition}
\newtheorem{remark}{Remark}
\newtheorem{solution}{Solution}
\newtheorem{summary}{Summary}
\numberwithin{equation}{section}
%--------------------------------------------------------
\begin{document}
\title[Woo]{Woo}
\author{Blah Blah}
\date{23 January, 2016}
\maketitle
\section{Introduction}\label{se.20.10}
My problem, the following comes out like 'q = t = w'
\begin{equation}
q \neq t \not= w
\end{equation}
\end{document}
Some chatty background:
Almost a newbie (haven't done latex for years / forgotten most of it).
I'm using an old template(TeXnicCenter-Template by Gyorgy SZEIDL) - use to work for me so I'd like to keep it, but I recently downloaded new copy of latex etc onto my ubuntu 14.04. Perhaps the old template and the new latex don't play nicely together?
I'm trying to do something quickly (who isn't), so sorry if something looks a little weird / drawback.
Perhaps should be a separate post but ... in emacs, I used to have a 'pdflatex' option comming off the 'tex' pulldown menu but can't remember how to install this. Could anyone point me in the right direction / links to set that up?
Thank you
\neqas it should be: ≠ or do you mean ¬ ? – Jan 23 '16 at 21:46pdflatexinstead oflatex. It has with many small improvements, but in particular, it compiles directly and natively to pdf, so can often fix problems like this. – Peter LeFanu Lumsdaine Jan 23 '16 at 21:51pdflatexand it works, as well as withlatexandxdvi. The\neqcommand is typeset as ≠, as expected. – Jan 23 '16 at 21:53amsartloadsamsmathautomatically, andamssymbloadsamsfonts, so it's not necessary to load those two packages explicitly. – barbara beeton Jan 26 '16 at 16:29