1

How can I do this symbole in latex ? (if possible with the barre of the middle more straight).

enter image description here

Surb
  • 319
  • @Zarko: Could you tell me in what is duplicate ? – Surb Sep 20 '17 at 13:39
  • 1
    that similar question was already asked and answered. see given link, it answer there is helpful to you. if not you should specify what is specific/different in your case – Zarko Sep 20 '17 at 13:42

2 Answers2

8

The symbol already exists in esint:

\documentclass[ a4paper]{article}
\usepackage{mathtools}
\usepackage{esint}

\newcommand*{\dd}{\mathop{}\!\mathrm{d}}

\begin{document}

\[ \fint_{\partial\mathrlap{B_{R}}}u(y)\dd y \]%

\end{document} 

enter image description here

Bernard
  • 271,350
7

Some fonts have such an integral sign built in, but if not, you can always stack a - or $-$ over one.

\documentclass{article}
\usepackage{stackengine}
\stackMath
\begin{document}
$\stackinset{c}{}{c}{}{\mkern1.5mu\mbox{-}}{\int}x\,dx$
$\displaystyle\stackinset{c}{}{c}{}{-\mkern4mu}{\displaystyle\int_0^t}x\,dx$
\end{document}

enter image description here

Built in examples include versions with a slanted bar (denoted \fint) as well as some versions with a horizontal bar.

Those packages with a slanted \fint include: txfonts, pxfonts, esint, and stix.

Versions with a horizontal bar include:

  1. \strokedint from the MnSymbol package, and

  2. \intbar from the stix package.