Deleting a point in METAFONTmetafont hash symbolUsing metafont-letters in LaTeXMETAFONT: Error “Can't open...
Is it possible to have a career in SciComp without contributing to arms research?
How to belay quickly ascending top-rope climbers?
"This used to be my phone number"
Function over a list that depends on the index
Why isn't a binary file shown as 0s and 1s?
Do pedestrians imitate automotive traffic?
You have no, but can try for yes
Project Euler # 25 The 1000 digit Fibonacci index
Who or what determines if a curse is valid or not?
Last-minute canceled work-trip means I'll lose thousands of dollars on planned vacation
How do you name this compound using IUPAC system (including steps)?
The most secure way to handle someone forgetting to verify their account?
I want light controlled by one switch, not two
Does unblocking power bar outlets through short extension cords increase fire risk?
Applying for jobs with an obvious scar
A spacecraft is travelling at X units per hour. But relative to what exactly? Does it depend on orbit? How?
Dative single noun Bankautomaten?
Deleting a point in METAFONT
What could make large expeditions ineffective for exploring territory full of dangers and valuable resources?
What's the largest an Earth-like planet can be and support Earth's biosphere?
How should I interpret a promising preprint that was never published in a peer-reviewed journal?
Will copper pour help on my single-layer PCB?
Is it possible to target 2 allies with the Warding Bond spell using the Sorcerer's Twinned Spell metamagic option?
Manager is asking me to eat breakfast from now on
Deleting a point in METAFONT
metafont hash symbolUsing metafont-letters in LaTeXMETAFONT: Error “Can't open display”Including Metafont proofsheets in LaTeX documentsPositioning a vertex directly above another vertex in feynMFTranslation of typefaces into METAFONT (in the case of AMS Euler and others)how much is Metafont used these days?Running Metafont interactivelyMetafont using more than 256 charactersDrawing part of a path in METAFONT
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
In METAFONT, run interactively, is it possible to give a new value to a point variable?
If you just try to equate a point to a new point, the equation will be inconsistent with other equations. If you try to assign a new value, MF says that :=
is ''improper''. And you can't wipe out z5 by pair z5;
without taking all the other points with you.
metafont
add a comment |
In METAFONT, run interactively, is it possible to give a new value to a point variable?
If you just try to equate a point to a new point, the equation will be inconsistent with other equations. If you try to assign a new value, MF says that :=
is ''improper''. And you can't wipe out z5 by pair z5;
without taking all the other points with you.
metafont
add a comment |
In METAFONT, run interactively, is it possible to give a new value to a point variable?
If you just try to equate a point to a new point, the equation will be inconsistent with other equations. If you try to assign a new value, MF says that :=
is ''improper''. And you can't wipe out z5 by pair z5;
without taking all the other points with you.
metafont
In METAFONT, run interactively, is it possible to give a new value to a point variable?
If you just try to equate a point to a new point, the equation will be inconsistent with other equations. If you try to assign a new value, MF says that :=
is ''improper''. And you can't wipe out z5 by pair z5;
without taking all the other points with you.
metafont
metafont
edited 7 hours ago
Toothrot
asked 8 hours ago
ToothrotToothrot
1,4574 silver badges19 bronze badges
1,4574 silver badges19 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In MetaFont, z5
etc. is just a shorthand for (x5,y5)
. Now (x5,y5):=(...)
wouldn't be allowed, so z5:=(...)
isn't either.
To assign a new value, you can change both parts separably:
To reset z5
to it's initial set and allow new assignments, write
x5:=whatever; y5:=whatever;
Then z5=(3,4)
etc. works again.
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%2f500760%2fdeleting-a-point-in-metafont%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
In MetaFont, z5
etc. is just a shorthand for (x5,y5)
. Now (x5,y5):=(...)
wouldn't be allowed, so z5:=(...)
isn't either.
To assign a new value, you can change both parts separably:
To reset z5
to it's initial set and allow new assignments, write
x5:=whatever; y5:=whatever;
Then z5=(3,4)
etc. works again.
add a comment |
In MetaFont, z5
etc. is just a shorthand for (x5,y5)
. Now (x5,y5):=(...)
wouldn't be allowed, so z5:=(...)
isn't either.
To assign a new value, you can change both parts separably:
To reset z5
to it's initial set and allow new assignments, write
x5:=whatever; y5:=whatever;
Then z5=(3,4)
etc. works again.
add a comment |
In MetaFont, z5
etc. is just a shorthand for (x5,y5)
. Now (x5,y5):=(...)
wouldn't be allowed, so z5:=(...)
isn't either.
To assign a new value, you can change both parts separably:
To reset z5
to it's initial set and allow new assignments, write
x5:=whatever; y5:=whatever;
Then z5=(3,4)
etc. works again.
In MetaFont, z5
etc. is just a shorthand for (x5,y5)
. Now (x5,y5):=(...)
wouldn't be allowed, so z5:=(...)
isn't either.
To assign a new value, you can change both parts separably:
To reset z5
to it's initial set and allow new assignments, write
x5:=whatever; y5:=whatever;
Then z5=(3,4)
etc. works again.
answered 7 hours ago
Marcel KrügerMarcel Krüger
14.6k1 gold badge17 silver badges37 bronze badges
14.6k1 gold badge17 silver badges37 bronze badges
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%2f500760%2fdeleting-a-point-in-metafont%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