Underbar nabla symbol doesn't workMatching under- and overlines to parenthesesDrawing multiple lines and/or...
How to split an equation in two lines?
Tantum religio potuit suadere malorum – Lucretius
Apply brace expansion in "reverse order"
Is this one of the engines from the 9/11 aircraft?
How to get cool night-vision without lame drawbacks?
What is the mechanical difference between the Spectator's Create Food and Water action and the Banshee's Undead Nature Trait?
What reason would an alien civilization have for building a Dyson Sphere (or Swarm) if cheap Nuclear fusion is available?
Can Ogre clerics use Purify Food and Drink on humanoid characters?
3D Crossword, Cryptic, Statue View & Maze
Inverse-quotes-quine
Capacitors in series INTUITION
Swapping rooks in a 4x4 board
How would modern naval warfare have to have developed differently for battleships to still be relevant in the 21st century?
How much will studying magic in an academy cost?
Why do textbooks often include the solutions to odd or even numbered problems but not both?
Require advice on power conservation for backpacking trip
How do I set an alias to a terminal line?
How can I politely work my way around not liking coffee or beer when it comes to professional networking?
Computing a trigonometric integral
Did Karl Marx ever use any example that involved cotton and dollars to illustrate the way capital and surplus value were generated?
Can ADFS connect to other SSO services?
First-year PhD giving a talk among well-established researchers in the field
Where do I get advice and guidance from in my PhD if my supervisor is not an expert in the field I am working on?
Why aren't cotton tents more popular?
Underbar nabla symbol doesn't work
Matching under- and overlines to parenthesesDrawing multiple lines and/or dashed lines under wordsMacro to capitalize all letters and change breaks to underlinesSpecial underline/Partial boxUnderlining text with repeated symbolunderline (empty space) until end of line (manual “fill in the blank” to end of line), within enumerated environmentUnderline inside of enumerate and alignField for handwritten textFormula in Latex: How to use special symbols in Latex?Redefine `uline` so `colorbox` is locally defined to have underlined text, too
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I want to write a symbol like the one shown in the following image
but I can't make it work. I tried:
$$ underbar{nabla} $$
but it didn't work (I think the reason for this is that the input for the underbar command should be only text.
How can I make this work ?
underline
New contributor
add a comment |
I want to write a symbol like the one shown in the following image
but I can't make it work. I tried:
$$ underbar{nabla} $$
but it didn't work (I think the reason for this is that the input for the underbar command should be only text.
How can I make this work ?
underline
New contributor
Why are you using the text-mode commandunderbar
instead of the math-mode commandunderline
?
– Mico
57 mins ago
add a comment |
I want to write a symbol like the one shown in the following image
but I can't make it work. I tried:
$$ underbar{nabla} $$
but it didn't work (I think the reason for this is that the input for the underbar command should be only text.
How can I make this work ?
underline
New contributor
I want to write a symbol like the one shown in the following image
but I can't make it work. I tried:
$$ underbar{nabla} $$
but it didn't work (I think the reason for this is that the input for the underbar command should be only text.
How can I make this work ?
underline
underline
New contributor
New contributor
New contributor
asked 10 hours ago
Andreas MastronikolisAndreas Mastronikolis
133 bronze badges
133 bronze badges
New contributor
New contributor
Why are you using the text-mode commandunderbar
instead of the math-mode commandunderline
?
– Mico
57 mins ago
add a comment |
Why are you using the text-mode commandunderbar
instead of the math-mode commandunderline
?
– Mico
57 mins ago
Why are you using the text-mode command
underbar
instead of the math-mode command underline
?– Mico
57 mins ago
Why are you using the text-mode command
underbar
instead of the math-mode command underline
?– Mico
57 mins ago
add a comment |
2 Answers
2
active
oldest
votes
documentclass{article}
usepackage{amsmath}
begin{document}
$underbar{hbox{$nabla$}}$
end{document}
or, alternately,
documentclass{article}
usepackage{amsmath}
begin{document}
$setbox0=hbox{$nabla$}underbar{box0}$
end{document}
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
underline
is the primitive (and math mode),underbar
is a latex text mode version defined essentially asdefhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.
– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
|
show 1 more comment
documentclass{article}
begin{document}
$underline{nabla}$
end{document}
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
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
});
}
});
Andreas Mastronikolis 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%2f496679%2funderbar-nabla-symbol-doesnt-work%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
documentclass{article}
usepackage{amsmath}
begin{document}
$underbar{hbox{$nabla$}}$
end{document}
or, alternately,
documentclass{article}
usepackage{amsmath}
begin{document}
$setbox0=hbox{$nabla$}underbar{box0}$
end{document}
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
underline
is the primitive (and math mode),underbar
is a latex text mode version defined essentially asdefhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.
– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
|
show 1 more comment
documentclass{article}
usepackage{amsmath}
begin{document}
$underbar{hbox{$nabla$}}$
end{document}
or, alternately,
documentclass{article}
usepackage{amsmath}
begin{document}
$setbox0=hbox{$nabla$}underbar{box0}$
end{document}
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
underline
is the primitive (and math mode),underbar
is a latex text mode version defined essentially asdefhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.
– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
|
show 1 more comment
documentclass{article}
usepackage{amsmath}
begin{document}
$underbar{hbox{$nabla$}}$
end{document}
or, alternately,
documentclass{article}
usepackage{amsmath}
begin{document}
$setbox0=hbox{$nabla$}underbar{box0}$
end{document}
documentclass{article}
usepackage{amsmath}
begin{document}
$underbar{hbox{$nabla$}}$
end{document}
or, alternately,
documentclass{article}
usepackage{amsmath}
begin{document}
$setbox0=hbox{$nabla$}underbar{box0}$
end{document}
answered 10 hours ago
Steven B. SegletesSteven B. Segletes
166k9 gold badges210 silver badges428 bronze badges
166k9 gold badges210 silver badges428 bronze badges
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
underline
is the primitive (and math mode),underbar
is a latex text mode version defined essentially asdefhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.
– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
|
show 1 more comment
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
underline
is the primitive (and math mode),underbar
is a latex text mode version defined essentially asdefhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.
– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
Thanks! Will accept the answer when I can (apparently it needs some time)
– Andreas Mastronikolis
10 hours ago
2
2
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
the system forces you to wait to allow time for, hmm, better answers:-)
– David Carlisle
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
@DavidCarlisle Answers, schmansers.
– Steven B. Segletes
10 hours ago
2
2
underline
is the primitive (and math mode), underbar
is a latex text mode version defined essentially as defhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.– David Carlisle
10 hours ago
underline
is the primitive (and math mode), underbar
is a latex text mode version defined essentially as defhbar#1{underline{hbox{#1}}
so nesting that in another hbox layer and another math group to get back to math mode is not the most direct route.– David Carlisle
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
@DavidCarlisle My sarchasm was purely in jest. If you post, the answer is almost assuredly better than mine, and always for good reason.
– Steven B. Segletes
10 hours ago
|
show 1 more comment
documentclass{article}
begin{document}
$underline{nabla}$
end{document}
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
add a comment |
documentclass{article}
begin{document}
$underline{nabla}$
end{document}
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
add a comment |
documentclass{article}
begin{document}
$underline{nabla}$
end{document}
documentclass{article}
begin{document}
$underline{nabla}$
end{document}
answered 10 hours ago
David CarlisleDavid Carlisle
511k43 gold badges1161 silver badges1919 bronze badges
511k43 gold badges1161 silver badges1919 bronze badges
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
add a comment |
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
4
4
+1 for the better answer!
– Steven B. Segletes
10 hours ago
+1 for the better answer!
– Steven B. Segletes
10 hours ago
2
2
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
@StevenB.Segletes :-)
– David Carlisle
10 hours ago
add a comment |
Andreas Mastronikolis is a new contributor. Be nice, and check out our Code of Conduct.
Andreas Mastronikolis is a new contributor. Be nice, and check out our Code of Conduct.
Andreas Mastronikolis is a new contributor. Be nice, and check out our Code of Conduct.
Andreas Mastronikolis 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%2f496679%2funderbar-nabla-symbol-doesnt-work%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
Why are you using the text-mode command
underbar
instead of the math-mode commandunderline
?– Mico
57 mins ago