Should I write begin{quote} … end{quote} or quote … endquote?
I find it much easier to type
quote ... endquote
than
begin{quote} ... end{quote}
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.
documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
begin{description}
item[First] Test
item[Second] Test
end{description}
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
end{document}
environments description
add a comment |
I find it much easier to type
quote ... endquote
than
begin{quote} ... end{quote}
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.
documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
begin{description}
item[First] Test
item[Second] Test
end{description}
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
end{document}
environments description
2
I'm sure others will give better answers. But this is a bad idea.beginandendinclude among other thingsbegingroupandendgroup. 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 begin{lrbox} ... end{lrbox} for it to work.
– John Kormylo
May 4 at 14:16
add a comment |
I find it much easier to type
quote ... endquote
than
begin{quote} ... end{quote}
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.
documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
begin{description}
item[First] Test
item[Second] Test
end{description}
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
end{document}
environments description
I find it much easier to type
quote ... endquote
than
begin{quote} ... end{quote}
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.
documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
begin{description}
item[First] Test
item[Second] Test
end{description}
description
item[First] Test
item[Second] Test
enddescription
quote This is my quote endquote
enumerate item item item item endenumerate
end{document}
environments description
environments description
edited May 4 at 13:48
Jonas Stein
3,39742747
3,39742747
asked May 4 at 11:49
JosephJoseph
2,9112336
2,9112336
2
I'm sure others will give better answers. But this is a bad idea.beginandendinclude among other thingsbegingroupandendgroup. 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 begin{lrbox} ... end{lrbox} 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.beginandendinclude among other thingsbegingroupandendgroup. 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 begin{lrbox} ... end{lrbox} 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 begin{lrbox} ... end{lrbox} for it to work.
– John Kormylo
May 4 at 14:16
I might mention that one MUST use begin{lrbox} ... end{lrbox} 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

documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
zzzz
quote This is my quote endquote
zzzz
end{document}
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

documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
zzzz
quote This is my quote endquote
zzzz
end{document}
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

documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
zzzz
quote This is my quote endquote
zzzz
end{document}
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

documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
zzzz
quote This is my quote endquote
zzzz
end{document}
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

documentclass{article}
usepackage[utf8]{inputenc}
begin{document}
zzzz
quote This is my quote endquote
zzzz
end{document}
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
507k4211541906
507k4211541906
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.
beginandendinclude among other thingsbegingroupandendgroup. 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 begin{lrbox} ... end{lrbox} for it to work.
– John Kormylo
May 4 at 14:16