Special Character boxtime
$begingroup$
In LaTeX, boxtimes
works as follows:
documentclass{article}
usepackage{amssymb}
begin{document}
$boxtimes$
end{document}
Is there a way to print this character in Mathematica? Simply using ToExpression
returns nothing.
ToExpression["\boxtime", TeXForm, HoldForm]
In a more general form, is there a way to use amssymbols in Mathematica?
formatting named-characters
New contributor
$endgroup$
add a comment |
$begingroup$
In LaTeX, boxtimes
works as follows:
documentclass{article}
usepackage{amssymb}
begin{document}
$boxtimes$
end{document}
Is there a way to print this character in Mathematica? Simply using ToExpression
returns nothing.
ToExpression["\boxtime", TeXForm, HoldForm]
In a more general form, is there a way to use amssymbols in Mathematica?
formatting named-characters
New contributor
$endgroup$
$begingroup$
The closest supported symbols are[CircleTimes]
and[CheckmarkedBox]
, and of course[EmptySquare]
.
$endgroup$
– David G. Stork
2 hours ago
add a comment |
$begingroup$
In LaTeX, boxtimes
works as follows:
documentclass{article}
usepackage{amssymb}
begin{document}
$boxtimes$
end{document}
Is there a way to print this character in Mathematica? Simply using ToExpression
returns nothing.
ToExpression["\boxtime", TeXForm, HoldForm]
In a more general form, is there a way to use amssymbols in Mathematica?
formatting named-characters
New contributor
$endgroup$
In LaTeX, boxtimes
works as follows:
documentclass{article}
usepackage{amssymb}
begin{document}
$boxtimes$
end{document}
Is there a way to print this character in Mathematica? Simply using ToExpression
returns nothing.
ToExpression["\boxtime", TeXForm, HoldForm]
In a more general form, is there a way to use amssymbols in Mathematica?
formatting named-characters
formatting named-characters
New contributor
New contributor
edited 2 hours ago
Carl Lange
3,3401731
3,3401731
New contributor
asked 2 hours ago
MefiticoMefitico
1126
1126
New contributor
New contributor
$begingroup$
The closest supported symbols are[CircleTimes]
and[CheckmarkedBox]
, and of course[EmptySquare]
.
$endgroup$
– David G. Stork
2 hours ago
add a comment |
$begingroup$
The closest supported symbols are[CircleTimes]
and[CheckmarkedBox]
, and of course[EmptySquare]
.
$endgroup$
– David G. Stork
2 hours ago
$begingroup$
The closest supported symbols are
[CircleTimes]
and [CheckmarkedBox]
, and of course [EmptySquare]
.$endgroup$
– David G. Stork
2 hours ago
$begingroup$
The closest supported symbols are
[CircleTimes]
and [CheckmarkedBox]
, and of course [EmptySquare]
.$endgroup$
– David G. Stork
2 hours ago
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
⊠ is Unicode character U+22A0, and so we can input it in Mathematica by typing the following:
:22A0
anywhere in a notebook.
This functionality is documented in tutorial/CharacterCodes
.
As noted by Somos and in the comments to this answer, the display of these characters is font-dependent. The codepoint is valid, but if the font Mathematica is using doesn't have a glyph for the character, it will display as a small box with a question mark inside of it. You may need to play with your font settings to get the character to display correctly.
$endgroup$
add a comment |
$begingroup$
The code :22A0
will produce the Unicode character for BOX TIMES but the font used for output must support the Unicode character and not all of them do, otherwise an empty "Box" will appear. For example, the font "Lucida Sans Unicode" displays the character correctly. In any case, this does not affect the internal string contents even if it is not displayed as expected.
For another example, the code ToCharacterCode["a⊠b"]
will return {97, 8864, 98}
and the reverse code FromCharacterCode[{97, 8864, 98}]
will return the original string.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
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
});
}
});
Mefitico is a new contributor. Be nice, and check out our Code of Conduct.
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%2fmathematica.stackexchange.com%2fquestions%2f190268%2fspecial-character-boxtime%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
⊠ is Unicode character U+22A0, and so we can input it in Mathematica by typing the following:
:22A0
anywhere in a notebook.
This functionality is documented in tutorial/CharacterCodes
.
As noted by Somos and in the comments to this answer, the display of these characters is font-dependent. The codepoint is valid, but if the font Mathematica is using doesn't have a glyph for the character, it will display as a small box with a question mark inside of it. You may need to play with your font settings to get the character to display correctly.
$endgroup$
add a comment |
$begingroup$
⊠ is Unicode character U+22A0, and so we can input it in Mathematica by typing the following:
:22A0
anywhere in a notebook.
This functionality is documented in tutorial/CharacterCodes
.
As noted by Somos and in the comments to this answer, the display of these characters is font-dependent. The codepoint is valid, but if the font Mathematica is using doesn't have a glyph for the character, it will display as a small box with a question mark inside of it. You may need to play with your font settings to get the character to display correctly.
$endgroup$
add a comment |
$begingroup$
⊠ is Unicode character U+22A0, and so we can input it in Mathematica by typing the following:
:22A0
anywhere in a notebook.
This functionality is documented in tutorial/CharacterCodes
.
As noted by Somos and in the comments to this answer, the display of these characters is font-dependent. The codepoint is valid, but if the font Mathematica is using doesn't have a glyph for the character, it will display as a small box with a question mark inside of it. You may need to play with your font settings to get the character to display correctly.
$endgroup$
⊠ is Unicode character U+22A0, and so we can input it in Mathematica by typing the following:
:22A0
anywhere in a notebook.
This functionality is documented in tutorial/CharacterCodes
.
As noted by Somos and in the comments to this answer, the display of these characters is font-dependent. The codepoint is valid, but if the font Mathematica is using doesn't have a glyph for the character, it will display as a small box with a question mark inside of it. You may need to play with your font settings to get the character to display correctly.
edited 1 hour ago
answered 2 hours ago
Carl LangeCarl Lange
3,3401731
3,3401731
add a comment |
add a comment |
$begingroup$
The code :22A0
will produce the Unicode character for BOX TIMES but the font used for output must support the Unicode character and not all of them do, otherwise an empty "Box" will appear. For example, the font "Lucida Sans Unicode" displays the character correctly. In any case, this does not affect the internal string contents even if it is not displayed as expected.
For another example, the code ToCharacterCode["a⊠b"]
will return {97, 8864, 98}
and the reverse code FromCharacterCode[{97, 8864, 98}]
will return the original string.
$endgroup$
add a comment |
$begingroup$
The code :22A0
will produce the Unicode character for BOX TIMES but the font used for output must support the Unicode character and not all of them do, otherwise an empty "Box" will appear. For example, the font "Lucida Sans Unicode" displays the character correctly. In any case, this does not affect the internal string contents even if it is not displayed as expected.
For another example, the code ToCharacterCode["a⊠b"]
will return {97, 8864, 98}
and the reverse code FromCharacterCode[{97, 8864, 98}]
will return the original string.
$endgroup$
add a comment |
$begingroup$
The code :22A0
will produce the Unicode character for BOX TIMES but the font used for output must support the Unicode character and not all of them do, otherwise an empty "Box" will appear. For example, the font "Lucida Sans Unicode" displays the character correctly. In any case, this does not affect the internal string contents even if it is not displayed as expected.
For another example, the code ToCharacterCode["a⊠b"]
will return {97, 8864, 98}
and the reverse code FromCharacterCode[{97, 8864, 98}]
will return the original string.
$endgroup$
The code :22A0
will produce the Unicode character for BOX TIMES but the font used for output must support the Unicode character and not all of them do, otherwise an empty "Box" will appear. For example, the font "Lucida Sans Unicode" displays the character correctly. In any case, this does not affect the internal string contents even if it is not displayed as expected.
For another example, the code ToCharacterCode["a⊠b"]
will return {97, 8864, 98}
and the reverse code FromCharacterCode[{97, 8864, 98}]
will return the original string.
edited 2 hours ago
answered 2 hours ago
SomosSomos
61819
61819
add a comment |
add a comment |
Mefitico is a new contributor. Be nice, and check out our Code of Conduct.
Mefitico is a new contributor. Be nice, and check out our Code of Conduct.
Mefitico is a new contributor. Be nice, and check out our Code of Conduct.
Mefitico is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Mathematica 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.
Use MathJax to format equations. MathJax reference.
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%2fmathematica.stackexchange.com%2fquestions%2f190268%2fspecial-character-boxtime%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
$begingroup$
The closest supported symbols are
[CircleTimes]
and[CheckmarkedBox]
, and of course[EmptySquare]
.$endgroup$
– David G. Stork
2 hours ago