나는 모든 이산 상태에 대한 합과 모든 연속체 상태에 대한 적분을 표현하고 싶습니다. 일반적으로 $\sum$
이에 대한 기호는 $\int$
. 이 기호를 만드는 명령이 있나요? 그렇지 않다면 합과 적분 기호를 어떤 식으로든 결합하여 만들 수 있을까요?
답변1
이것은유니코드 문자 'SUMMATION WITH INTEGRAL' (U+2A0B)(⨋). 다음과 함께 사용할 수 있습니다.STIX 글꼴. (현재 베타 테스트에서 LaTeX를 지원합니다.) 관련 명령은 입니다 \sumint
.
답변2
다음과 같이 기호를 작성할 수 있습니다.
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\DeclareMathOperator*{\SumInt}{%
\mathchoice%
{\ooalign{$\displaystyle\sum$\cr\hidewidth$\displaystyle\int$\hidewidth\cr}}
{\ooalign{\raisebox{.14\height}{\scalebox{.7}{$\textstyle\sum$}}\cr\hidewidth$\textstyle\int$\hidewidth\cr}}
{\ooalign{\raisebox{.2\height}{\scalebox{.6}{$\scriptstyle\sum$}}\cr$\scriptstyle\int$\cr}}
{\ooalign{\raisebox{.2\height}{\scalebox{.6}{$\scriptstyle\sum$}}\cr$\scriptstyle\int$\cr}}
}
\begin{document}
$\SumInt_{\SumInt} \displaystyle\SumInt$
\end{document}
패키지 MnSymbol
는 다음을 제공합니다 \sumint
(이를 사용하면 일부 기호가 변경됨):
\documentclass{article}
\usepackage{MnSymbol}
\begin{document}
$\sumint_{\sumint} \displaystyle\sumint$
\end{document}
답변3
다른 옵션은 패키지입니다 mathtools
:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
$\int\mathllap{\sum}$
$\mathclap{\displaystyle\int}\mathclap{\textstyle\sum}$
$F(y)=\mathclap{\displaystyle\int}\mathclap{\textstyle\sum}\;\;\; f(y)\,\mathrm dy$
\end{document}
tohecz 주석에서 지적한 기호 주위의 간격 문제로 인해 이 tex 파일에는 더 유용한 예제가 있습니다. 큰 문자의 첫 번째 예는 다음을 사용하는 것과 정확히 동일한 출력을 얻습니다.\ooalign{$\textstyle\sum$\cr\hidewidth$\displaystyle\int$\hidewidth\cr}
\documentclass[10]{article}
\usepackage{mathtools}
\usepackage{xcolor}
% Reference shadow equation without \int
\newcommand{\refereq}{
\textcolor{cyan}{
$F(y)= \sum f(y)\,\mathrm dy$
}\par\vspace{-1.41\baselineskip}\par}
\begin{document}
\bigskip
Test inside formula \emph{vs}
normal position of $\scriptstyle\sum$
(cyan shadow without
$\scriptstyle\int$):
\bigskip
{\Huge \refereq
$F(y)=
\mathrlap{\displaystyle\int}
\mathrlap{\textstyle\sum}
\phantom{\mathrlap{\displaystyle\int}
\textstyle\sum}
f(y)\,\mathrm dy$}
\bigskip
Note that different symbol combinations
with {\tt mathtools} have different
spacing effects: \\
\bigskip
\begin{tabular}{l|l|ll}
& Symbol & Size & Alignment \\
1 & $\sum$ x
& \textbackslash{textstyle}
& normal \\
& $\displaystyle\sum$ x
& \textbackslash{display}
& normal\\
2 & $\int$ x
& \textbackslash{textstyle}
& normal \\
& $\displaystyle\int$ x
& \textbackslash{display}
& normal\\
3 & $\int\mathllap{\sum}$ x
& \textbackslash{textstyle}
& \textbackslash{}math{\bf l}lap
\{$\scriptstyle\sum$\} \\
4 & $\displaystyle\int\mathllap{\sum}$ x
& \textbackslash{displaystyle}
& \textbackslash{}math{\bf l}lap
\{$\scriptstyle\sum$\} \\
5 & ${\displaystyle\int}
\mathllap{\sum}$ x
& mixed
& \textbackslash{}math{\bf l}lap
\{$\scriptstyle\sum$\} \\
6 & $\mathclap{\displaystyle\int}\mathclap{\textstyle\sum}$ x
& mixed
& \textbackslash{}math{\bf c}lap (both) \\
7 & $\mathrlap{\displaystyle\int}\textstyle\sum$ x
& mixed
& \textbackslash{}math{\bf r}lap\{$\int$\}\\
8 & $\mathrlap{\displaystyle\int}\mathrlap{\textstyle\sum} $ x
& mixed
& \textbackslash{}math{\bf r}lap (both) \\
9 & $\mathllap{\displaystyle\int}\mathllap{\textstyle\sum}$ x
& mixed
& \textbackslash{}math{\bf l}lap (both) \\
\end{tabular}
\bigskip
Comments:
Note that there are little differences
inside the combined symbol. With respect
(8) in (5) and (9) and even in (6) the
$\int$ is lightly displaced to the
rigth, but in (7) is left displaced.
\bigskip
\refereq
$F(y)=
{\displaystyle\int}\mathllap
{\textstyle\sum}
f(y)\,\mathrm dy$
(5) f is spaced from
$\scriptstyle\int$ but is too
near to $\scriptstyle\sum$
\refereq
$F(y)=
\hspace{.5em}\mathclap{\displaystyle
\int}\mathclap{\textstyle\sum}
\hspace{.5em}
f(y)\,\mathrm dy$
(6) Need extra .5em in both sides
to look as (5).
\refereq
$F(y)=
\mathrlap{\displaystyle\int}
\textstyle\sum
f(y)\,\mathrm dy$
(7) f well spaced from
$\scriptstyle\sum$ (but
$\scriptstyle\int$ is too left?)
\refereq
$F(y)=
\mathrlap{\displaystyle\int}
\mathrlap{\textstyle\sum}
\phantom{\mathrlap{\displaystyle
\int}\textstyle\sum}
f(y)\,\mathrm dy$
(8) Need recover right space
but then fit perfectly.
\refereq
$F(y)=
\phantom{\textstyle\sum}
\mathllap{\displaystyle\int}
\mathllap{\textstyle\sum}
\phantom{\mathrlap{
\displaystyle\int}}
f(y)\,\mathrm dy$
(9) Need recover left space
to see just as (5).
So, better approach (with
{\tt mathtools}, of course),
seem to be (8)
\end{document}
답변4
이것은 매우 정교한 답변은 아니지만 커닝을 다루는 것이 하나의 옵션일 수 있습니다.
\int\kern-1em\sum f(x)dx
또한 항상 쿼리해 보세요.해독 2첫째, 일반적으로 찾고 있는 기호를 제공하지만 안타깝게도 이 경우에는 제공되지 않습니다.