Talk:BibTeX

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

More software[edit]

Any problem with adding BibDesk to the list of software? --RCanine

Google Scholar[edit]

I don't know where (or even if) it would fit in this article, but Google Scholar's preferences page has a Bibliography Manager section which offers the option of showing a link to import citations in BibTeX format. As a new BibTeX user, I'm finding the feature a handy feature to begin fleshing out bibliographies. — KevinCole 19:48, 1 November 2006 (UTC)[reply]

.bst example[edit]

You have examples of .bib files. Could you also include a simple .bst file? — Omegatron 14:55, 30 November 2006 (UTC)[reply]

I think they are rarely simple, and usually about 15-20 kB large... see e.g. http://arxiv.org/hypertex/bibstyles/ for "real world" examples ; maybe in some bibtex tutorial you might find a really simple one. So be bold, go google "bibtex tutorial" and when you found, put it on the page...— MFH:Talk 13:57, 19 January 2007 (UTC)[reply]

"crossref" field?[edit]

The BibTeX tutorial link further links to a PDF file somewhere that agrees with the text of this article, but further adds a "crossref" field, "The database key of the entry being cross referenced."

I'm not familiar with BibTeX myself, so someone knowledgeable out there please amend the article if necessary.

[Kalthor]

I let myself correct the cross referencing info. Unfortunately without booktitle attribute it generated bibtex warnings.
Cheers —Preceding unsigned comment added by 81.97.206.141 (talk) 16:02, 21 August 2008 (UTC)[reply]

Raichu2 23:40, 14 December 2006 (UTC)[reply]

Hi,
I would be glad to add some info on crossreferencing, which is a very useful feature of BibTeX! Question is: How many lines would be appropriate? Including some example might be nice.. The really short description you give is correct: "crossref = abc" will cause BibTeX to include the data of the referenced publication. Here "abc" is the referenced publications cite-id. Example:
@INPROCEEDINGS {author:06,
  title = {some publication title},
  author = {First Author and Second Author},
  crossref = {conference:06},
  pages = {330--331},
}
@PROCEEDINGS {conference:06,
  editor = {First Editor and Second Editor},
  booktitle = {Proceedings of the Xth Conference on XYZ},
  year = {2006},
  month = {October},
}
Does something like that sound useful?
Wietseb 15:44, 18 January 2007 (UTC)[reply]
very nice idea, although it makes the individual entries quite useless... I don't know if this can easily be implemented in a BST file, which usually iterates on each entry after the other in 1 single pass. But I just checked and found in /usr/local/share/texmf-tetex/bibtex/bib/base/xampl.bib (TeTeX distrib) something exactly equivalent to your example, and also examples for Journal articles, book chapters, etc.; finally, there is also an example of using an entry NOTE = "published in Knuth \cite{book-full}". But I don't know inhowfar this will work in all styles (although a grep -rl crossref /usr/local/share/texmf-tetex/bibtex/bst seems to give a positive answer). — MFH:Talk 14:29, 19 January 2007 (UTC)[reply]
FWIW, it's much easier to write lbst files for [1] than the bibtex stack language. --121.74.70.25 (talk) 10:42, 25 October 2009 (UTC)[reply]

Is Bibtex a tool? or a standard?[edit]

The article currently says that bibtex is a tool. Can someone point to it so that I can download it? I got the impression that Bibtex is a way to arrange data so that tex can use it and so that everyone's references look the same. If my impression is right, then it's not a tool, it's a standard (which someone announced and which others have agreed, by action, to use). Comments? Gronky 01:14, 22 December 2006 (UTC)[reply]

One can install the file .bibtex (in linux) or bibtex.exe (under windows), which converts \cite refs into reference section. Therefore, it seems to be a tool. But at the same time, the referencing system is used by other software of this kind (EndNote), which suggests that from that point of view, the syntax is in fact a standard. Any other comments? --Jinxs 12:03, 22 December 2006 (UTC)[reply]
"Standard" may be a bit strong (who maintains the "standard" & how many independent implementations are there?). Like TeX and LaTeX, bibtex can refer to a particular program, a preparation system in general (in the case of (La)TeX, a document or typesetting system; in the case of bibtex, a citation system), or a file format. --Karnesky 19:14, 22 December 2006 (UTC)[reply]
most of the article is in fact about the BibTeX (.BIB) file format. I think it's a kind of solid standard, used since several decades (and as such outdating almost every other standard existing in computer science, except maybe(!!) for "plain ASCII") by millions of scientist, by the most important databases (arxiv,...) and supported by most referencing systems (RefWorks,...). Only few variations of the basic format exist. (I saw examples using {...} instead of "..." for all data...!?) Just like for HTML, CSS etc, the basic standard does not specify in a limiting way the types of entries (ARTICLE, BOOK,...) nor the tags used therein.
A second "component" of bibtex are the bibliography style (.BST) files. They are MUCH more cumbersome, and in principle there exists "by definition" one for each journal or other media (book series, web site,...), but according to the field of science (biology, math, physics) there are a few de facto standards (justified since there may be varying amount of information that you want to show up in the References). In principle, the implementation of a style does not matter, it's the outcome (TeX code produced by it) which counts.
The third component is the bibtex "binary" itself. Here again, I think the specs are quite clear (what it should produce, for given format (BST) and data (BIB)) and I don't think that big incompatibilities do exists. (Needless to say that here again the concrete implementation (binary, perl, web2c, ...) should not matter if the specs are respected.)
But indeed maybe the most important component is the BIB file format, which goes beyond the (La)TeX universe and serves as a de facto standard for bibliographic data exchange between the most various systems. — MFH:Talk 13:20, 19 January 2007 (UTC)[reply]
18 years after this post I decided to change the wording of the introduction, inspired by a discussion I had with some colleagues about the classification of BibTeX. Here's my reasoning with sources:
If we look at a (nearly) primary source (https://ctan.org/pkg/bibtex?lang=en), this is the description of the creator of BibTeX Oren Patashnik:
'BibTEX allows the user to store his citation data in generic form, while printing citations in a document in the form specified by a BibTEX style, to be specified in the document itself (one often needs a LATEX citation-style package, such as natbib, as well).'
Oren also describes BibTex on the wonderfully traditional (but still very active!) TeX Users Group website https://tug.org/bibtex/:
"The venerable BibTeX program sorts and writes a document's bibliography (.bbl) using style files (.bst) and formatting-independent (in principle) bibliography databases (.bib). It works with LaTeX, plain TeX, and other TeX variants. It was written by Oren Patashnik as part of the original Stanford TeX project, and is still maintained by him."
Or in the words of commenter Ian Dennis Miller (https://ctan.org/home/idm) on CTAN https://ctan.org/pkg/bibtex:
'It is both a file format specification and an implementation of the processor. In this sense, it permits some ambiguity across different implementations of the processor for other languages. Some BibTEX generators emit broken citations, some parsers break on valid BibTEX, but generally speaking, this is the premiere digital interchange format for scholarly citations. My dissertation would simply not be possible without BibTEX. Learn it. Cherish it.'
I also took this opportunity to clean up some text, shuffle the paragraphs around, add some sources, and changed some headers in an effort to quickly give a clear overview of what BibTeX is. Samopsa (talk) 14:55, 1 February 2024 (UTC)[reply]
Thanks—your improved distinction between the file format and the processor was much needed. I made some changes including some reversions, mostly stylistic, to conform with WP:MOS as summarized in this edit summary. Biogeographist (talk) 18:40, 1 February 2024 (UTC)[reply]

Instruction manual?[edit]

WP:NOT#IINFO states that Wikipedia isn't an instruction manual. Yet besides the first two lead paragraphs, that's exactly what this article reads like (instead of mentioning the history and real life implication of the software). Shouldn't most of this be transwikied to something like wikibooks, which deals more with instruction manuals and such? ColourBurst 06:10, 22 January 2007 (UTC)[reply]

I totally agree!. A good place in WikiBooks would be here [2] Plus i deleted this part about adding more - we don't need much more for this article --Jinxs 08:43, 22 January 2007 (UTC)[reply]
I also agree. This is definitely wikibooks material. I also don't think this will be much of a hardship on those coming to wikipedia to find info on how to use bibtex; we'll simply post a link at the bottom of the article to the how-to wikibook. To busy/lazy to do this. Someone else should. Njerseyguy 06:08, 8 April 2007 (UTC)[reply]
I'm gonna mark this with a "howto" template message. Beveal 00:20, 30 June 2007 (UTC)[reply]
Please, don't remove content until you paste that in BiBTeX wikibooks. It's an excellent source of information. And don't forget to link it to wikibooks.--79.154.66.90 (talk) 16:17, 2 September 2010 (UTC)[reply]

Stylized BibTeX text in intro is broken[edit]

The BibTeX in the intro is written with MathML or something and it's broken. I would fix it but I'm not sure how to format it. —The preceding unsigned comment was added by 71.111.131.231 (talk) 04:20, 26 January 2007 (UTC).[reply]

How about ISBN[edit]

The "isbn" item is not present in either the list of entry fields nor in the list of entry types, but it does appear in one of the examples. Which is correct? Is there an official specification to look it up in? —Bromskloss 10:53, 9 March 2007 (UTC)[reply]

Drawbacks of BibTeX[edit]

What do you think about a section about problems with BibTeX? I know that every program has its issues, however, I think that there are enough in BibTeX that they deserve being mentioned in a section of its own. Other, mostly proprietary programs, have "Criticism" sections, too, after all. I think of the following issues:

  • Long URLs are broken by the program with a "%" inbetween, which irritates the non-experienced user since there is no easy remedy; you have to use hyperref to remove them after the BibTeX processing.
  • Poor support of non-English languages. The German "ä" has to be written {\"a}, unless you use a special 8-bit variant of BibTeX which is not part of the official release branch, not even written in the same programming language.
  • The BST format for style layout is very difficult to use. (By the way, custombib is also difficult to use in contrast to what is said in the article.) Thus, getting the bibliography layout as you want it, can be a very tedious task. This has led to the development of BibLaTeX which makes all the formatting on the LaTeX level, reducing BibTeX's task to sorting and providing the labels.
  • The BIB file format is not strictly standardised. The fields that are provided and their format depend solely on the current BST style. Although there is strong overlap in the functionality of BST styles, the file format is not as unambiguous as other bibliography file formats.
  • Poorly maintained; current version is 0.99c for years (I must check for how long exactly) although all these problems are well-known.

Torsten Bronger 09:17, 8 April 2007 (UTC)[reply]

Some of these points could be added to (or expanded in) the main text. I think others might be difficult to find a WP:RS for and to present with a WP:NPOV. The only other bibliographic software criticism I see is EndNote#Issues, which should probably not be used as the model. We don't want WP:OR. --Karnesky 11:11, 8 April 2007 (UTC)[reply]


BibTeX logo question[edit]

Is the BibTeX logo accurately drawn? It uses the TeX logo, but in the TeX logo (http://en.wikipedia.org/wiki/Image:TeX_logo.svg), the T and E and X are all slightly touching. I realize this is picky, but what's the use of a top-flight typographical language if you don't get to be picky sometimes?

I don't know enough about the BibTeX logo or drawing programs to redraw the logo myself; and--who knows?--maybe in the BibTeX logo the T and E and X aren't supposed to touch.

Timoteostewart 18:36, 13 July 2007 (UTC)[reply]

(Four years later) I just noticed this. Accordingly, I have replaced it with the more accurate logo , although that has the "E" character serif's passing somewhat through the "X". Maybe someone could produce a yet more accurate version? -84user (talk) 19:34, 15 July 2011 (UTC)[reply]

INBOOK VS INCOLLECTION[edit]

What is the difference between those two types? Common sense would say that INCOLLECTION is a book in a collection of book, but my understanding is that it is actually a chapter when the title is available. You use INBOOK when the title of the chapter is not available. This does not make much sence though... Why anohter type when a field is not available? And why calling it INCOLLECTION?

PierreWiki 21:18, 30 August 2007 (UTC)[reply]


It depends on whether you're (a) citing a work that happens to be published together with other material in a larger published volume, or (b) you're citing a book only focusing on a particular chapter or set of pages.

Personally I'd normally use INBOOK unless there is a good reason to do otherwise. If you use INCOLLECTION, the title field (the cited work) is the section you're referring to and the booktitle field is the name of the published volume.

Raichu2 05:57, 12 September 2007 (UTC)[reply]

If you've got a book that was written by a single author and you want to cite one chapter of it, use INBOOK. If you've got a book that was written by multiple people, with each having authored one chapter/article in it, then use INCOLLECTION. That lets you separate out book authorship/editorship from chapter/article authorship. INBOOK doesn't let you do that. 140.226.23.186 (talk) 22:20, 1 February 2008 (UTC)[reply]

that's right. You get errors using the 'editor' field with @INBOOK. 150.203.212.101 (talk) 09:36, 18 August 2022 (UTC)[reply]

Most of this page needs to go[edit]

At the moment this page does not provide an encycopedic overview of bibTeX, more a manual page followed by a link farm. We should delete all of this detail and refer to other sources. — ciphergoth 11:34, 23 May 2008 (UTC)

I've started on this. Chris Cunningham (not at work) - talk 11:16, 23 April 2009 (UTC)[reply]

status of bibtex[edit]

as of 28 July 2010 : BibTeX is NOT discontinued. Oren IS the maintainer. please see :

http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/bibtex.web?view=log and notably : Revision 17398 - (view) (download) (annotate) - [select for diffs] Modified Tue Mar 9 16:51:12 2010 UTC (4 months, 2 weeks ago) by karl File length: 384493 byte(s) Diff to previous 17253 final 0.99d from Oren

... i recommend that where the article says :

Discontinued 0.99c / February 1988; 22 years ago Development status Unmaintained

... be changed to fit the facts. see the texhax email list too.

71.233.125.182 (talk) 00:58, 29 July 2010 (UTC) —Preceding unsigned comment added by Bryanlepore (talkcontribs) 20:52, 28 July 2010 (UTC)[reply]

After how many years do you consider a software unmaintained? 0.99d is the first release since 1988 (22 years). BibTeX 1.00 is and will always be vaporware.--Oneiros (talk) 21:49, 28 July 2010 (UTC)[reply]

wow, that was fast - hmm. i see your point - they do however always put it into TeXLive. is there another term for such packages? 71.233.125.182 (talk) 00:58, 29 July 2010 (UTC) —Preceding unsigned comment added by 71.233.125.182 (talk) 00:42, 29 July 2010 (UTC)[reply]

Just because the two releases are separated by a significant amount of time does not mean that the package is "unmaintained". The revisions made my 71.233.125.182 are fine. We can, alternatively, merely omit the "status" line. --Karnesky (talk) 00:55, 29 July 2010 (UTC)[reply]
22 years between releases is probably a record. I repeat: Till the change for 0.99d the software was unmaintained. I don't think it's maintained now—I doubt that we will ever see another release. And just because the software still compiles doesn't mean it's maintained.--Oneiros (talk) 14:10, 29 July 2010 (UTC)[reply]
I'm not saying you can't maintain that opinion. I'm just saying that it is unverifiable original research that does not belong in the article. Any claim in the article that this is "unmaintained" should be followed by a citation. Again, I'd be fine with not having any status line in the infobox. --Karnesky (talk) 15:09, 29 July 2010 (UTC)[reply]
Would a video of the author announcing a new release real soon now in 2007 be enough to mark the software as unmaintained in 2010?--Oneiros (talk) 22:11, 29 July 2010 (UTC)[reply]
No: that would require a biased interpretation of a primary source. See also WP:SYNTH. --Karnesky (talk) 01:41, 30 July 2010 (UTC)[reply]

conference, inproceedings (Entry types)[edit]

For conference, it says: The same as inproceedings ... Yet, inproceedings has the optional field series, conference doesn't. Which one is wrong? Or is this difference correct / on purpose? --193.174.3.88 (talk) 12:07, 25 July 2011 (UTC)[reply]

How to cite a website?[edit]

We should mention a way how to cite a website here. Ideas:

Removed broken links[edit]

I removed the links to an FAQ (and inside that FAQ) that pointed to colorado.edu. The FAQ is apparently no longer there; I did a search at the colorado.edu website, and also in Google. If the site comes back, I guess the URL can be retrieved from the history. Mcswell (talk) 20:20, 26 September 2013 (UTC)[reply]

Biblatex extension @ONLINE?[edit]

I'm not sure if it would be appropriate to include extensions found in biblatex. For instance, biblatex offers the @ONLINE extension.

Source:

http://nschloe.blogspot.com/2009/06/bibtex-how-to-cite-website_21.html

Field types not in official documentation[edit]

The field types doi, eprint, and url are in the list of field types.

While these might occasionally be seen in the wild, they are not documented in the latest version of BibTeXing.

If the criterion is “any field supported by any style”, then one would have to include isbn, issn, abstract, and probably a few dozen more.

If the criterion is “fields supported by BibTeX default styles”, then these should either be removed as not being supported or their continued inclusion should be justified by a citation, since they are absent from the official documentation. EmmetCaulfield (talk) 23:01, 16 March 2015 (UTC)[reply]

OK, fixed. —Psychonaut (talk) 09:04, 17 March 2015 (UTC)[reply]

BibTeX syntax highlighting lost[edit]

Since the switch from Geshi to Pygments for syntax highlighting (phab:T85794), support for BibTeX was unfortunately dropped, as can be seen with the plain text formatting on this page and others. If you want bibtex syntax highlight support again, it will need to be added to Pygments. John Vandenberg (chat) 02:35, 12 July 2015 (UTC)[reply]

I have put up a patch for bibtex to fall back to using LaTeX syntax as a temporary measure. John Vandenberg (chat) 03:02, 12 July 2015 (UTC)[reply]

External links modified[edit]

Hello fellow Wikipedians,

I have just added archive links to one external link on BibTeX. Please take a moment to review my edit. If necessary, add {{cbignore}} after the link to keep me from modifying it. Alternatively, you can add {{nobots|deny=InternetArchiveBot}} to keep me off the page altogether. I made the following changes:

When you have finished reviewing my changes, please set the checked parameter below to true or failed to let others know (documentation at {{Sourcecheck}}).

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}} (last update: 18 January 2022).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—cyberbot IITalk to my owner:Online 12:45, 2 March 2016 (UTC)[reply]

User:Toddst1's recent edits removed too much[edit]

I feel that revisions by User:Toddst1 for 14:34, 20 April 2016, go too far in addressing the perceived issue (Wikipedia is not a manual).

The sections towards the end ('author formatting', 'cross-referencing sections', 'using more than one input file' and 'non-reference sections') were indeed minutiae which could be removed.

But the entry types and field types could have been reduced to a basic inline list each instead of being deleted. And the section on style files should certainly have been kept, because use of style files is an important part of BibTeX. If necessary, the example and following matter for style files could have been removed.

Could others please weigh in on this? I don't want to just jump into reverting it.

130.216.37.202 (talk) 00:19, 21 April 2016 (UTC)[reply]

I agree, the clean up tossed some good material, too. Deleting the styles section in particular was a mistake; these are central to BibTeX. --Mark viking (talk) 03:02, 21 April 2016 (UTC)[reply]
I re-added the file structure and style file sections using a summary style that shouldn't run afoul of WP:NOTMANUAL. See what you think. --Mark viking (talk) 03:33, 21 April 2016 (UTC)[reply]

External links modified[edit]

Hello fellow Wikipedians,

I have just modified one external link on BibTeX. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, please set the checked parameter below to true or failed to let others know (documentation at {{Sourcecheck}}).

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}} (last update: 18 January 2022).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—cyberbot IITalk to my owner:Online 07:48, 24 April 2016 (UTC)[reply]

External links modified[edit]

Hello fellow Wikipedians,

I have just modified one external link on BibTeX. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}} (last update: 18 January 2022).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—InternetArchiveBot (Report bug) 16:36, 19 July 2017 (UTC)[reply]

Uses – The 'unreferenced' template[edit]

There was one item in the list, Google Research, not internally linked. This had a reference on an unrelated topic; I think as an oblique exemplar to demonstrate the site's use of BibTex. I removed that, added an internal reference to Google.ai, and in that page added the Publication database to the "Projects" section with an external reference (link).

One of the primary factors influencing my decision to begin editing Wikipedia was the Five Pillars WP:PILLARS. Writing, even technical writing requiring referencing, is an art. I am not alone in understanding that hard rules kill style (see Benjamin Dreyer's Dreyer's English: An Utterly Correct Guide to Clarity and Style and WP:P5).

Concerning the 'Uses' section, each item is internally linked — backed by another wiki article. This easily meets the guidance in both Wikipedia:Citing sources and Wikipedia:Inline citation. That is, the section is completely referenced.

I allow that several of the linked articles are stubs or otherwise in need of improvement. Such is the state of the entire project — any project involving our changing knowledge and understanding. By nature the Wikipedia project is built upon hypertext and links. "Internal links bind the project together into an interconnected whole."[1]

Maintenance templates are broad brushes / gross tools. When this template was applied, the section was remarkably the same as it is now with each item internally linked (see DissidentAggressor's version at 21:59, 30 November 2015, DissidentAggressor). If the internally linked articles are insufficiently referenced, calls for improvement are appropriate there. Avoiding absolutism and pursuing another Pillar, there are many means to address issues/concerns. Our primary means is here. In this instance, before placing the banner it might have been useful to begin a talk page section asking for input/feedback. With some fuzziness, types of feedback, inorder, are generally doxa, techne, episteme, but mostly phronesis. Uninformed, unmindful opinion (often popular) may be a start, but it is rarely, if ever, better than informed, relevant experience (techne); a broader, deeper knowledge base (episteme); or synthesis of the latter two to some degree (phronesis). Since I'm on a roll, my inclination goes toward Stoicism[2] and Philosophical Taoism.[3]

My point — discretion/balance and context matter. The section template is unwarranted. I will monitor feedback for a while before removing the template.

BiosocialPolymath (talk) 17:44, 8 May 2019 (UTC)[reply]

References

  1. ^ "Wikipedia:Manual of Style/Linking". Wikipedia. 1 May 2019.
  2. ^ Parry, Richard (2014). "Episteme and Techne". The Stanford Encyclopedia of Philosophy. Metaphysics Research Lab, Stanford University.
  3. ^ Hansen, Chad (2017). "Daoism". The Stanford Encyclopedia of Philosophy. Metaphysics Research Lab, Stanford University.