There are some journals that still have this style, e.g. Studia Mathematica. I tried to find some package that has this integral and no success. The lean is in both version, the inline and the display. Does anyone knows how to do this?
Math & Science ⇒ Russian integral sign
-
- Posts: 34
- Joined: Sat Aug 08, 2009 1:05 pm
Russian integral sign
There are some journals that still have this style, e.g. Studia Mathematica. I tried to find some package that has this integral and no success. The lean is in both version, the inline and the display. Does anyone knows how to do this?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Russian integral sign
I found a paper on Russian Typographical Traditions in Mathematical Literature where this kind of integral sign is mentioned. My first suggestion would have been to consult detexify and the comprehensive symbol list. There I found the german variant from wasysym. I couldn't find the russian integral sign there.
Please also see this question and the commentaries.
Well, wasysym proides the german integral sign. Just mirrowing the (original) sign istn't of much help, as is also seen in the example below. Maybe mathabx could be of interest, too.
Best Regards
Johannes
Code: Select all
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{wasysym}
\newcommand{\rusint}{%
\scalebox{1}[-1]{\ensuremath{\displaystyle\int}}%
}
\begin{document}
\[ \int \qquad \rusint \qquad \varint \]
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Russian integral sign
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Russian integral sign
Code: Select all
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathabx}
\begin{document}
$\int$
\[\int\]
\end{document}
-
- Posts: 34
- Joined: Sat Aug 08, 2009 1:05 pm
Russian integral sign
What is strange is that Studia Mathematica http://journals.impan.gov.pl/sm/ uses some type of math that has the symbol, see the image for an example

Maybe the trick is to force the displaystyle integral (i.e. inside \[\]) to behave as the inline integral sign of the mathabx package. Any idea on how to force this?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Russian integral sign
I think the easiest way would just be to ask them how to do it. I am interested in the solution, too.The publisher strongly encourages preparing the manuscript in any version of TeX.
Tools like pdffonts list the fonts used inside a pdf (Ad0be Reader is also able to do this), but i am afraid there are too many to clearly spot "the right one". See used fonts in pdf files for more information.
-
- Posts: 34
- Joined: Sat Aug 08, 2009 1:05 pm
Russian integral sign
Meanwhile, based on a suggestion of cgnieder, I got a partial solution (it's hugly), here is the code
Code: Select all
\documentclass[11pt]{amsart}
\newcommand{\rint}[1]{\mbox{\Large $ \int\limits_{\mbox{\tiny $#1$}}$}}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathabx}
\begin{document}
\begin{equation}
\|f\|_{L^p}:= \left (\sum \rint{X} |f(x)|^p \right)
\end{equation}
\end{document}

the Large command was used to have the integral sign with equal size to the sum and the limits in the formula is due to the fact that the russian integral always has the domain of integration below the integral sign.
One flaw is that the integral sign is a little bit raised in comparison with the sum sign. I guess it's a partial solution.
Maybe it's possible to improve this piece of code, specially the part of the alignment.Improvements are welcome.