Using command/macro as an optional argument
I have a bunch of images to include and want to use the same clip parameters on them. The approach I'm taking doesn't seem to work though:
This works:
includegraphics[clip,trim=0 0 80px 80px, width=xtextwidth]{image}
This doesn't:
newcommandx{.22}
newcommandmytrim{0 0 80px 80px}
includegraphics[clip,trim=mytrim, width=xtextwidth]{image}
^ ^- Does work
^- Doesn't work
What am I doing wrong?
macros
add a comment |
I have a bunch of images to include and want to use the same clip parameters on them. The approach I'm taking doesn't seem to work though:
This works:
includegraphics[clip,trim=0 0 80px 80px, width=xtextwidth]{image}
This doesn't:
newcommandx{.22}
newcommandmytrim{0 0 80px 80px}
includegraphics[clip,trim=mytrim, width=xtextwidth]{image}
^ ^- Does work
^- Doesn't work
What am I doing wrong?
macros
add a comment |
I have a bunch of images to include and want to use the same clip parameters on them. The approach I'm taking doesn't seem to work though:
This works:
includegraphics[clip,trim=0 0 80px 80px, width=xtextwidth]{image}
This doesn't:
newcommandx{.22}
newcommandmytrim{0 0 80px 80px}
includegraphics[clip,trim=mytrim, width=xtextwidth]{image}
^ ^- Does work
^- Doesn't work
What am I doing wrong?
macros
I have a bunch of images to include and want to use the same clip parameters on them. The approach I'm taking doesn't seem to work though:
This works:
includegraphics[clip,trim=0 0 80px 80px, width=xtextwidth]{image}
This doesn't:
newcommandx{.22}
newcommandmytrim{0 0 80px 80px}
includegraphics[clip,trim=mytrim, width=xtextwidth]{image}
^ ^- Does work
^- Doesn't work
What am I doing wrong?
macros
macros
asked 3 hours ago
argentum2fargentum2f
1506
1506
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
the syntax 0.5textwidth is built in to tex so a length setting of xtextwidth where x is a factor such as 0.5 just works naturally, however the macros behind trim key needs to parse the space separated list "by hand" and mytrim doesn't have any spaces until it is expanded.
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could donewcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1}for example thenzz{image1} zz{image2}
– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 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
});
}
});
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%2f482179%2fusing-command-macro-as-an-optional-argument%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
the syntax 0.5textwidth is built in to tex so a length setting of xtextwidth where x is a factor such as 0.5 just works naturally, however the macros behind trim key needs to parse the space separated list "by hand" and mytrim doesn't have any spaces until it is expanded.
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could donewcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1}for example thenzz{image1} zz{image2}
– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
add a comment |
the syntax 0.5textwidth is built in to tex so a length setting of xtextwidth where x is a factor such as 0.5 just works naturally, however the macros behind trim key needs to parse the space separated list "by hand" and mytrim doesn't have any spaces until it is expanded.
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could donewcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1}for example thenzz{image1} zz{image2}
– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
add a comment |
the syntax 0.5textwidth is built in to tex so a length setting of xtextwidth where x is a factor such as 0.5 just works naturally, however the macros behind trim key needs to parse the space separated list "by hand" and mytrim doesn't have any spaces until it is expanded.
the syntax 0.5textwidth is built in to tex so a length setting of xtextwidth where x is a factor such as 0.5 just works naturally, however the macros behind trim key needs to parse the space separated list "by hand" and mytrim doesn't have any spaces until it is expanded.
answered 2 hours ago
David CarlisleDavid Carlisle
496k4111431890
496k4111431890
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could donewcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1}for example thenzz{image1} zz{image2}
– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
add a comment |
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could donewcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1}for example thenzz{image1} zz{image2}
– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
So is there any alternative? Or is there no way around copy/paste in this instance?
– argentum2f
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could do
newcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1} for example then zz{image1} zz{image2}– David Carlisle
2 hours ago
@argentum2f oh lots of things you could do but you provided very little context and no test file, you could do
newcommandzz[1]{includegraphics[clip,trim=0 0 80px 80px, width=.22textwidth]{#1} for example then zz{image1} zz{image2}– David Carlisle
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
Thanks, that works.
– argentum2f
2 hours ago
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%2f482179%2fusing-command-macro-as-an-optional-argument%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