Should I write beginquote … endquote or quote … endquote?Environments with matched parens in begin and endhow to redefine beginalign* … endalign* to begineqnarray* … endeqnarray*new quote-based environment end spacingConditional to begin and end some environmentLine break after description labelHow to change the list structure indentation?Abridging begin … endUse (end)comment instead of begin/endcommentHow to write an environment that simply ignores anything written between begin and end?beginmyenv ended by enddocument
Were any toxic metals used in the International Space Station?
Is there any good reason to write "it is easy to see"?
Why is the Advance Variation considered strong vs the Caro-Kann but not vs the Scandinavian?
How might a landlocked lake become a complete ecosystem?
What do you call the hair or body hair you trim off your body?
Could there be something like aerobatic smoke trails in the vacuum of space?
Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?
Was the dragon prowess intentionally downplayed in S08E04?
What was Varys trying to do at the beginning of S08E05?
Polynomial division: Is this trick obvious?
Holding rent money for my friend which amounts to over $10k?
Windows 10 lock screen - display my own random images
Is there any deeper thematic meaning to the white horse that Arya finds in The Bells (S08E05)?
Why is the marginal distribution/marginal probability described as "marginal"?
When did game consoles begin including FPUs?
Getting a similar picture (colours) on Manual Mode while using similar Auto Mode settings (T6 and 40D)
What is the effect of the Feeblemind spell on Ability Score Improvements?
Will consteval functions allow template parameters dependent on function arguments?
What color to choose as "danger" if the main color of my app is red
Does the wearer know what items are in which patch in the Robe of Useful items?
Assembly writer vs compiler
How to continually let my readers know what time it is in my story, in an organic way?
Given 0s on Assignments with suspected and dismissed cheating?
How does Ctrl+c and Ctrl+v work?
Should I write beginquote … endquote or quote … endquote?
Environments with matched parens in begin and endhow to redefine beginalign* … endalign* to begineqnarray* … endeqnarray*new quote-based environment end spacingConditional to begin and end some environmentLine break after description labelHow to change the list structure indentation?Abridging begin … endUse (end)comment instead of begin/endcommentHow to write an environment that simply ignores anything written between begin and end?beginmyenv ended by enddocument
I find it much easier to type
quote ... endquote
than
beginquote ... endquote
The same goes for other environments.
I wanted to know if it is "safe" and "sensible" to proceed with the first form, and why, since the results are apparently the same.
documentclassarticle
usepackage[utf8]inputenc
begindocument
begindescription
item[First] Test
item[Second] Test
enddescription
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
enddocument
environments description
add a comment |
I find it much easier to type
quote ... endquote
than
beginquote ... endquote
The same goes for other environments.
I wanted to know if it is "safe" and "sensible" to proceed with the first form, and why, since the results are apparently the same.
documentclassarticle
usepackage[utf8]inputenc
begindocument
begindescription
item[First] Test
item[Second] Test
enddescription
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
enddocument
environments description
2
I'm sure others will give better answers. But this is a bad idea.begin
andend
include among other thingsbegingroup
andendgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.
– David Purton
May 4 at 11:57
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16
add a comment |
I find it much easier to type
quote ... endquote
than
beginquote ... endquote
The same goes for other environments.
I wanted to know if it is "safe" and "sensible" to proceed with the first form, and why, since the results are apparently the same.
documentclassarticle
usepackage[utf8]inputenc
begindocument
begindescription
item[First] Test
item[Second] Test
enddescription
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
enddocument
environments description
I find it much easier to type
quote ... endquote
than
beginquote ... endquote
The same goes for other environments.
I wanted to know if it is "safe" and "sensible" to proceed with the first form, and why, since the results are apparently the same.
documentclassarticle
usepackage[utf8]inputenc
begindocument
begindescription
item[First] Test
item[Second] Test
enddescription
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
enddocument
environments description
environments description
edited May 4 at 13:48
Jonas Stein
3,38242747
3,38242747
asked May 4 at 11:49
JosephJoseph
2,8762336
2,8762336
2
I'm sure others will give better answers. But this is a bad idea.begin
andend
include among other thingsbegingroup
andendgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.
– David Purton
May 4 at 11:57
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16
add a comment |
2
I'm sure others will give better answers. But this is a bad idea.begin
andend
include among other thingsbegingroup
andendgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.
– David Purton
May 4 at 11:57
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16
2
2
I'm sure others will give better answers. But this is a bad idea.
begin
and end
include among other things begingroup
and endgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.– David Purton
May 4 at 11:57
I'm sure others will give better answers. But this is a bad idea.
begin
and end
include among other things begingroup
and endgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.– David Purton
May 4 at 11:57
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16
add a comment |
1 Answer
1
active
oldest
votes
Always use the begin
end
syntax, some environments might work using the underlying commands but most will not. It also helps editors to offer syntax highlighting and context sensitive file operations acting on whole environments.
For example here
documentclassarticle
usepackage[utf8]inputenc
begindocument
zzzz
quote This is my quote endquote
zzzz
enddocument
You will see that endquote
does not restore the indentation and the paragraph following is set as part of the quotation not as a standard paragraph.
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%2f489144%2fshould-i-write-beginquote-endquote-or-quote-endquote%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
Always use the begin
end
syntax, some environments might work using the underlying commands but most will not. It also helps editors to offer syntax highlighting and context sensitive file operations acting on whole environments.
For example here
documentclassarticle
usepackage[utf8]inputenc
begindocument
zzzz
quote This is my quote endquote
zzzz
enddocument
You will see that endquote
does not restore the indentation and the paragraph following is set as part of the quotation not as a standard paragraph.
add a comment |
Always use the begin
end
syntax, some environments might work using the underlying commands but most will not. It also helps editors to offer syntax highlighting and context sensitive file operations acting on whole environments.
For example here
documentclassarticle
usepackage[utf8]inputenc
begindocument
zzzz
quote This is my quote endquote
zzzz
enddocument
You will see that endquote
does not restore the indentation and the paragraph following is set as part of the quotation not as a standard paragraph.
add a comment |
Always use the begin
end
syntax, some environments might work using the underlying commands but most will not. It also helps editors to offer syntax highlighting and context sensitive file operations acting on whole environments.
For example here
documentclassarticle
usepackage[utf8]inputenc
begindocument
zzzz
quote This is my quote endquote
zzzz
enddocument
You will see that endquote
does not restore the indentation and the paragraph following is set as part of the quotation not as a standard paragraph.
Always use the begin
end
syntax, some environments might work using the underlying commands but most will not. It also helps editors to offer syntax highlighting and context sensitive file operations acting on whole environments.
For example here
documentclassarticle
usepackage[utf8]inputenc
begindocument
zzzz
quote This is my quote endquote
zzzz
enddocument
You will see that endquote
does not restore the indentation and the paragraph following is set as part of the quotation not as a standard paragraph.
answered May 4 at 12:06
David CarlisleDavid Carlisle
504k4211521902
504k4211521902
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%2f489144%2fshould-i-write-beginquote-endquote-or-quote-endquote%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
2
I'm sure others will give better answers. But this is a bad idea.
begin
andend
include among other thingsbegingroup
andendgroup
. Environments may well assume this, so things that get changed in the environment will persist after it.– David Purton
May 4 at 11:57
I might mention that one MUST use beginlrbox ... endlrbox for it to work.
– John Kormylo
May 4 at 14:16