How do you make your own symbol when Detexify fails?newcommand vs. DeclareMathOperatorsubseteq + circ as a...
What to do when eye contact makes your coworker uncomfortable?
How would you translate "more" for use as an interface button?
How much of a Devil Fruit must be consumed to gain the power?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
What is the difference between lands and mana?
Biological Blimps: Propulsion
Is there a nicer/politer/more positive alternative for "negates"?
Why is so much work done on numerical verification of the Riemann Hypothesis?
Does the reader need to like the PoV character?
Does grappling negate Mirror Image?
I found an audio circuit and I built it just fine, but I find it a bit too quiet. How do I amplify the output so that it is a bit louder?
Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?
How to preserve electronics (computers, iPads and phones) for hundreds of years
How can ping know if my host is down
Change the color of a single dot in `ddot` symbol
Doesn't the system of the Supreme Court oppose justice?
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
awk assign to multiple variables at once
"before" and "want" for the same systemd service?
How to draw a matrix with arrows in limited space
"It doesn't matter" or "it won't matter"?
Is there a RAID 0 Equivalent for RAM?
US tourist/student visa
What is going on with gets(stdin) on the site coderbyte?
How do you make your own symbol when Detexify fails?
newcommand vs. DeclareMathOperatorsubseteq + circ as a single symbol (“open subset”)The mysteries of mathpaletteSymbol for a “twisted product”?Square integral symbolFinding the package of a Detexify Symbolhow do you write the grad operator?How do you make the in symbol smaller?Detexify couldn't help me find >— and —<, can you?How to make own character map?Detexify-like service where I can paste a symbolHow do you make a big Laplace Transform symbolHow to create your own integral sign with limitsCan't “detexify” this symbol for the exponential functionHow do you make this symbol in math mode?
My first visit to TeX.SX came when I was looking for a symbol for a twisted product:
I knew about Detexify and the Comprehensive LaTeX Symbol List, but I could not find the symbol there. I tried the construction that was obvious to me, namely overset{scriptstyle sim}{times}
, but the sim
was much too high. I Googled, and found this solution by @Hendrik Vogt. Thus I learned about smash
.
Later I needed the same symbol in a subscript, ultimately learning about mathchoice
and ooalign
. Since then I have found that many questions on TeX.SX needed similar techniques. I though it would be a good idea to have a single question whose answers gave visitors with modest LaTeX skills general guidelines on constructing new symbols using LaTeX and related systems.
So, how do you make your own symbol when Detexify fails?
math-mode symbols math-operators
add a comment |
My first visit to TeX.SX came when I was looking for a symbol for a twisted product:
I knew about Detexify and the Comprehensive LaTeX Symbol List, but I could not find the symbol there. I tried the construction that was obvious to me, namely overset{scriptstyle sim}{times}
, but the sim
was much too high. I Googled, and found this solution by @Hendrik Vogt. Thus I learned about smash
.
Later I needed the same symbol in a subscript, ultimately learning about mathchoice
and ooalign
. Since then I have found that many questions on TeX.SX needed similar techniques. I though it would be a good idea to have a single question whose answers gave visitors with modest LaTeX skills general guidelines on constructing new symbols using LaTeX and related systems.
So, how do you make your own symbol when Detexify fails?
math-mode symbols math-operators
add a comment |
My first visit to TeX.SX came when I was looking for a symbol for a twisted product:
I knew about Detexify and the Comprehensive LaTeX Symbol List, but I could not find the symbol there. I tried the construction that was obvious to me, namely overset{scriptstyle sim}{times}
, but the sim
was much too high. I Googled, and found this solution by @Hendrik Vogt. Thus I learned about smash
.
Later I needed the same symbol in a subscript, ultimately learning about mathchoice
and ooalign
. Since then I have found that many questions on TeX.SX needed similar techniques. I though it would be a good idea to have a single question whose answers gave visitors with modest LaTeX skills general guidelines on constructing new symbols using LaTeX and related systems.
So, how do you make your own symbol when Detexify fails?
math-mode symbols math-operators
My first visit to TeX.SX came when I was looking for a symbol for a twisted product:
I knew about Detexify and the Comprehensive LaTeX Symbol List, but I could not find the symbol there. I tried the construction that was obvious to me, namely overset{scriptstyle sim}{times}
, but the sim
was much too high. I Googled, and found this solution by @Hendrik Vogt. Thus I learned about smash
.
Later I needed the same symbol in a subscript, ultimately learning about mathchoice
and ooalign
. Since then I have found that many questions on TeX.SX needed similar techniques. I though it would be a good idea to have a single question whose answers gave visitors with modest LaTeX skills general guidelines on constructing new symbols using LaTeX and related systems.
So, how do you make your own symbol when Detexify fails?
math-mode symbols math-operators
math-mode symbols math-operators
edited 2 hours ago
Sandy G
asked 3 hours ago
Sandy GSandy G
3,7271429
3,7271429
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
If it's really not in Detexify, check the Comprehensive LaTeX Symbol List to see if your symbol can be found in an existing package. Note, The Comprehensive List is long! Over 300 pages. But it is searchable, well-organized, and has a good table of contents and index.
If that doesn't help, it may be time to design your own symbol. It's probably best to give your new symbol a name so it can be used repeatedly and transported more easily into another document.
If your symbol will be used as an operator with limits (like an integral or summation), you should use the DeclareMathOperator
or DeclareMathOperator*
command. Both of these use the amsmath
package. The unstarred version places sub- and superscript limits to the right of the operator; the starred version places limits above and below the operator when it is in displaystyle
. To illustrate:
DeclareMathOperator*{squareop}{square}
DeclareMathOperator{triangleop}{bigtriangleup}
[Note that square
uses the amssymb
package.]
Then the code
[
squareop_{n=1}^{infty} a_n qquad triangleop_{n=1}^{infty} a_n
]
will produce the following output:
More information on DeclareMathOperator
can be found in this answer by @Andrew Swann.
If your symbol is not going to be used in that fashion, you should probably use newcommand
.
If your symbol is a math symbol: Is it a binary operator (such as +
or times
)? A binary relation (such as <
or leq
)? Or an ordinary math symbol (such as !
or infty
)? The spacing is different for each case. Compare the three versions for the symbol times
:
newcommand{reltimes}{mathrel{times}}
newcommand{bintimes}{mathbin{times}}
newcommand{chrtimes}{{times}}
Then noindent $areltimes b newline abintimes b newline achrtimes b$
will produce the output:
Note the extra set of curly braces in chrtimes
. If you remove them you'll get the same output as mathbin{times}
, since times
is by default a binary operator. You can enclose most math symbols in {}
to turn them into ordinary math symbols.
Typically, binary relations have slightly more space than binary operators, and significantly more than ordinary symbols. However, the spacing changes when these appear as sub- or superscripts. All three examples above will look like A_{atimes b}
if placed in a subscript.
Many new symbols can be created by modifying or combining existing symbols. To rotate, scale or reflect existing symbols, use the graphicx
or graphics
package. Documentation is here. The commands are rotatebox
, scalebox
, resizebox
and reflectbox
.
For example, if you want a cong
symbol (≅), but with the tilde reversed, the reflectbox
command from graphicx
can be used. The code
newcommand{backcong}{mathrel{reflectbox{$cong$}}}
will produce the desired effect with the code $Abackcong B$
.
If you try using this code in a subscript (for example, $X_{Abackcong B}$
), the new symbol will not scale down as it should. This is resolved below below using mathchoice
.
To combine multiple symbols (math or text) the ooalign
command can be used. @egreg has a detailed explanation here. The basic idea is that ooalign
creates a one-column table, with all rows superimposed on one another, and no padding outside the column. Each row of the "table" ends with cr
. Entries can be centered in the column using hfil
.
For example, to produce
we superimpose a circ
symbol with a text T
character. The command
newcommand{Tcirc}{mathbin{%
ooalign{hfil$circ$hfilcrhfil Thfilcr}%
}}
together with $ATcirc B$
produces the output.
To make sure your symbol looks right whether it's displayed, inline, script or scriptscript, you can use mathchoice
. (Note mathpalette
(explained here by @egreg and @Werner) can be used when the four versions are identical except for style.)
mathchoice
{<do this if called in displaystyle>}
{<do this if called in textstyle>}
{<do this if called in scriptstyle>}
{<do this if called in scriptscriptstyle>}
The above code will produce the corresponding output for each of the four math styles.
To illustrate, here is a solution to the twisted product question that will adjust to scripts and scriptscripts.
newcommand{twprod}{mathbin{mathchoice%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{.85ex}{mbox{$scriptscriptstylesim$}}hfilcrhfil$scriptstyletimes$hfilcr}}%
{ooalign{hfilraisebox{.65ex}{scalebox{.8}{$scriptscriptstylesim$}}hfilcrhfil$scriptscriptstyletimes$hfilcr}}%
}}
S^2twprod S^2 quad F_{S^2twprod S^2} quad F_{K_{S^2twprod S^2}}
I downsized the sim
in each style so it fit better over the times
.
Similar effects can be obtained using stackengine
. Documentation is here.
If you can't create your symbol by combining or modifying others, you can design your symbol from scratch using tikz
, together with the ideas above. Here is an example by @marmot.
add a comment |
Another possibility with the stackinset
command, from stackengine
:
documentclass[border = 2pt]{standalone}
usepackage{stackengine, graphicx} %
newcommand{simtimes}{stackMathmathbin{mathchoice%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.7ex}{{scalebox {0.67}{$scriptstylesim $}}}{scriptstyletimes}}%
{stackinset{c}{0ex}{c}{0.6ex}{{scalebox {0.67}{$scriptscriptstylesim $}}}{scriptscriptstyletimes}}%
}}
begin{document}
$ S^2 simtimes S^2 quad F_{S^2 simtimes S^2} quad F_{K_{S^2 simtimes S^2}}$
end{document}
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%2f480768%2fhow-do-you-make-your-own-symbol-when-detexify-fails%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
If it's really not in Detexify, check the Comprehensive LaTeX Symbol List to see if your symbol can be found in an existing package. Note, The Comprehensive List is long! Over 300 pages. But it is searchable, well-organized, and has a good table of contents and index.
If that doesn't help, it may be time to design your own symbol. It's probably best to give your new symbol a name so it can be used repeatedly and transported more easily into another document.
If your symbol will be used as an operator with limits (like an integral or summation), you should use the DeclareMathOperator
or DeclareMathOperator*
command. Both of these use the amsmath
package. The unstarred version places sub- and superscript limits to the right of the operator; the starred version places limits above and below the operator when it is in displaystyle
. To illustrate:
DeclareMathOperator*{squareop}{square}
DeclareMathOperator{triangleop}{bigtriangleup}
[Note that square
uses the amssymb
package.]
Then the code
[
squareop_{n=1}^{infty} a_n qquad triangleop_{n=1}^{infty} a_n
]
will produce the following output:
More information on DeclareMathOperator
can be found in this answer by @Andrew Swann.
If your symbol is not going to be used in that fashion, you should probably use newcommand
.
If your symbol is a math symbol: Is it a binary operator (such as +
or times
)? A binary relation (such as <
or leq
)? Or an ordinary math symbol (such as !
or infty
)? The spacing is different for each case. Compare the three versions for the symbol times
:
newcommand{reltimes}{mathrel{times}}
newcommand{bintimes}{mathbin{times}}
newcommand{chrtimes}{{times}}
Then noindent $areltimes b newline abintimes b newline achrtimes b$
will produce the output:
Note the extra set of curly braces in chrtimes
. If you remove them you'll get the same output as mathbin{times}
, since times
is by default a binary operator. You can enclose most math symbols in {}
to turn them into ordinary math symbols.
Typically, binary relations have slightly more space than binary operators, and significantly more than ordinary symbols. However, the spacing changes when these appear as sub- or superscripts. All three examples above will look like A_{atimes b}
if placed in a subscript.
Many new symbols can be created by modifying or combining existing symbols. To rotate, scale or reflect existing symbols, use the graphicx
or graphics
package. Documentation is here. The commands are rotatebox
, scalebox
, resizebox
and reflectbox
.
For example, if you want a cong
symbol (≅), but with the tilde reversed, the reflectbox
command from graphicx
can be used. The code
newcommand{backcong}{mathrel{reflectbox{$cong$}}}
will produce the desired effect with the code $Abackcong B$
.
If you try using this code in a subscript (for example, $X_{Abackcong B}$
), the new symbol will not scale down as it should. This is resolved below below using mathchoice
.
To combine multiple symbols (math or text) the ooalign
command can be used. @egreg has a detailed explanation here. The basic idea is that ooalign
creates a one-column table, with all rows superimposed on one another, and no padding outside the column. Each row of the "table" ends with cr
. Entries can be centered in the column using hfil
.
For example, to produce
we superimpose a circ
symbol with a text T
character. The command
newcommand{Tcirc}{mathbin{%
ooalign{hfil$circ$hfilcrhfil Thfilcr}%
}}
together with $ATcirc B$
produces the output.
To make sure your symbol looks right whether it's displayed, inline, script or scriptscript, you can use mathchoice
. (Note mathpalette
(explained here by @egreg and @Werner) can be used when the four versions are identical except for style.)
mathchoice
{<do this if called in displaystyle>}
{<do this if called in textstyle>}
{<do this if called in scriptstyle>}
{<do this if called in scriptscriptstyle>}
The above code will produce the corresponding output for each of the four math styles.
To illustrate, here is a solution to the twisted product question that will adjust to scripts and scriptscripts.
newcommand{twprod}{mathbin{mathchoice%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{.85ex}{mbox{$scriptscriptstylesim$}}hfilcrhfil$scriptstyletimes$hfilcr}}%
{ooalign{hfilraisebox{.65ex}{scalebox{.8}{$scriptscriptstylesim$}}hfilcrhfil$scriptscriptstyletimes$hfilcr}}%
}}
S^2twprod S^2 quad F_{S^2twprod S^2} quad F_{K_{S^2twprod S^2}}
I downsized the sim
in each style so it fit better over the times
.
Similar effects can be obtained using stackengine
. Documentation is here.
If you can't create your symbol by combining or modifying others, you can design your symbol from scratch using tikz
, together with the ideas above. Here is an example by @marmot.
add a comment |
If it's really not in Detexify, check the Comprehensive LaTeX Symbol List to see if your symbol can be found in an existing package. Note, The Comprehensive List is long! Over 300 pages. But it is searchable, well-organized, and has a good table of contents and index.
If that doesn't help, it may be time to design your own symbol. It's probably best to give your new symbol a name so it can be used repeatedly and transported more easily into another document.
If your symbol will be used as an operator with limits (like an integral or summation), you should use the DeclareMathOperator
or DeclareMathOperator*
command. Both of these use the amsmath
package. The unstarred version places sub- and superscript limits to the right of the operator; the starred version places limits above and below the operator when it is in displaystyle
. To illustrate:
DeclareMathOperator*{squareop}{square}
DeclareMathOperator{triangleop}{bigtriangleup}
[Note that square
uses the amssymb
package.]
Then the code
[
squareop_{n=1}^{infty} a_n qquad triangleop_{n=1}^{infty} a_n
]
will produce the following output:
More information on DeclareMathOperator
can be found in this answer by @Andrew Swann.
If your symbol is not going to be used in that fashion, you should probably use newcommand
.
If your symbol is a math symbol: Is it a binary operator (such as +
or times
)? A binary relation (such as <
or leq
)? Or an ordinary math symbol (such as !
or infty
)? The spacing is different for each case. Compare the three versions for the symbol times
:
newcommand{reltimes}{mathrel{times}}
newcommand{bintimes}{mathbin{times}}
newcommand{chrtimes}{{times}}
Then noindent $areltimes b newline abintimes b newline achrtimes b$
will produce the output:
Note the extra set of curly braces in chrtimes
. If you remove them you'll get the same output as mathbin{times}
, since times
is by default a binary operator. You can enclose most math symbols in {}
to turn them into ordinary math symbols.
Typically, binary relations have slightly more space than binary operators, and significantly more than ordinary symbols. However, the spacing changes when these appear as sub- or superscripts. All three examples above will look like A_{atimes b}
if placed in a subscript.
Many new symbols can be created by modifying or combining existing symbols. To rotate, scale or reflect existing symbols, use the graphicx
or graphics
package. Documentation is here. The commands are rotatebox
, scalebox
, resizebox
and reflectbox
.
For example, if you want a cong
symbol (≅), but with the tilde reversed, the reflectbox
command from graphicx
can be used. The code
newcommand{backcong}{mathrel{reflectbox{$cong$}}}
will produce the desired effect with the code $Abackcong B$
.
If you try using this code in a subscript (for example, $X_{Abackcong B}$
), the new symbol will not scale down as it should. This is resolved below below using mathchoice
.
To combine multiple symbols (math or text) the ooalign
command can be used. @egreg has a detailed explanation here. The basic idea is that ooalign
creates a one-column table, with all rows superimposed on one another, and no padding outside the column. Each row of the "table" ends with cr
. Entries can be centered in the column using hfil
.
For example, to produce
we superimpose a circ
symbol with a text T
character. The command
newcommand{Tcirc}{mathbin{%
ooalign{hfil$circ$hfilcrhfil Thfilcr}%
}}
together with $ATcirc B$
produces the output.
To make sure your symbol looks right whether it's displayed, inline, script or scriptscript, you can use mathchoice
. (Note mathpalette
(explained here by @egreg and @Werner) can be used when the four versions are identical except for style.)
mathchoice
{<do this if called in displaystyle>}
{<do this if called in textstyle>}
{<do this if called in scriptstyle>}
{<do this if called in scriptscriptstyle>}
The above code will produce the corresponding output for each of the four math styles.
To illustrate, here is a solution to the twisted product question that will adjust to scripts and scriptscripts.
newcommand{twprod}{mathbin{mathchoice%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{.85ex}{mbox{$scriptscriptstylesim$}}hfilcrhfil$scriptstyletimes$hfilcr}}%
{ooalign{hfilraisebox{.65ex}{scalebox{.8}{$scriptscriptstylesim$}}hfilcrhfil$scriptscriptstyletimes$hfilcr}}%
}}
S^2twprod S^2 quad F_{S^2twprod S^2} quad F_{K_{S^2twprod S^2}}
I downsized the sim
in each style so it fit better over the times
.
Similar effects can be obtained using stackengine
. Documentation is here.
If you can't create your symbol by combining or modifying others, you can design your symbol from scratch using tikz
, together with the ideas above. Here is an example by @marmot.
add a comment |
If it's really not in Detexify, check the Comprehensive LaTeX Symbol List to see if your symbol can be found in an existing package. Note, The Comprehensive List is long! Over 300 pages. But it is searchable, well-organized, and has a good table of contents and index.
If that doesn't help, it may be time to design your own symbol. It's probably best to give your new symbol a name so it can be used repeatedly and transported more easily into another document.
If your symbol will be used as an operator with limits (like an integral or summation), you should use the DeclareMathOperator
or DeclareMathOperator*
command. Both of these use the amsmath
package. The unstarred version places sub- and superscript limits to the right of the operator; the starred version places limits above and below the operator when it is in displaystyle
. To illustrate:
DeclareMathOperator*{squareop}{square}
DeclareMathOperator{triangleop}{bigtriangleup}
[Note that square
uses the amssymb
package.]
Then the code
[
squareop_{n=1}^{infty} a_n qquad triangleop_{n=1}^{infty} a_n
]
will produce the following output:
More information on DeclareMathOperator
can be found in this answer by @Andrew Swann.
If your symbol is not going to be used in that fashion, you should probably use newcommand
.
If your symbol is a math symbol: Is it a binary operator (such as +
or times
)? A binary relation (such as <
or leq
)? Or an ordinary math symbol (such as !
or infty
)? The spacing is different for each case. Compare the three versions for the symbol times
:
newcommand{reltimes}{mathrel{times}}
newcommand{bintimes}{mathbin{times}}
newcommand{chrtimes}{{times}}
Then noindent $areltimes b newline abintimes b newline achrtimes b$
will produce the output:
Note the extra set of curly braces in chrtimes
. If you remove them you'll get the same output as mathbin{times}
, since times
is by default a binary operator. You can enclose most math symbols in {}
to turn them into ordinary math symbols.
Typically, binary relations have slightly more space than binary operators, and significantly more than ordinary symbols. However, the spacing changes when these appear as sub- or superscripts. All three examples above will look like A_{atimes b}
if placed in a subscript.
Many new symbols can be created by modifying or combining existing symbols. To rotate, scale or reflect existing symbols, use the graphicx
or graphics
package. Documentation is here. The commands are rotatebox
, scalebox
, resizebox
and reflectbox
.
For example, if you want a cong
symbol (≅), but with the tilde reversed, the reflectbox
command from graphicx
can be used. The code
newcommand{backcong}{mathrel{reflectbox{$cong$}}}
will produce the desired effect with the code $Abackcong B$
.
If you try using this code in a subscript (for example, $X_{Abackcong B}$
), the new symbol will not scale down as it should. This is resolved below below using mathchoice
.
To combine multiple symbols (math or text) the ooalign
command can be used. @egreg has a detailed explanation here. The basic idea is that ooalign
creates a one-column table, with all rows superimposed on one another, and no padding outside the column. Each row of the "table" ends with cr
. Entries can be centered in the column using hfil
.
For example, to produce
we superimpose a circ
symbol with a text T
character. The command
newcommand{Tcirc}{mathbin{%
ooalign{hfil$circ$hfilcrhfil Thfilcr}%
}}
together with $ATcirc B$
produces the output.
To make sure your symbol looks right whether it's displayed, inline, script or scriptscript, you can use mathchoice
. (Note mathpalette
(explained here by @egreg and @Werner) can be used when the four versions are identical except for style.)
mathchoice
{<do this if called in displaystyle>}
{<do this if called in textstyle>}
{<do this if called in scriptstyle>}
{<do this if called in scriptscriptstyle>}
The above code will produce the corresponding output for each of the four math styles.
To illustrate, here is a solution to the twisted product question that will adjust to scripts and scriptscripts.
newcommand{twprod}{mathbin{mathchoice%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{.85ex}{mbox{$scriptscriptstylesim$}}hfilcrhfil$scriptstyletimes$hfilcr}}%
{ooalign{hfilraisebox{.65ex}{scalebox{.8}{$scriptscriptstylesim$}}hfilcrhfil$scriptscriptstyletimes$hfilcr}}%
}}
S^2twprod S^2 quad F_{S^2twprod S^2} quad F_{K_{S^2twprod S^2}}
I downsized the sim
in each style so it fit better over the times
.
Similar effects can be obtained using stackengine
. Documentation is here.
If you can't create your symbol by combining or modifying others, you can design your symbol from scratch using tikz
, together with the ideas above. Here is an example by @marmot.
If it's really not in Detexify, check the Comprehensive LaTeX Symbol List to see if your symbol can be found in an existing package. Note, The Comprehensive List is long! Over 300 pages. But it is searchable, well-organized, and has a good table of contents and index.
If that doesn't help, it may be time to design your own symbol. It's probably best to give your new symbol a name so it can be used repeatedly and transported more easily into another document.
If your symbol will be used as an operator with limits (like an integral or summation), you should use the DeclareMathOperator
or DeclareMathOperator*
command. Both of these use the amsmath
package. The unstarred version places sub- and superscript limits to the right of the operator; the starred version places limits above and below the operator when it is in displaystyle
. To illustrate:
DeclareMathOperator*{squareop}{square}
DeclareMathOperator{triangleop}{bigtriangleup}
[Note that square
uses the amssymb
package.]
Then the code
[
squareop_{n=1}^{infty} a_n qquad triangleop_{n=1}^{infty} a_n
]
will produce the following output:
More information on DeclareMathOperator
can be found in this answer by @Andrew Swann.
If your symbol is not going to be used in that fashion, you should probably use newcommand
.
If your symbol is a math symbol: Is it a binary operator (such as +
or times
)? A binary relation (such as <
or leq
)? Or an ordinary math symbol (such as !
or infty
)? The spacing is different for each case. Compare the three versions for the symbol times
:
newcommand{reltimes}{mathrel{times}}
newcommand{bintimes}{mathbin{times}}
newcommand{chrtimes}{{times}}
Then noindent $areltimes b newline abintimes b newline achrtimes b$
will produce the output:
Note the extra set of curly braces in chrtimes
. If you remove them you'll get the same output as mathbin{times}
, since times
is by default a binary operator. You can enclose most math symbols in {}
to turn them into ordinary math symbols.
Typically, binary relations have slightly more space than binary operators, and significantly more than ordinary symbols. However, the spacing changes when these appear as sub- or superscripts. All three examples above will look like A_{atimes b}
if placed in a subscript.
Many new symbols can be created by modifying or combining existing symbols. To rotate, scale or reflect existing symbols, use the graphicx
or graphics
package. Documentation is here. The commands are rotatebox
, scalebox
, resizebox
and reflectbox
.
For example, if you want a cong
symbol (≅), but with the tilde reversed, the reflectbox
command from graphicx
can be used. The code
newcommand{backcong}{mathrel{reflectbox{$cong$}}}
will produce the desired effect with the code $Abackcong B$
.
If you try using this code in a subscript (for example, $X_{Abackcong B}$
), the new symbol will not scale down as it should. This is resolved below below using mathchoice
.
To combine multiple symbols (math or text) the ooalign
command can be used. @egreg has a detailed explanation here. The basic idea is that ooalign
creates a one-column table, with all rows superimposed on one another, and no padding outside the column. Each row of the "table" ends with cr
. Entries can be centered in the column using hfil
.
For example, to produce
we superimpose a circ
symbol with a text T
character. The command
newcommand{Tcirc}{mathbin{%
ooalign{hfil$circ$hfilcrhfil Thfilcr}%
}}
together with $ATcirc B$
produces the output.
To make sure your symbol looks right whether it's displayed, inline, script or scriptscript, you can use mathchoice
. (Note mathpalette
(explained here by @egreg and @Werner) can be used when the four versions are identical except for style.)
mathchoice
{<do this if called in displaystyle>}
{<do this if called in textstyle>}
{<do this if called in scriptstyle>}
{<do this if called in scriptscriptstyle>}
The above code will produce the corresponding output for each of the four math styles.
To illustrate, here is a solution to the twisted product question that will adjust to scripts and scriptscripts.
newcommand{twprod}{mathbin{mathchoice%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{1.15ex}{mbox{$scriptstylesim$}}hfilcrhfil$times$hfilcr}}%
{ooalign{hfilraisebox{.85ex}{mbox{$scriptscriptstylesim$}}hfilcrhfil$scriptstyletimes$hfilcr}}%
{ooalign{hfilraisebox{.65ex}{scalebox{.8}{$scriptscriptstylesim$}}hfilcrhfil$scriptscriptstyletimes$hfilcr}}%
}}
S^2twprod S^2 quad F_{S^2twprod S^2} quad F_{K_{S^2twprod S^2}}
I downsized the sim
in each style so it fit better over the times
.
Similar effects can be obtained using stackengine
. Documentation is here.
If you can't create your symbol by combining or modifying others, you can design your symbol from scratch using tikz
, together with the ideas above. Here is an example by @marmot.
edited 55 mins ago
Phelype Oleinik
24.6k54688
24.6k54688
answered 3 hours ago
Sandy GSandy G
3,7271429
3,7271429
add a comment |
add a comment |
Another possibility with the stackinset
command, from stackengine
:
documentclass[border = 2pt]{standalone}
usepackage{stackengine, graphicx} %
newcommand{simtimes}{stackMathmathbin{mathchoice%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.7ex}{{scalebox {0.67}{$scriptstylesim $}}}{scriptstyletimes}}%
{stackinset{c}{0ex}{c}{0.6ex}{{scalebox {0.67}{$scriptscriptstylesim $}}}{scriptscriptstyletimes}}%
}}
begin{document}
$ S^2 simtimes S^2 quad F_{S^2 simtimes S^2} quad F_{K_{S^2 simtimes S^2}}$
end{document}
add a comment |
Another possibility with the stackinset
command, from stackengine
:
documentclass[border = 2pt]{standalone}
usepackage{stackengine, graphicx} %
newcommand{simtimes}{stackMathmathbin{mathchoice%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.7ex}{{scalebox {0.67}{$scriptstylesim $}}}{scriptstyletimes}}%
{stackinset{c}{0ex}{c}{0.6ex}{{scalebox {0.67}{$scriptscriptstylesim $}}}{scriptscriptstyletimes}}%
}}
begin{document}
$ S^2 simtimes S^2 quad F_{S^2 simtimes S^2} quad F_{K_{S^2 simtimes S^2}}$
end{document}
add a comment |
Another possibility with the stackinset
command, from stackengine
:
documentclass[border = 2pt]{standalone}
usepackage{stackengine, graphicx} %
newcommand{simtimes}{stackMathmathbin{mathchoice%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.7ex}{{scalebox {0.67}{$scriptstylesim $}}}{scriptstyletimes}}%
{stackinset{c}{0ex}{c}{0.6ex}{{scalebox {0.67}{$scriptscriptstylesim $}}}{scriptscriptstyletimes}}%
}}
begin{document}
$ S^2 simtimes S^2 quad F_{S^2 simtimes S^2} quad F_{K_{S^2 simtimes S^2}}$
end{document}
Another possibility with the stackinset
command, from stackengine
:
documentclass[border = 2pt]{standalone}
usepackage{stackengine, graphicx} %
newcommand{simtimes}{stackMathmathbin{mathchoice%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.9ex}{{scalebox {0.67}{$sim $}}}{times}}%
{stackinset{c}{0ex}{c}{0.7ex}{{scalebox {0.67}{$scriptstylesim $}}}{scriptstyletimes}}%
{stackinset{c}{0ex}{c}{0.6ex}{{scalebox {0.67}{$scriptscriptstylesim $}}}{scriptscriptstyletimes}}%
}}
begin{document}
$ S^2 simtimes S^2 quad F_{S^2 simtimes S^2} quad F_{K_{S^2 simtimes S^2}}$
end{document}
answered 41 mins ago
BernardBernard
173k776205
173k776205
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.
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%2f480768%2fhow-do-you-make-your-own-symbol-when-detexify-fails%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