Renewcommand with ensuremath and brackets
I'm making an .sty file (which is called my-macros.sty and is in my home /texmf directory) where I define some commands that I constantly use. Among these commands, there are the following
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
The apol command is to give a polynomial ring over a field. But once I change variables (from X to X,Y to X,Y,Z) and the field (from K to the rational numbers to a finite field) over and over throughout the text, I used DEFapol to define the variables (first argument of DEFapol) and the field (second argument). Note that the finite field with q elements is given by the other command fq. Note also that I want X,Y to be the default variables for my polynomial ring.
When I test these commands in the following MWE
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
usepackage{my-macros}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
the first two $apol$ expressions are what I want them to be, but the last is not: the fq command is taking [X,Y,Z] as its argument so the result is the following expression $mathbb{F}_{[X,Y,Z]}$. But what I really wanted was it to be $mathbb{F}_q[X,Y,Z]$. One solution for this would be to simply type
DEFapol[X,Y,Z]{fq[q]}
So my question is: is there another way to handle the brackets inside the definitions of my commands such that when I type
DEF[X,Y,Z]{fq}
I get the desired result, i.e., such that fq ignores [X,Y,Z] as its argument?
amsmath package-writing nesting
add a comment |
I'm making an .sty file (which is called my-macros.sty and is in my home /texmf directory) where I define some commands that I constantly use. Among these commands, there are the following
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
The apol command is to give a polynomial ring over a field. But once I change variables (from X to X,Y to X,Y,Z) and the field (from K to the rational numbers to a finite field) over and over throughout the text, I used DEFapol to define the variables (first argument of DEFapol) and the field (second argument). Note that the finite field with q elements is given by the other command fq. Note also that I want X,Y to be the default variables for my polynomial ring.
When I test these commands in the following MWE
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
usepackage{my-macros}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
the first two $apol$ expressions are what I want them to be, but the last is not: the fq command is taking [X,Y,Z] as its argument so the result is the following expression $mathbb{F}_{[X,Y,Z]}$. But what I really wanted was it to be $mathbb{F}_q[X,Y,Z]$. One solution for this would be to simply type
DEFapol[X,Y,Z]{fq[q]}
So my question is: is there another way to handle the brackets inside the definitions of my commands such that when I type
DEF[X,Y,Z]{fq}
I get the desired result, i.e., such that fq ignores [X,Y,Z] as its argument?
amsmath package-writing nesting
add a comment |
I'm making an .sty file (which is called my-macros.sty and is in my home /texmf directory) where I define some commands that I constantly use. Among these commands, there are the following
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
The apol command is to give a polynomial ring over a field. But once I change variables (from X to X,Y to X,Y,Z) and the field (from K to the rational numbers to a finite field) over and over throughout the text, I used DEFapol to define the variables (first argument of DEFapol) and the field (second argument). Note that the finite field with q elements is given by the other command fq. Note also that I want X,Y to be the default variables for my polynomial ring.
When I test these commands in the following MWE
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
usepackage{my-macros}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
the first two $apol$ expressions are what I want them to be, but the last is not: the fq command is taking [X,Y,Z] as its argument so the result is the following expression $mathbb{F}_{[X,Y,Z]}$. But what I really wanted was it to be $mathbb{F}_q[X,Y,Z]$. One solution for this would be to simply type
DEFapol[X,Y,Z]{fq[q]}
So my question is: is there another way to handle the brackets inside the definitions of my commands such that when I type
DEF[X,Y,Z]{fq}
I get the desired result, i.e., such that fq ignores [X,Y,Z] as its argument?
amsmath package-writing nesting
I'm making an .sty file (which is called my-macros.sty and is in my home /texmf directory) where I define some commands that I constantly use. Among these commands, there are the following
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
The apol command is to give a polynomial ring over a field. But once I change variables (from X to X,Y to X,Y,Z) and the field (from K to the rational numbers to a finite field) over and over throughout the text, I used DEFapol to define the variables (first argument of DEFapol) and the field (second argument). Note that the finite field with q elements is given by the other command fq. Note also that I want X,Y to be the default variables for my polynomial ring.
When I test these commands in the following MWE
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
usepackage{my-macros}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
the first two $apol$ expressions are what I want them to be, but the last is not: the fq command is taking [X,Y,Z] as its argument so the result is the following expression $mathbb{F}_{[X,Y,Z]}$. But what I really wanted was it to be $mathbb{F}_q[X,Y,Z]$. One solution for this would be to simply type
DEFapol[X,Y,Z]{fq[q]}
So my question is: is there another way to handle the brackets inside the definitions of my commands such that when I type
DEF[X,Y,Z]{fq}
I get the desired result, i.e., such that fq ignores [X,Y,Z] as its argument?
amsmath package-writing nesting
amsmath package-writing nesting
asked 10 mins ago
LararaLarara
1668
1668
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2{}[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
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%2f475276%2frenewcommand-with-ensuremath-and-brackets%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2{}[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
add a comment |
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2{}[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
add a comment |
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2{}[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
documentclass{article}
usepackage{amsmath,amssymb,amsfonts,amsthm}
newcommand{apol}{}
newcommand{DEFapol}[2][X,Y]{renewcommand{apol}[1][#1]%
{ensuremath{#2{}[##1]}}}
newcommand{fq}[1][q]{ensuremath{mathbb{F}_{#1}}}
begin{document}
DEFapol[X]{K}
$apol$
DEFapol{K}
$apol$
DEFapol[X,Y,Z]{fq}
$apol$
end{document}
answered 46 secs ago
Steven B. SegletesSteven B. Segletes
155k9200409
155k9200409
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%2f475276%2frenewcommand-with-ensuremath-and-brackets%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