How to write a macro that is braces sensitive?Context-sensitive newline macroCreate my own NSDHow to write a parameter-driven macro?How can I create a better cryptogram environment?How to write a TeX macro that accepts a number or a count register as argument?Macro to close all open environments, groups and argument delimitersTexshop macro for bracesWrite an unpar macroInput length sensitive optional argument macrocontext-sensitive macro: look behind?

Email Account under attack (really) - anything I can do?

Do VLANs within a subnet need to have their own subnet for router on a stick?

Is a tag line useful on a cover?

The Clique vs. Independent Set Problem

What are the differences between the usage of 'it' and 'they'?

Why does Kotter return in Welcome Back Kotter?

How old can references or sources in a thesis be?

Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?

How does one intimidate enemies without having the capacity for violence?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

What typically incentivizes a professor to change jobs to a lower ranking university?

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Voyeurism but not really

Smoothness of finite-dimensional functional calculus

Fencing style for blades that can attack from a distance

Minkowski space

TGV timetables / schedules?

Either or Neither in sentence with another negative

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

can i play a electric guitar through a bass amp?

What is the offset in a seaplane's hull?

How to add double frame in tcolorbox?

The use of multiple foreign keys on same column in SQL Server

Writing rule stating superpower from different root cause is bad writing



How to write a macro that is braces sensitive?


Context-sensitive newline macroCreate my own NSDHow to write a parameter-driven macro?How can I create a better cryptogram environment?How to write a TeX macro that accepts a number or a count register as argument?Macro to close all open environments, groups and argument delimitersTexshop macro for bracesWrite an unpar macroInput length sensitive optional argument macrocontext-sensitive macro: look behind?













2















In the xparse package, there is the g type of argument which captures things inside a pair of TeX group tokens. This makes it possible to define commands foo that behaves differently for fooa and foo a. I am interested in whether such type of macro is possible in plain TeX (I guess yes) and if it is possible, how can it be implemented. I am new to plain TeX and I appreciate detailed explanation of the workflow of such a macro. I would also be happy to learn about other possibilities such as in e-TeX instead of plain TeX.










share|improve this question







New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

    – egreg
    41 mins ago












  • Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

    – Weijun Zhou
    37 mins ago







  • 1





    It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

    – egreg
    35 mins ago












  • Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

    – Weijun Zhou
    28 mins ago















2















In the xparse package, there is the g type of argument which captures things inside a pair of TeX group tokens. This makes it possible to define commands foo that behaves differently for fooa and foo a. I am interested in whether such type of macro is possible in plain TeX (I guess yes) and if it is possible, how can it be implemented. I am new to plain TeX and I appreciate detailed explanation of the workflow of such a macro. I would also be happy to learn about other possibilities such as in e-TeX instead of plain TeX.










share|improve this question







New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

    – egreg
    41 mins ago












  • Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

    – Weijun Zhou
    37 mins ago







  • 1





    It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

    – egreg
    35 mins ago












  • Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

    – Weijun Zhou
    28 mins ago













2












2








2








In the xparse package, there is the g type of argument which captures things inside a pair of TeX group tokens. This makes it possible to define commands foo that behaves differently for fooa and foo a. I am interested in whether such type of macro is possible in plain TeX (I guess yes) and if it is possible, how can it be implemented. I am new to plain TeX and I appreciate detailed explanation of the workflow of such a macro. I would also be happy to learn about other possibilities such as in e-TeX instead of plain TeX.










share|improve this question







New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












In the xparse package, there is the g type of argument which captures things inside a pair of TeX group tokens. This makes it possible to define commands foo that behaves differently for fooa and foo a. I am interested in whether such type of macro is possible in plain TeX (I guess yes) and if it is possible, how can it be implemented. I am new to plain TeX and I appreciate detailed explanation of the workflow of such a macro. I would also be happy to learn about other possibilities such as in e-TeX instead of plain TeX.







macros plain-tex braces






share|improve this question







New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 44 mins ago









Weijun ZhouWeijun Zhou

1134




1134




New contributor




Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Weijun Zhou is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

    – egreg
    41 mins ago












  • Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

    – Weijun Zhou
    37 mins ago







  • 1





    It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

    – egreg
    35 mins ago












  • Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

    – Weijun Zhou
    28 mins ago

















  • It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

    – egreg
    41 mins ago












  • Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

    – Weijun Zhou
    37 mins ago







  • 1





    It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

    – egreg
    35 mins ago












  • Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

    – Weijun Zhou
    28 mins ago
















It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

– egreg
41 mins ago






It's possible, but it's bad syntax. Under normal TeX conventions, foo a and fooa should be considered equivalent (when the argument consists of a single token as in this case).

– egreg
41 mins ago














Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

– Weijun Zhou
37 mins ago






Thank you for your quick reply. I know it's bad syntax otherwise xparse would not declare it as obsolete, but it is (extensively) used in e.g. physics package. I am just not sure about whether it can be done in plain, or it requires some features of the engine.

– Weijun Zhou
37 mins ago





1




1





It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

– egreg
35 mins ago






It's indeed used in physics. My opinion about the package is that it has good ideas, but I can't recommend its usage. The weird syntax is just one among the several reasons for not recommending it.

– egreg
35 mins ago














Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

– Weijun Zhou
28 mins ago





Due to the weird syntax I end up adding relax here and there ... but I guess I will still use it.

– Weijun Zhou
28 mins ago










1 Answer
1






active

oldest

votes


















3














Fundamentally you just need to use futurelet as you do for any other look ahead



deffoofutureletfooauxfootoken
deffooaux%
ifxfootokenbgroup
% Brace group
else
% Something else
fi



The only reason this 'looks different' to other peek ahead situations is that you can't use an explicit {, but rather the implicit token bgroup.






share|improve this answer























  • That's clear enough and much simpler than I originally imagined.

    – Weijun Zhou
    31 mins ago











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
);



);






Weijun Zhou is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483588%2fhow-to-write-a-macro-that-is-braces-sensitive%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









3














Fundamentally you just need to use futurelet as you do for any other look ahead



deffoofutureletfooauxfootoken
deffooaux%
ifxfootokenbgroup
% Brace group
else
% Something else
fi



The only reason this 'looks different' to other peek ahead situations is that you can't use an explicit {, but rather the implicit token bgroup.






share|improve this answer























  • That's clear enough and much simpler than I originally imagined.

    – Weijun Zhou
    31 mins ago















3














Fundamentally you just need to use futurelet as you do for any other look ahead



deffoofutureletfooauxfootoken
deffooaux%
ifxfootokenbgroup
% Brace group
else
% Something else
fi



The only reason this 'looks different' to other peek ahead situations is that you can't use an explicit {, but rather the implicit token bgroup.






share|improve this answer























  • That's clear enough and much simpler than I originally imagined.

    – Weijun Zhou
    31 mins ago













3












3








3







Fundamentally you just need to use futurelet as you do for any other look ahead



deffoofutureletfooauxfootoken
deffooaux%
ifxfootokenbgroup
% Brace group
else
% Something else
fi



The only reason this 'looks different' to other peek ahead situations is that you can't use an explicit {, but rather the implicit token bgroup.






share|improve this answer













Fundamentally you just need to use futurelet as you do for any other look ahead



deffoofutureletfooauxfootoken
deffooaux%
ifxfootokenbgroup
% Brace group
else
% Something else
fi



The only reason this 'looks different' to other peek ahead situations is that you can't use an explicit {, but rather the implicit token bgroup.







share|improve this answer












share|improve this answer



share|improve this answer










answered 37 mins ago









Joseph WrightJoseph Wright

205k23563891




205k23563891












  • That's clear enough and much simpler than I originally imagined.

    – Weijun Zhou
    31 mins ago

















  • That's clear enough and much simpler than I originally imagined.

    – Weijun Zhou
    31 mins ago
















That's clear enough and much simpler than I originally imagined.

– Weijun Zhou
31 mins ago





That's clear enough and much simpler than I originally imagined.

– Weijun Zhou
31 mins ago










Weijun Zhou is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Weijun Zhou is a new contributor. Be nice, and check out our Code of Conduct.












Weijun Zhou is a new contributor. Be nice, and check out our Code of Conduct.











Weijun Zhou 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483588%2fhow-to-write-a-macro-that-is-braces-sensitive%23new-answer', 'question_page');

);

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







Popular posts from this blog

Saint-André (Pyrenaeus Orientalis) Nexus interni Nexus externi | Tabula navigationisOpenStreetMapGeoNames66168De hoc commune apud cassini.ehess.frHuius communis pagina interretialisAmplifica

Constantinus Vanšenkin Nexus externi | Tabula navigationisБольшая российская энциклопедияAmplifica

Montigny (Ligerula) Nexus interni Nexus externi | Tabula navigationisGeoNames45214Amplifica