Organization/Group as author - getting the shorthand form rightUsing a 'corporate author' in the “author”...
Female=gender counterpart?
Books on the History of math research at European universities
How can I successfully establish a nationwide combat training program for a large country?
Indicating multiple different modes of speech (fantasy language or telepathy)
Is there a good way to store credentials outside of a password manager?
Proof of Lemma: Every integer can be written as a product of primes
Is there enough fresh water in the world to eradicate the drinking water crisis?
What does the "3am" section means in manpages?
Do all polymers contain either carbon or silicon?
How to deal with or prevent idle in the test team?
What was required to accept "troll"?
Lightning Web Component - do I need to track changes for every single input field in a form
Science Fiction story where a man invents a machine that can help him watch history unfold
Lifted its hind leg on or lifted its hind leg towards?
Simple recursive Sudoku solver
How will losing mobility of one hand affect my career as a programmer?
Is exact Kanji stroke length important?
How do I repair my stair bannister?
My boss asked me to take a one-day class, then signs it up as a day off
Why isn't KTEX's runway designation 10/28 instead of 9/27?
How can a jailer prevent the Forge Cleric's Artisan's Blessing from being used?
Is there an wasy way to program in Tikz something like the one in the image?
Should my PhD thesis be submitted under my legal name?
How to prevent YouTube from showing already watched videos?
Organization/Group as author - getting the shorthand form right
Using a 'corporate author' in the “author” field of a bibliographic entry (spelling out the name in full)Creating a new bibliography entry format for a clinical trialNatbib and website citationProblems with acm bibliographyHow to remove 'URL' prefixed before the URL in bibliographyBibliography customization, year as bib labelLyX: Url not showing in references using natbib and url packagesGetting square brackets inside bibtex year fieldcustomizing bst: edition numberProblem in rendering bibliography in ConTeXtBibTeX styles that use all the info that Zotero outputs to bib file for less common sources?
I'm using the alpha
bibliography style in a document of mine. Now, I have the following entry in my .bib
file:
@misc{foo,
key = {Frobnicating the bar},
author = {The Foo Team},
year = {2018},
note = {url{https://www.foo.com/whatever}}
}
I'm not using natbib
, nor biblatex
nor anything like that. What I get is:
[tea18] The foo team. Frobincating the bar. https://www.foo.com/whatever
The entry is fine - except for the shorthand. I'm actually not sure what I even want it to be, but definitely not "tea" as though it was some person whose last name is "team".
Can I fix this somehow?
bibliographies bibtex
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm using the alpha
bibliography style in a document of mine. Now, I have the following entry in my .bib
file:
@misc{foo,
key = {Frobnicating the bar},
author = {The Foo Team},
year = {2018},
note = {url{https://www.foo.com/whatever}}
}
I'm not using natbib
, nor biblatex
nor anything like that. What I get is:
[tea18] The foo team. Frobincating the bar. https://www.foo.com/whatever
The entry is fine - except for the shorthand. I'm actually not sure what I even want it to be, but definitely not "tea" as though it was some person whose last name is "team".
Can I fix this somehow?
bibliographies bibtex
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
In name fields you should writeauthor = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since thealpha
style givesauthor
preference over thekey
field when producing labels for@misc
I can't see a way to override the label if you want to stick toauthor
(which probably makes sense).
– moewe
Sep 3 '18 at 13:12
add a comment |
I'm using the alpha
bibliography style in a document of mine. Now, I have the following entry in my .bib
file:
@misc{foo,
key = {Frobnicating the bar},
author = {The Foo Team},
year = {2018},
note = {url{https://www.foo.com/whatever}}
}
I'm not using natbib
, nor biblatex
nor anything like that. What I get is:
[tea18] The foo team. Frobincating the bar. https://www.foo.com/whatever
The entry is fine - except for the shorthand. I'm actually not sure what I even want it to be, but definitely not "tea" as though it was some person whose last name is "team".
Can I fix this somehow?
bibliographies bibtex
I'm using the alpha
bibliography style in a document of mine. Now, I have the following entry in my .bib
file:
@misc{foo,
key = {Frobnicating the bar},
author = {The Foo Team},
year = {2018},
note = {url{https://www.foo.com/whatever}}
}
I'm not using natbib
, nor biblatex
nor anything like that. What I get is:
[tea18] The foo team. Frobincating the bar. https://www.foo.com/whatever
The entry is fine - except for the shorthand. I'm actually not sure what I even want it to be, but definitely not "tea" as though it was some person whose last name is "team".
Can I fix this somehow?
bibliographies bibtex
bibliographies bibtex
edited Feb 24 at 5:49
Henri Menke
77.1k8170284
77.1k8170284
asked Aug 23 '18 at 20:55
einpoklumeinpoklum
4,94953582
4,94953582
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
In name fields you should writeauthor = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since thealpha
style givesauthor
preference over thekey
field when producing labels for@misc
I can't see a way to override the label if you want to stick toauthor
(which probably makes sense).
– moewe
Sep 3 '18 at 13:12
add a comment |
In name fields you should writeauthor = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since thealpha
style givesauthor
preference over thekey
field when producing labels for@misc
I can't see a way to override the label if you want to stick toauthor
(which probably makes sense).
– moewe
Sep 3 '18 at 13:12
In name fields you should write
author = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since the alpha
style gives author
preference over the key
field when producing labels for @misc
I can't see a way to override the label if you want to stick to author
(which probably makes sense).– moewe
Sep 3 '18 at 13:12
In name fields you should write
author = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since the alpha
style gives author
preference over the key
field when producing labels for @misc
I can't see a way to override the label if you want to stick to author
(which probably makes sense).– moewe
Sep 3 '18 at 13:12
add a comment |
1 Answer
1
active
oldest
votes
One option: Make "The Foo Team" an organization, not an author. You'll lose mention of them in the entry, but the shorthand should become [Fro18]
.
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%2f447413%2forganization-group-as-author-getting-the-shorthand-form-right%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
One option: Make "The Foo Team" an organization, not an author. You'll lose mention of them in the entry, but the shorthand should become [Fro18]
.
add a comment |
One option: Make "The Foo Team" an organization, not an author. You'll lose mention of them in the entry, but the shorthand should become [Fro18]
.
add a comment |
One option: Make "The Foo Team" an organization, not an author. You'll lose mention of them in the entry, but the shorthand should become [Fro18]
.
One option: Make "The Foo Team" an organization, not an author. You'll lose mention of them in the entry, but the shorthand should become [Fro18]
.
answered Aug 23 '18 at 21:32
einpoklumeinpoklum
4,94953582
4,94953582
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%2f447413%2forganization-group-as-author-getting-the-shorthand-form-right%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
In name fields you should write
author = {{The Foo Team}},
to make sure the name is treated as a unit and not parsed as the name of a person with last name "Team" and first names "The Foo", see also tex.stackexchange.com/q/10808/35864. Since thealpha
style givesauthor
preference over thekey
field when producing labels for@misc
I can't see a way to override the label if you want to stick toauthor
(which probably makes sense).– moewe
Sep 3 '18 at 13:12