0

Probably something that has been asked before, I just can't seem to find it.

Currently using these packages:

\usepackage[margin=2cm]{geometry}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage{amssymb}
\usepackage{gensymb}
\usepackage{amsmath}[fleqn]
\usepackage{lipsum}
\usepackage{cases}
\usepackage{enumitem}
\usepackage{apacite}
\usepackage{chemist}
\usepackage{chemfig}

\usepackage{accents} \usepackage{mathabx} \begin{document} $n \in \mathbb{Z}^{+}$ \end{document}

The $\in$ symbol just doesn't look good. Are there any alternatives?

Looks like this: enter image description here

Ideally I would be able to only change the \in symbol and nothing else

1 Answers1

3

Using a more reasonable test document without the unrelated packages:

\documentclass{article}

\begin{document} $n \in \mathbb{Z}^{+}$ \end{document}

With \usepackage{amsfonts,mathabx}

enter image description here

With \usepackage{amsfonts}

enter image description here

With \usepackage{stix2}

enter image description here

With \usepackage{newtxmath}

enter image description here

There are dozens more math fonts available and no purely objective way of choosing between them. Note however that a font is a collective combined work of design, you should almost always choose an entire math font not select different fonts for different symbols.

David Carlisle
  • 757,742