I'm pretty new to LaTeX, so I can not figure out why AMSmath is not working.
I can not use e.g. \mathscr{N}. In the PDF is just a normal N.
Code: Select all
\setlength{\mathindent}{0mm}
Code: Select all
\makeatletter
\setlength{\@mathmargin}{0mm}
\makeatother
My "settings":
Code: Select all
\documentclass[a4paper,12pt,titlepage,fleqn]{article}
\usepackage{natbib}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage{calc}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\onehalfspacing
\setlength{\parskip}{1.5ex}
\setlength{\parindent}{0cm}
\renewcommand{\thefootnote}{\arabic{footnote}\hspace{2.0mm}}
\setlength{\footnotesep}{2.5ex}
\setlength{\mathindent}{0mm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage[dvips]{graphicx}
\graphicspath{{./pics/}}
\DeclareGraphicsExtensions{.eps}
\usepackage{color,colortbl}
\definecolor{Hellgrau}{gray}{0.95}
\definecolor{Grau}{gray}{0.7}
\definecolor{Dunkelgrau}{gray}{0.5}
\definecolor{MarineBlau}{rgb}{0, 0, 0.55}
\definecolor{HellBlau}{rgb}{0.59,0.74,1}
\usepackage{longtable}
\usepackage{tabularx}
\newcolumntype{Z}{>{\centering\arraybackslash}X}
\newcolumntype{R}{>{\raggedleft\arraybackslash}X}
%\usepackage{algorithmic}
%\usepackage{exscale}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{mathtools}
I thought maybe I could be because of these both packages
\usepackage{algorithmic}
\usepackage{exscale}
but I didn't changed anything.
Thanks for your help!