What are the LaTeX codes for clockwise and counter-clockwise integrals (∱ and ⨑)?
If you do know, which package do I need to use? Thanks.
integral
add a comment |
If you do know, which package do I need to use? Thanks.
integral
add a comment |
If you do know, which package do I need to use? Thanks.
integral
If you do know, which package do I need to use? Thanks.
integral
integral
edited Nov 26 '18 at 21:27
mkrieger1
1034
1034
asked Nov 26 '18 at 16:20
trckojr
635
635
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
With the MnSymbol
package, you could use the following symbols:
documentclass{article}
usepackage{MnSymbol}
begin{document}
[
rcirclerightint
lcirclerightint
rcircleleftint
lcircleleftint
]
end{document}
(other package might know these symbols as ointclockwise
and ointctrclockwise
)
If you only want half a circle, you can use the mathdesign
package:
documentclass{article}
usepackage[charter]{mathdesign}
begin{document}
[
intclockwise
]
end{document}
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
add a comment |
documentclass{standalone}
usepackage{array,esint}
defCMD#1{%
$ csname#1endcsname displaystylecsname#1endcsname $ & texttt{textbackslash#1} &}
begin{document}
defarraystretch{2}
begin{tabular}{@{}*{2}{r@{kern3pt}l}r@{kern3pt}l@{}l@{}}
CMD{int} CMD{iint} CMD{iiintop} \
CMD{iiiintop}CMD{dotsintop}CMD{ointop} \
CMD{oiint} CMD{sqint} CMD{sqiint} \
CMD{ointctrclockwise} CMD{ointclockwise} CMD{varointclockwise} \
CMD{varointctrclockwise} CMD{fint} CMD{varoiint}\
CMD{landupint} CMD{landdownint}
end{tabular}
end{document}
add a comment |
Although some of the symbols in esint
come very close, I don't believe there is any package (for pdfLaTeX) that provides a version of this symbol compatible with the computer modern maths font.
The following is a (very simple) adaption of this answer by Heiko Oberdiek.
It can be used to superimpose any symbol on top of an integral sign.
documentclass{article}
usepackage{graphicx} %% <- for resizebox and rotatebox
usepackage{amsmath}
usepackage{amssymb} %% <- for curverightarrow, curveleftarrow
makeatletter %% <- make @ usable in macro names
letDOTSIrelax % amsmath support for dots
newcommand*{letteronint}[1]{%
DOTSI
mathop{%
mathpalette@LetterOnInt{#1}%
}%
mkern-thinmuskip % thin space is inserted between two mathop
int
}
newcommand*{@LetterOnInt}[2]{%
sbox0{$#1intm@th$}%
sbox2{$%
ifx#1displaystyle
textstyle
else
scriptscriptstyle
fi
#2%
m@th$}%
dimen@=.4dimexprht0+dp0relax
ifdimdimexprht2+dp2relax>dimen@
sbox2{resizebox*{!}{dimen@}{unhcopy2}}%
fi
dimen@=wd0 %
ifdimwd2>dimen@
dimen@=wd2 %
fi
rlap{hbox to dimen@{hfil
$#1vcenter{copy2}m@th$%
hfil}}%
ifdimdimen@>wd0 %
kern.5dimexprdimen@-wd0relax
fi
}
%% Define arrow curving downwards:
newcommand*{mathbin{curvearrowbotright}}{mathpaletterotmath@internalcurvearrowleft}
newcommand*rotmath@internal[2]{rotatebox{180}{$m@th#1#2$}}
makeatother %% <- revert @
newcommand*{intcw}{letteronint{,curvearrowright}}
newcommand*{intccw}{letteronint{,curvearrowbotright}}
begin{document}
[
displaystyle intcw_a^b f dots intccw_a^b f qquad
textstyle intcw_a^b f dots intccw_a^b f qquad
scriptstyle intcw_a^b f dots intccw_a^b f qquad
scriptscriptstyle intcw_a^b f dots intccw_a^b f
]
end{document}
The scriptscriptstyle
version does not look good, but you probably won't want to use this symbol at that scale.
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
add a comment |
documentclass[varwidth, preview]{standalone}
usepackage{unicode-math}
begin{document}
( intclockwise awint )
end{document}
The symbols are also in a number of legacy NFSS packages, including: fdsymbol
, newpxmath
, newtxmath
, pxfonts
, txfonts
, stix
and stix2
. Some also support other aliases, but all have been updated to understand intclockwise
and awint
.
Some of these also include variants, such as intclockwiseup
and smallintclockwise
in stix
. These are available in unicode-math
as stylistic variants in some math fonts.
See “The Comptehensive LaTeX Symbol List” and “Every symbol (most symbols) defined by
unicode-math.”
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461843%2fwhat-are-the-latex-codes-for-clockwise-and-counter-clockwise-integrals-%25e2%2588%25b1-and-%25e2%25a8%2591%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
With the MnSymbol
package, you could use the following symbols:
documentclass{article}
usepackage{MnSymbol}
begin{document}
[
rcirclerightint
lcirclerightint
rcircleleftint
lcircleleftint
]
end{document}
(other package might know these symbols as ointclockwise
and ointctrclockwise
)
If you only want half a circle, you can use the mathdesign
package:
documentclass{article}
usepackage[charter]{mathdesign}
begin{document}
[
intclockwise
]
end{document}
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
add a comment |
With the MnSymbol
package, you could use the following symbols:
documentclass{article}
usepackage{MnSymbol}
begin{document}
[
rcirclerightint
lcirclerightint
rcircleleftint
lcircleleftint
]
end{document}
(other package might know these symbols as ointclockwise
and ointctrclockwise
)
If you only want half a circle, you can use the mathdesign
package:
documentclass{article}
usepackage[charter]{mathdesign}
begin{document}
[
intclockwise
]
end{document}
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
add a comment |
With the MnSymbol
package, you could use the following symbols:
documentclass{article}
usepackage{MnSymbol}
begin{document}
[
rcirclerightint
lcirclerightint
rcircleleftint
lcircleleftint
]
end{document}
(other package might know these symbols as ointclockwise
and ointctrclockwise
)
If you only want half a circle, you can use the mathdesign
package:
documentclass{article}
usepackage[charter]{mathdesign}
begin{document}
[
intclockwise
]
end{document}
With the MnSymbol
package, you could use the following symbols:
documentclass{article}
usepackage{MnSymbol}
begin{document}
[
rcirclerightint
lcirclerightint
rcircleleftint
lcircleleftint
]
end{document}
(other package might know these symbols as ointclockwise
and ointctrclockwise
)
If you only want half a circle, you can use the mathdesign
package:
documentclass{article}
usepackage[charter]{mathdesign}
begin{document}
[
intclockwise
]
end{document}
edited Nov 26 '18 at 17:07
answered Nov 26 '18 at 16:41
samcarter
86.2k795276
86.2k795276
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
add a comment |
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
Thanks for the reply. But if you search unicode 0x2231, you will see that there is only half a circle drawn. I need that one.
– trckojr
Nov 26 '18 at 16:49
3
3
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
@trckojr If you want a particular shape of a symbol, it would be best if you would include an image of the symbol in your question and don't trust that search machines will return the same result you see for all people
– samcarter
Nov 26 '18 at 16:53
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
The second answer from you solved my problem. Thank you very much. I will make sure to include an image next time I have a similar problem.
– trckojr
Nov 27 '18 at 18:20
add a comment |
documentclass{standalone}
usepackage{array,esint}
defCMD#1{%
$ csname#1endcsname displaystylecsname#1endcsname $ & texttt{textbackslash#1} &}
begin{document}
defarraystretch{2}
begin{tabular}{@{}*{2}{r@{kern3pt}l}r@{kern3pt}l@{}l@{}}
CMD{int} CMD{iint} CMD{iiintop} \
CMD{iiiintop}CMD{dotsintop}CMD{ointop} \
CMD{oiint} CMD{sqint} CMD{sqiint} \
CMD{ointctrclockwise} CMD{ointclockwise} CMD{varointclockwise} \
CMD{varointctrclockwise} CMD{fint} CMD{varoiint}\
CMD{landupint} CMD{landdownint}
end{tabular}
end{document}
add a comment |
documentclass{standalone}
usepackage{array,esint}
defCMD#1{%
$ csname#1endcsname displaystylecsname#1endcsname $ & texttt{textbackslash#1} &}
begin{document}
defarraystretch{2}
begin{tabular}{@{}*{2}{r@{kern3pt}l}r@{kern3pt}l@{}l@{}}
CMD{int} CMD{iint} CMD{iiintop} \
CMD{iiiintop}CMD{dotsintop}CMD{ointop} \
CMD{oiint} CMD{sqint} CMD{sqiint} \
CMD{ointctrclockwise} CMD{ointclockwise} CMD{varointclockwise} \
CMD{varointctrclockwise} CMD{fint} CMD{varoiint}\
CMD{landupint} CMD{landdownint}
end{tabular}
end{document}
add a comment |
documentclass{standalone}
usepackage{array,esint}
defCMD#1{%
$ csname#1endcsname displaystylecsname#1endcsname $ & texttt{textbackslash#1} &}
begin{document}
defarraystretch{2}
begin{tabular}{@{}*{2}{r@{kern3pt}l}r@{kern3pt}l@{}l@{}}
CMD{int} CMD{iint} CMD{iiintop} \
CMD{iiiintop}CMD{dotsintop}CMD{ointop} \
CMD{oiint} CMD{sqint} CMD{sqiint} \
CMD{ointctrclockwise} CMD{ointclockwise} CMD{varointclockwise} \
CMD{varointctrclockwise} CMD{fint} CMD{varoiint}\
CMD{landupint} CMD{landdownint}
end{tabular}
end{document}
documentclass{standalone}
usepackage{array,esint}
defCMD#1{%
$ csname#1endcsname displaystylecsname#1endcsname $ & texttt{textbackslash#1} &}
begin{document}
defarraystretch{2}
begin{tabular}{@{}*{2}{r@{kern3pt}l}r@{kern3pt}l@{}l@{}}
CMD{int} CMD{iint} CMD{iiintop} \
CMD{iiiintop}CMD{dotsintop}CMD{ointop} \
CMD{oiint} CMD{sqint} CMD{sqiint} \
CMD{ointctrclockwise} CMD{ointclockwise} CMD{varointclockwise} \
CMD{varointctrclockwise} CMD{fint} CMD{varoiint}\
CMD{landupint} CMD{landdownint}
end{tabular}
end{document}
answered Nov 26 '18 at 17:13
Herbert
270k24408717
270k24408717
add a comment |
add a comment |
Although some of the symbols in esint
come very close, I don't believe there is any package (for pdfLaTeX) that provides a version of this symbol compatible with the computer modern maths font.
The following is a (very simple) adaption of this answer by Heiko Oberdiek.
It can be used to superimpose any symbol on top of an integral sign.
documentclass{article}
usepackage{graphicx} %% <- for resizebox and rotatebox
usepackage{amsmath}
usepackage{amssymb} %% <- for curverightarrow, curveleftarrow
makeatletter %% <- make @ usable in macro names
letDOTSIrelax % amsmath support for dots
newcommand*{letteronint}[1]{%
DOTSI
mathop{%
mathpalette@LetterOnInt{#1}%
}%
mkern-thinmuskip % thin space is inserted between two mathop
int
}
newcommand*{@LetterOnInt}[2]{%
sbox0{$#1intm@th$}%
sbox2{$%
ifx#1displaystyle
textstyle
else
scriptscriptstyle
fi
#2%
m@th$}%
dimen@=.4dimexprht0+dp0relax
ifdimdimexprht2+dp2relax>dimen@
sbox2{resizebox*{!}{dimen@}{unhcopy2}}%
fi
dimen@=wd0 %
ifdimwd2>dimen@
dimen@=wd2 %
fi
rlap{hbox to dimen@{hfil
$#1vcenter{copy2}m@th$%
hfil}}%
ifdimdimen@>wd0 %
kern.5dimexprdimen@-wd0relax
fi
}
%% Define arrow curving downwards:
newcommand*{mathbin{curvearrowbotright}}{mathpaletterotmath@internalcurvearrowleft}
newcommand*rotmath@internal[2]{rotatebox{180}{$m@th#1#2$}}
makeatother %% <- revert @
newcommand*{intcw}{letteronint{,curvearrowright}}
newcommand*{intccw}{letteronint{,curvearrowbotright}}
begin{document}
[
displaystyle intcw_a^b f dots intccw_a^b f qquad
textstyle intcw_a^b f dots intccw_a^b f qquad
scriptstyle intcw_a^b f dots intccw_a^b f qquad
scriptscriptstyle intcw_a^b f dots intccw_a^b f
]
end{document}
The scriptscriptstyle
version does not look good, but you probably won't want to use this symbol at that scale.
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
add a comment |
Although some of the symbols in esint
come very close, I don't believe there is any package (for pdfLaTeX) that provides a version of this symbol compatible with the computer modern maths font.
The following is a (very simple) adaption of this answer by Heiko Oberdiek.
It can be used to superimpose any symbol on top of an integral sign.
documentclass{article}
usepackage{graphicx} %% <- for resizebox and rotatebox
usepackage{amsmath}
usepackage{amssymb} %% <- for curverightarrow, curveleftarrow
makeatletter %% <- make @ usable in macro names
letDOTSIrelax % amsmath support for dots
newcommand*{letteronint}[1]{%
DOTSI
mathop{%
mathpalette@LetterOnInt{#1}%
}%
mkern-thinmuskip % thin space is inserted between two mathop
int
}
newcommand*{@LetterOnInt}[2]{%
sbox0{$#1intm@th$}%
sbox2{$%
ifx#1displaystyle
textstyle
else
scriptscriptstyle
fi
#2%
m@th$}%
dimen@=.4dimexprht0+dp0relax
ifdimdimexprht2+dp2relax>dimen@
sbox2{resizebox*{!}{dimen@}{unhcopy2}}%
fi
dimen@=wd0 %
ifdimwd2>dimen@
dimen@=wd2 %
fi
rlap{hbox to dimen@{hfil
$#1vcenter{copy2}m@th$%
hfil}}%
ifdimdimen@>wd0 %
kern.5dimexprdimen@-wd0relax
fi
}
%% Define arrow curving downwards:
newcommand*{mathbin{curvearrowbotright}}{mathpaletterotmath@internalcurvearrowleft}
newcommand*rotmath@internal[2]{rotatebox{180}{$m@th#1#2$}}
makeatother %% <- revert @
newcommand*{intcw}{letteronint{,curvearrowright}}
newcommand*{intccw}{letteronint{,curvearrowbotright}}
begin{document}
[
displaystyle intcw_a^b f dots intccw_a^b f qquad
textstyle intcw_a^b f dots intccw_a^b f qquad
scriptstyle intcw_a^b f dots intccw_a^b f qquad
scriptscriptstyle intcw_a^b f dots intccw_a^b f
]
end{document}
The scriptscriptstyle
version does not look good, but you probably won't want to use this symbol at that scale.
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
add a comment |
Although some of the symbols in esint
come very close, I don't believe there is any package (for pdfLaTeX) that provides a version of this symbol compatible with the computer modern maths font.
The following is a (very simple) adaption of this answer by Heiko Oberdiek.
It can be used to superimpose any symbol on top of an integral sign.
documentclass{article}
usepackage{graphicx} %% <- for resizebox and rotatebox
usepackage{amsmath}
usepackage{amssymb} %% <- for curverightarrow, curveleftarrow
makeatletter %% <- make @ usable in macro names
letDOTSIrelax % amsmath support for dots
newcommand*{letteronint}[1]{%
DOTSI
mathop{%
mathpalette@LetterOnInt{#1}%
}%
mkern-thinmuskip % thin space is inserted between two mathop
int
}
newcommand*{@LetterOnInt}[2]{%
sbox0{$#1intm@th$}%
sbox2{$%
ifx#1displaystyle
textstyle
else
scriptscriptstyle
fi
#2%
m@th$}%
dimen@=.4dimexprht0+dp0relax
ifdimdimexprht2+dp2relax>dimen@
sbox2{resizebox*{!}{dimen@}{unhcopy2}}%
fi
dimen@=wd0 %
ifdimwd2>dimen@
dimen@=wd2 %
fi
rlap{hbox to dimen@{hfil
$#1vcenter{copy2}m@th$%
hfil}}%
ifdimdimen@>wd0 %
kern.5dimexprdimen@-wd0relax
fi
}
%% Define arrow curving downwards:
newcommand*{mathbin{curvearrowbotright}}{mathpaletterotmath@internalcurvearrowleft}
newcommand*rotmath@internal[2]{rotatebox{180}{$m@th#1#2$}}
makeatother %% <- revert @
newcommand*{intcw}{letteronint{,curvearrowright}}
newcommand*{intccw}{letteronint{,curvearrowbotright}}
begin{document}
[
displaystyle intcw_a^b f dots intccw_a^b f qquad
textstyle intcw_a^b f dots intccw_a^b f qquad
scriptstyle intcw_a^b f dots intccw_a^b f qquad
scriptscriptstyle intcw_a^b f dots intccw_a^b f
]
end{document}
The scriptscriptstyle
version does not look good, but you probably won't want to use this symbol at that scale.
Although some of the symbols in esint
come very close, I don't believe there is any package (for pdfLaTeX) that provides a version of this symbol compatible with the computer modern maths font.
The following is a (very simple) adaption of this answer by Heiko Oberdiek.
It can be used to superimpose any symbol on top of an integral sign.
documentclass{article}
usepackage{graphicx} %% <- for resizebox and rotatebox
usepackage{amsmath}
usepackage{amssymb} %% <- for curverightarrow, curveleftarrow
makeatletter %% <- make @ usable in macro names
letDOTSIrelax % amsmath support for dots
newcommand*{letteronint}[1]{%
DOTSI
mathop{%
mathpalette@LetterOnInt{#1}%
}%
mkern-thinmuskip % thin space is inserted between two mathop
int
}
newcommand*{@LetterOnInt}[2]{%
sbox0{$#1intm@th$}%
sbox2{$%
ifx#1displaystyle
textstyle
else
scriptscriptstyle
fi
#2%
m@th$}%
dimen@=.4dimexprht0+dp0relax
ifdimdimexprht2+dp2relax>dimen@
sbox2{resizebox*{!}{dimen@}{unhcopy2}}%
fi
dimen@=wd0 %
ifdimwd2>dimen@
dimen@=wd2 %
fi
rlap{hbox to dimen@{hfil
$#1vcenter{copy2}m@th$%
hfil}}%
ifdimdimen@>wd0 %
kern.5dimexprdimen@-wd0relax
fi
}
%% Define arrow curving downwards:
newcommand*{mathbin{curvearrowbotright}}{mathpaletterotmath@internalcurvearrowleft}
newcommand*rotmath@internal[2]{rotatebox{180}{$m@th#1#2$}}
makeatother %% <- revert @
newcommand*{intcw}{letteronint{,curvearrowright}}
newcommand*{intccw}{letteronint{,curvearrowbotright}}
begin{document}
[
displaystyle intcw_a^b f dots intccw_a^b f qquad
textstyle intcw_a^b f dots intccw_a^b f qquad
scriptstyle intcw_a^b f dots intccw_a^b f qquad
scriptscriptstyle intcw_a^b f dots intccw_a^b f
]
end{document}
The scriptscriptstyle
version does not look good, but you probably won't want to use this symbol at that scale.
edited Nov 27 '18 at 7:34
answered Nov 26 '18 at 19:51
Circumscribe
4,8011533
4,8011533
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
add a comment |
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
1
1
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
Very nice answer!
– samcarter
Nov 26 '18 at 20:25
add a comment |
documentclass[varwidth, preview]{standalone}
usepackage{unicode-math}
begin{document}
( intclockwise awint )
end{document}
The symbols are also in a number of legacy NFSS packages, including: fdsymbol
, newpxmath
, newtxmath
, pxfonts
, txfonts
, stix
and stix2
. Some also support other aliases, but all have been updated to understand intclockwise
and awint
.
Some of these also include variants, such as intclockwiseup
and smallintclockwise
in stix
. These are available in unicode-math
as stylistic variants in some math fonts.
See “The Comptehensive LaTeX Symbol List” and “Every symbol (most symbols) defined by
unicode-math.”
add a comment |
documentclass[varwidth, preview]{standalone}
usepackage{unicode-math}
begin{document}
( intclockwise awint )
end{document}
The symbols are also in a number of legacy NFSS packages, including: fdsymbol
, newpxmath
, newtxmath
, pxfonts
, txfonts
, stix
and stix2
. Some also support other aliases, but all have been updated to understand intclockwise
and awint
.
Some of these also include variants, such as intclockwiseup
and smallintclockwise
in stix
. These are available in unicode-math
as stylistic variants in some math fonts.
See “The Comptehensive LaTeX Symbol List” and “Every symbol (most symbols) defined by
unicode-math.”
add a comment |
documentclass[varwidth, preview]{standalone}
usepackage{unicode-math}
begin{document}
( intclockwise awint )
end{document}
The symbols are also in a number of legacy NFSS packages, including: fdsymbol
, newpxmath
, newtxmath
, pxfonts
, txfonts
, stix
and stix2
. Some also support other aliases, but all have been updated to understand intclockwise
and awint
.
Some of these also include variants, such as intclockwiseup
and smallintclockwise
in stix
. These are available in unicode-math
as stylistic variants in some math fonts.
See “The Comptehensive LaTeX Symbol List” and “Every symbol (most symbols) defined by
unicode-math.”
documentclass[varwidth, preview]{standalone}
usepackage{unicode-math}
begin{document}
( intclockwise awint )
end{document}
The symbols are also in a number of legacy NFSS packages, including: fdsymbol
, newpxmath
, newtxmath
, pxfonts
, txfonts
, stix
and stix2
. Some also support other aliases, but all have been updated to understand intclockwise
and awint
.
Some of these also include variants, such as intclockwiseup
and smallintclockwise
in stix
. These are available in unicode-math
as stylistic variants in some math fonts.
See “The Comptehensive LaTeX Symbol List” and “Every symbol (most symbols) defined by
unicode-math.”
answered Nov 27 '18 at 0:15
Davislor
4,8321024
4,8321024
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461843%2fwhat-are-the-latex-codes-for-clockwise-and-counter-clockwise-integrals-%25e2%2588%25b1-and-%25e2%25a8%2591%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown