Can't find the latex code for the ⍎ (down tack jot) symbol
I'm new to LaTeX and I don't know how to use the CTAN package for typing APL symbols. So far I use the wasysym
package but symbols like the ⍎ (down tack jot) are not included.
I have downloaded the apl
CTAN package which is a directory of various files but I can't find instructions on how to use it in my LaTeX editor (TeXworks).
Please can you tell me how to use this package?
symbols unicode
New contributor
add a comment |
I'm new to LaTeX and I don't know how to use the CTAN package for typing APL symbols. So far I use the wasysym
package but symbols like the ⍎ (down tack jot) are not included.
I have downloaded the apl
CTAN package which is a directory of various files but I can't find instructions on how to use it in my LaTeX editor (TeXworks).
Please can you tell me how to use this package?
symbols unicode
New contributor
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
1
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer formiktex
,telive
andmactex
and see if any of this brings up some hits?
– user185220
yesterday
add a comment |
I'm new to LaTeX and I don't know how to use the CTAN package for typing APL symbols. So far I use the wasysym
package but symbols like the ⍎ (down tack jot) are not included.
I have downloaded the apl
CTAN package which is a directory of various files but I can't find instructions on how to use it in my LaTeX editor (TeXworks).
Please can you tell me how to use this package?
symbols unicode
New contributor
I'm new to LaTeX and I don't know how to use the CTAN package for typing APL symbols. So far I use the wasysym
package but symbols like the ⍎ (down tack jot) are not included.
I have downloaded the apl
CTAN package which is a directory of various files but I can't find instructions on how to use it in my LaTeX editor (TeXworks).
Please can you tell me how to use this package?
symbols unicode
symbols unicode
New contributor
New contributor
edited yesterday
JouleV
12.3k22663
12.3k22663
New contributor
asked yesterday
awyr_agoredawyr_agored
1253
1253
New contributor
New contributor
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
1
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer formiktex
,telive
andmactex
and see if any of this brings up some hits?
– user185220
yesterday
add a comment |
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
1
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer formiktex
,telive
andmactex
and see if any of this brings up some hits?
– user185220
yesterday
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
1
1
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer for
miktex
, telive
and mactex
and see if any of this brings up some hits?– user185220
yesterday
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer for
miktex
, telive
and mactex
and see if any of this brings up some hits?– user185220
yesterday
add a comment |
3 Answers
3
active
oldest
votes
You can superimpose perp
and circ
.
documentclass{article}
usepackage{wasysym}
makeatletter
DeclareRobustCommand{APLdtj}{%
begingroupm@th
vphantom{$perp$}%
ooalign{hfilraisebox{0.2ex}{$circ$}hfilcr$perp$cr}%
endgroup
}
makeatother
begin{document}
APLbox quad APLdtj quad APLcomment
end{document}
add a comment |
documentclass{article}
usepackage{stackengine,scalerel}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr.6LMpt+.2ptrelax}%
{SavedStyleperp}{SavedStylekern-.2ptkern.08ptcirc}{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
If you want the circle smaller,
documentclass{article}
usepackage{stackengine,scalerel,graphicx}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr1LMpt+.2ptrelax}%
{SavedStyleperp}{scalebox{.7}{$SavedStylekern-.18ptkern.08ptcirc$}}%
{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
add a comment |
As you just used the Unicode symbol ⍎, you’re aware of it. You can use that in LaTeX, too. Load the fontspec
package, compile in LuaLaTeX or XeLaTeX, and you can paste it into your source code. ^^^^234E
also works, as does char{"234e}
, or you can define a newcommand
.
If your main font doesn’t contain that glyph, you can define the command in text mode like so:
newfontfamilysymbolfont{DejaVu Sans}[Scale=MatchLowercase]
newcommanddtjot{{symbolfont ⍎}}
In math mode, you would load unicode-math
and use the range=
option of setmathfont
if the main math font you want to use does not cover it. You could also put the text-mode command inside a mbox
.
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
});
}
});
awyr_agored 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%2ftex.stackexchange.com%2fquestions%2f483951%2fcant-find-the-latex-code-for-the-down-tack-jot-symbol%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can superimpose perp
and circ
.
documentclass{article}
usepackage{wasysym}
makeatletter
DeclareRobustCommand{APLdtj}{%
begingroupm@th
vphantom{$perp$}%
ooalign{hfilraisebox{0.2ex}{$circ$}hfilcr$perp$cr}%
endgroup
}
makeatother
begin{document}
APLbox quad APLdtj quad APLcomment
end{document}
add a comment |
You can superimpose perp
and circ
.
documentclass{article}
usepackage{wasysym}
makeatletter
DeclareRobustCommand{APLdtj}{%
begingroupm@th
vphantom{$perp$}%
ooalign{hfilraisebox{0.2ex}{$circ$}hfilcr$perp$cr}%
endgroup
}
makeatother
begin{document}
APLbox quad APLdtj quad APLcomment
end{document}
add a comment |
You can superimpose perp
and circ
.
documentclass{article}
usepackage{wasysym}
makeatletter
DeclareRobustCommand{APLdtj}{%
begingroupm@th
vphantom{$perp$}%
ooalign{hfilraisebox{0.2ex}{$circ$}hfilcr$perp$cr}%
endgroup
}
makeatother
begin{document}
APLbox quad APLdtj quad APLcomment
end{document}
You can superimpose perp
and circ
.
documentclass{article}
usepackage{wasysym}
makeatletter
DeclareRobustCommand{APLdtj}{%
begingroupm@th
vphantom{$perp$}%
ooalign{hfilraisebox{0.2ex}{$circ$}hfilcr$perp$cr}%
endgroup
}
makeatother
begin{document}
APLbox quad APLdtj quad APLcomment
end{document}
answered yesterday
egregegreg
733k8919313254
733k8919313254
add a comment |
add a comment |
documentclass{article}
usepackage{stackengine,scalerel}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr.6LMpt+.2ptrelax}%
{SavedStyleperp}{SavedStylekern-.2ptkern.08ptcirc}{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
If you want the circle smaller,
documentclass{article}
usepackage{stackengine,scalerel,graphicx}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr1LMpt+.2ptrelax}%
{SavedStyleperp}{scalebox{.7}{$SavedStylekern-.18ptkern.08ptcirc$}}%
{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
add a comment |
documentclass{article}
usepackage{stackengine,scalerel}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr.6LMpt+.2ptrelax}%
{SavedStyleperp}{SavedStylekern-.2ptkern.08ptcirc}{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
If you want the circle smaller,
documentclass{article}
usepackage{stackengine,scalerel,graphicx}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr1LMpt+.2ptrelax}%
{SavedStyleperp}{scalebox{.7}{$SavedStylekern-.18ptkern.08ptcirc$}}%
{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
add a comment |
documentclass{article}
usepackage{stackengine,scalerel}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr.6LMpt+.2ptrelax}%
{SavedStyleperp}{SavedStylekern-.2ptkern.08ptcirc}{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
If you want the circle smaller,
documentclass{article}
usepackage{stackengine,scalerel,graphicx}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr1LMpt+.2ptrelax}%
{SavedStyleperp}{scalebox{.7}{$SavedStylekern-.18ptkern.08ptcirc$}}%
{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
documentclass{article}
usepackage{stackengine,scalerel}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr.6LMpt+.2ptrelax}%
{SavedStyleperp}{SavedStylekern-.2ptkern.08ptcirc}{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
If you want the circle smaller,
documentclass{article}
usepackage{stackengine,scalerel,graphicx}
newcommanddtjot{ThisStyle{ensurestackMath{stackengine{dimexpr1LMpt+.2ptrelax}%
{SavedStyleperp}{scalebox{.7}{$SavedStylekern-.18ptkern.08ptcirc$}}%
{O}{c}{F}{F}{L}}}
}
begin{document}
$dtjotquadscriptstyledtjotquadscriptscriptstyledtjot$
end{document}
edited yesterday
answered yesterday
Steven B. SegletesSteven B. Segletes
161k9206416
161k9206416
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
add a comment |
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
Wow - stackengine and scalerel are not found using my TeXworks editor ...I'll check what distro I'm using. @user185220
– awyr_agored
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
@awyr_agored You can always get the style files here: ctan.org/pkg/stackengine and ctan.org/pkg/scalerel
– Steven B. Segletes
yesterday
add a comment |
As you just used the Unicode symbol ⍎, you’re aware of it. You can use that in LaTeX, too. Load the fontspec
package, compile in LuaLaTeX or XeLaTeX, and you can paste it into your source code. ^^^^234E
also works, as does char{"234e}
, or you can define a newcommand
.
If your main font doesn’t contain that glyph, you can define the command in text mode like so:
newfontfamilysymbolfont{DejaVu Sans}[Scale=MatchLowercase]
newcommanddtjot{{symbolfont ⍎}}
In math mode, you would load unicode-math
and use the range=
option of setmathfont
if the main math font you want to use does not cover it. You could also put the text-mode command inside a mbox
.
add a comment |
As you just used the Unicode symbol ⍎, you’re aware of it. You can use that in LaTeX, too. Load the fontspec
package, compile in LuaLaTeX or XeLaTeX, and you can paste it into your source code. ^^^^234E
also works, as does char{"234e}
, or you can define a newcommand
.
If your main font doesn’t contain that glyph, you can define the command in text mode like so:
newfontfamilysymbolfont{DejaVu Sans}[Scale=MatchLowercase]
newcommanddtjot{{symbolfont ⍎}}
In math mode, you would load unicode-math
and use the range=
option of setmathfont
if the main math font you want to use does not cover it. You could also put the text-mode command inside a mbox
.
add a comment |
As you just used the Unicode symbol ⍎, you’re aware of it. You can use that in LaTeX, too. Load the fontspec
package, compile in LuaLaTeX or XeLaTeX, and you can paste it into your source code. ^^^^234E
also works, as does char{"234e}
, or you can define a newcommand
.
If your main font doesn’t contain that glyph, you can define the command in text mode like so:
newfontfamilysymbolfont{DejaVu Sans}[Scale=MatchLowercase]
newcommanddtjot{{symbolfont ⍎}}
In math mode, you would load unicode-math
and use the range=
option of setmathfont
if the main math font you want to use does not cover it. You could also put the text-mode command inside a mbox
.
As you just used the Unicode symbol ⍎, you’re aware of it. You can use that in LaTeX, too. Load the fontspec
package, compile in LuaLaTeX or XeLaTeX, and you can paste it into your source code. ^^^^234E
also works, as does char{"234e}
, or you can define a newcommand
.
If your main font doesn’t contain that glyph, you can define the command in text mode like so:
newfontfamilysymbolfont{DejaVu Sans}[Scale=MatchLowercase]
newcommanddtjot{{symbolfont ⍎}}
In math mode, you would load unicode-math
and use the range=
option of setmathfont
if the main math font you want to use does not cover it. You could also put the text-mode command inside a mbox
.
edited 13 hours ago
answered yesterday
DavislorDavislor
7,3641432
7,3641432
add a comment |
add a comment |
awyr_agored is a new contributor. Be nice, and check out our Code of Conduct.
awyr_agored is a new contributor. Be nice, and check out our Code of Conduct.
awyr_agored is a new contributor. Be nice, and check out our Code of Conduct.
awyr_agored is a new contributor. Be nice, and check out our Code of Conduct.
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%2f483951%2fcant-find-the-latex-code-for-the-down-tack-jot-symbol%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
which tex distro do you have? miktex or texlive? If you have miktex, better install it with the miktex console because installing font things manually is really tricky.
– user185220
yesterday
I use TeXworks as my LaTeX editor
– awyr_agored
yesterday
Your editor does not matter. The tex distribution would be interesting to know. miktex? telive? mactex? something exotic? Does any of these names ring a bell?
– user185220
yesterday
I currently use pdfLaTeX - does that sound right?
– awyr_agored
yesterday
1
no, this is an engine. I would need to know the name of the distribution that provides pdflatex for you. Can you search your computer for
miktex
,telive
andmactex
and see if any of this brings up some hits?– user185220
yesterday