How to create symbol “cross product with dot under it”
up vote
6
down vote
favorite
Is there any package with that symbol circled in orange in the photo? Thanks for answering.
times math-fonts
add a comment |
up vote
6
down vote
favorite
Is there any package with that symbol circled in orange in the photo? Thanks for answering.
times math-fonts
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
Is there any package with that symbol circled in orange in the photo? Thanks for answering.
times math-fonts
Is there any package with that symbol circled in orange in the photo? Thanks for answering.
times math-fonts
times math-fonts
asked Nov 16 at 22:15
Peđa Pilipović
332
332
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09
add a comment |
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09
add a comment |
3 Answers
3
active
oldest
votes
up vote
10
down vote
accepted
Using ooalign
(one of my favorite toys) together with mathpalette
for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.
documentclass{article}
usepackage{amsmath}
makeatletter
newcommand{timesdot}{mathbin{mathpalettetimesdot@relax}}
newcommand{timesdot@}[2]{%
ooalign{$m@th#1times$crhidewidth$m@th#1.$hidewidthcr}%
}
makeatother
begin{document}
$mathcal{I}timesdotmathcal{J}$
end{document}
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
add a comment |
up vote
7
down vote
With stackengine
:
documentclass{article}
usepackage{amsfonts}
usepackage{stackengine}
newcommandtimesdot{stackMathmathbin{stackinset{c}{0ex}{c}{-0.49ex}{scriptscriptstyle.}{times}}}
begin{document}
$mathcal I timesdot mathcal J$
end{document}
add a comment |
up vote
0
down vote
If larger space is also OK:
documentclass{article}
usepackage{graphicx}
usepackage{mathabx}
begin{document}
rotatebox{180}{$dottimes$}
end{document}
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
accepted
Using ooalign
(one of my favorite toys) together with mathpalette
for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.
documentclass{article}
usepackage{amsmath}
makeatletter
newcommand{timesdot}{mathbin{mathpalettetimesdot@relax}}
newcommand{timesdot@}[2]{%
ooalign{$m@th#1times$crhidewidth$m@th#1.$hidewidthcr}%
}
makeatother
begin{document}
$mathcal{I}timesdotmathcal{J}$
end{document}
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
add a comment |
up vote
10
down vote
accepted
Using ooalign
(one of my favorite toys) together with mathpalette
for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.
documentclass{article}
usepackage{amsmath}
makeatletter
newcommand{timesdot}{mathbin{mathpalettetimesdot@relax}}
newcommand{timesdot@}[2]{%
ooalign{$m@th#1times$crhidewidth$m@th#1.$hidewidthcr}%
}
makeatother
begin{document}
$mathcal{I}timesdotmathcal{J}$
end{document}
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
add a comment |
up vote
10
down vote
accepted
up vote
10
down vote
accepted
Using ooalign
(one of my favorite toys) together with mathpalette
for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.
documentclass{article}
usepackage{amsmath}
makeatletter
newcommand{timesdot}{mathbin{mathpalettetimesdot@relax}}
newcommand{timesdot@}[2]{%
ooalign{$m@th#1times$crhidewidth$m@th#1.$hidewidthcr}%
}
makeatother
begin{document}
$mathcal{I}timesdotmathcal{J}$
end{document}
Using ooalign
(one of my favorite toys) together with mathpalette
for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.
documentclass{article}
usepackage{amsmath}
makeatletter
newcommand{timesdot}{mathbin{mathpalettetimesdot@relax}}
newcommand{timesdot@}[2]{%
ooalign{$m@th#1times$crhidewidth$m@th#1.$hidewidthcr}%
}
makeatother
begin{document}
$mathcal{I}timesdotmathcal{J}$
end{document}
answered Nov 16 at 22:39
egreg
701k8618673141
701k8618673141
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
add a comment |
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
Awsome. Thanks!
– Peđa Pilipović
Nov 18 at 19:54
add a comment |
up vote
7
down vote
With stackengine
:
documentclass{article}
usepackage{amsfonts}
usepackage{stackengine}
newcommandtimesdot{stackMathmathbin{stackinset{c}{0ex}{c}{-0.49ex}{scriptscriptstyle.}{times}}}
begin{document}
$mathcal I timesdot mathcal J$
end{document}
add a comment |
up vote
7
down vote
With stackengine
:
documentclass{article}
usepackage{amsfonts}
usepackage{stackengine}
newcommandtimesdot{stackMathmathbin{stackinset{c}{0ex}{c}{-0.49ex}{scriptscriptstyle.}{times}}}
begin{document}
$mathcal I timesdot mathcal J$
end{document}
add a comment |
up vote
7
down vote
up vote
7
down vote
With stackengine
:
documentclass{article}
usepackage{amsfonts}
usepackage{stackengine}
newcommandtimesdot{stackMathmathbin{stackinset{c}{0ex}{c}{-0.49ex}{scriptscriptstyle.}{times}}}
begin{document}
$mathcal I timesdot mathcal J$
end{document}
With stackengine
:
documentclass{article}
usepackage{amsfonts}
usepackage{stackengine}
newcommandtimesdot{stackMathmathbin{stackinset{c}{0ex}{c}{-0.49ex}{scriptscriptstyle.}{times}}}
begin{document}
$mathcal I timesdot mathcal J$
end{document}
answered Nov 16 at 22:47
Bernard
162k768192
162k768192
add a comment |
add a comment |
up vote
0
down vote
If larger space is also OK:
documentclass{article}
usepackage{graphicx}
usepackage{mathabx}
begin{document}
rotatebox{180}{$dottimes$}
end{document}
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
add a comment |
up vote
0
down vote
If larger space is also OK:
documentclass{article}
usepackage{graphicx}
usepackage{mathabx}
begin{document}
rotatebox{180}{$dottimes$}
end{document}
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
add a comment |
up vote
0
down vote
up vote
0
down vote
If larger space is also OK:
documentclass{article}
usepackage{graphicx}
usepackage{mathabx}
begin{document}
rotatebox{180}{$dottimes$}
end{document}
If larger space is also OK:
documentclass{article}
usepackage{graphicx}
usepackage{mathabx}
begin{document}
rotatebox{180}{$dottimes$}
end{document}
answered Nov 16 at 23:11
daniel
1
1
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
add a comment |
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
Observe that the dot is not inside the times.
– Sigur
Nov 16 at 23:14
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
@Sigur Sure, that's why I make the if case for larger space
– daniel
Nov 16 at 23:40
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
Also, try to insert those 2 letters around it, as OP had shown.
– Sigur
Nov 16 at 23:44
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%2f460383%2fhow-to-create-symbol-cross-product-with-dot-under-it%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
What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it?
– D Duck
Nov 17 at 11:35
@DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras.
– Peđa Pilipović
Nov 18 at 19:53
Did you look in tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ?
– D Duck
Nov 18 at 20:09