2

I am trying to generate the triple integral in the following equation (The preamble is large, due to other requirements)

\documentclass[11pt,headings=small,fleqn]{scrreprt} % highest level is chapter
%\documentclass[12pt,journal,compsoc]{report}
\usepackage[Glenn]{fncychap} %To add a rectangle at the beginning of each chapter
\usepackage[greek,english]{babel} % for English text only
%\usepackage[ngerman]{babel} % for German text only
%\usepackage{ngerman}        % for German text only
\usepackage{mathtools}    %To split equations
\usepackage{amsmath}
\usepackage{esint}
\usepackage{mathdesign}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{microtype} % improves font spacing, needs pdfTEX >= 1.20
\usepackage{hyperref}  % hyperlinks

\usepackage{graphicx}
\usepackage{subfigure}

\usepackage{makeidx}    
\begin{flalign}
    \frac{\partial}{\partial t}\oiiint \rho dv + \oiint \rho \stackrel{\rightarrow}{V}\cdot \stackrel{\rightarrow}{ss}=0
    \end{flalign}

But I keep getting the error undefined control sequence \oiiint

Can any one help please?

Torbjørn T.
  • 206,688
user2536125
  • 1,165

2 Answers2

1

try

\usepackage{mdsymbol}

or use one of the new...math fonts.

  • 1
    I'm not sure about mdsymbol: it provides symbols designed to accompany sans serif fonts. – egreg Nov 25 '13 at 08:51
0

As Tobjorn already mentioned (I am too slow), you can add the charter option to mathdesign:

% arara: pdflatex
\documentclass{scrreprt}
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{esint}
\usepackage[charter]{mathdesign}

\begin{document}  
\begin{flalign}
\oiiint \rho dv
\end{flalign}
\end{document}

Other possible fonts are listed in the documentation on page 2.

LaRiFaRi
  • 43,807