Managing Bibliographies with LATEX Lapo F

Total Page:16

File Type:pdf, Size:1020Kb

Managing Bibliographies with LATEX Lapo F 36 TUGboat, Volume 30 (2009), No. 1 Multiple citations can be added by separating Bibliographies with a comma the bibliographic keys inside the same \cite command; for example \cite{Goossens1995,Kopka1995} Managing bibliographies with LATEX Lapo F. Mori gives Abstract (Goossens et al., 1995; Kopka and Daly, 1995) The bibliography is a fundamental part of most scien- Bibliographic entries that are not cited in the tific publications. This article presents and analyzes text can be added to the bibliography with the the main tools that LATEX offers to create, manage, \nocite{key} command. The \nocite{*} com- and customize both the references in the text and mand adds all entries to the bibliography. the list of references at the end of the document. 2.2 Automatic creation with BibTEX A 1 Introduction BibTEX is a separate program from LTEX that allows creating a bibliography from an external database Bibliographic references are an important, sometimes (.bib file). These databases can be conveniently fundamental, part of academic documents. In the shared by different LATEX documents. BibTEX, which past, preparation of a bibliography was difficult and will be described in the following paragraphs, has tedious mainly because the entries were numbered many advantages over the thebibliography envi- and ordered by hand. LATEX, which was developed ronment; in particular, automatic formatting and with this kind of document in mind, provides many ordering of the bibliographic entries. tools to automatically manage the bibliography and make the authors’ work easier. How to create a 2.2.1 How BibTEX works A bibliography with LTEX is described in section2, BibTEX requires: starting from the basics and arriving at advanced 1. one or more bibliographic databases .bib; customization. Bibliographic styles for both the list of references and in-text-citations are analyzed in 2. a bibliographic style .bst; section3. The last two sections (4 and5) analyze 3. that the .tex file contains: commands that spec- two of the most powerful packages available: natbib ify what style .bst and database .bib to use, and BibLATEX. and citations in the text with the \cite and similar commands, as in: 2 Bibliography with LATEX \documentclass{...} ... There are two main ways to compose a bibliography \begin{document} with LATEX: automatically with the BibTEX pro- See \citet{Kopka1995}. gram that uses external bibliographic databases (sec- .. \bibliographystyle{plainnat} tion 2.2), or manually with the thebibliography en- \bibliography{database} vironment that allows to include all the bibliographic \end{document} information in the source .tex file (section 2.3). Re- gardless from the strategy chosen, citations can be 4. that the document is compiled in the following added to the text with the same commands, as shown order (let’s assume that the principal file is called in section 2.1. document.tex): latex document 2.1 References in the text bibtex document latex document Citations can be added to the text with the com- latex document mand \cite{key} (and its variants), where key cor- responds to the citekey field in the .bib file (if using The first time LATEX runs, the \bibliographystyle BibTEX, section 2.2) or the key of \bibitem (if us- command writes the name of the style .bst to be ing the thebibliography environment, section 2.3). used into the .aux file, each \cite command writes When compiling the source, \cite{key} is linked a note into the .aux file, and the \bibliography to the respective \bibitem and substituted by the command writes into the .aux file the name of the appropriate reference (numbered, author-year, or .bib database(s) to be used. At this stage LATEX footnote depending on the style chosen). does not substitute the \cite in the text: the .dvi Lapo F. Mori TUGboat, Volume 30 (2009), No. 1 37 tex sty bib bst 2.2.3 Rules for using BibTEX The syntax of BibTEX entries is very intuitive. The log LATEX2ε aux BibTEX blg following paragraphs will discuss the most common rules, all the details can be found in Patashnik(1998). bbl Capital letters. The BibTEX styles control cap- pdf dvi ital and lower case letters, especially for the titles. This behavior is very convenient because it ensures a A Figure 1: Data flow between LTEX and BibTEX to uniform format for the entries but could cause prob- create a .pdf or a .dvi ( ) from the data files .tex ■ lems in some specific situations such as acronyms, and .bib ( ) and the style files .sty and .bst ( ). ■ ■ chemical formulæ, etc. In these cases the user needs to enclose in braces the letters whose capitalizations shows question marks for every \cite and the .log should not be changed by BibTEX, as in the following file reports warnings for unknown references. example for “CO”: BibT X will then read the .aux file, the bibli- E title = {{CO} pollution}, ographic style .bst and .bib database(s) specified. For every \cite entry, it will read the information The .bst style can be used to automatically contained in the .bib files and format it according change the capitalization behavior for titles (e.g. title to the style .bst. At the end it will order the en- style or sentence style) instead of manually enclosing tries according to the style .bst and will write the all the titles in braces. result into the .bbl file. The .bbl contains the bib- Commands. Since T X modifies the capital- liographic entries organized in a thebibliography Bib E A environment; the entries follow the format specified ization depending on the .bst style, some LTEX commands inside titles may not work. For example, by the .bst style and have the information contained if the sentence style is in use and one of the titles in the .bib database. This file will be read every contains the command , this will be converted time that the source .tex file is compiled. \LaTeX to \latex and will give the following error: When running LATEX again, it will produce a warning due to the fact that the references are not de- ! Undefined control sequence. fined yet and will substitute the \bibliography com- mand with the content of the .bbl file. It will also This also can be avoided by enclosing such commands write a note into the .aux file for every \bibitem. in braces: {\LaTeX}. At the next run, LATEX will find the definition Accents and special characters. A similar prob- for every \cite in the .aux file and all the citations lem arises with the commands for accents and spe- in the text will be resolved. The .blg file is a log cial characters such as “ö” (\"{o}), “ç” (\c{c}), “ñ” file created by BibTEX, similar to the .log file for (\~{n}), etc. Again, enclosing the command in LATEX. braces solves the issue: This flow, represented in Fig.1, has to be re- peated if the citations in the text, the .bib database title = {Writing the curriculum vit{\ae}}, or the .bst style are modified. Name lists. When more than one name is present 2.2.2 Structure of a bibliography database in the author or editor fields, they have to be sep- The .bib files are databases that store the informa- arated by ␣and␣ (a space before and after): tion for each bibliographic entry. Here is an example: author = {Author1 and Author2}, @BOOK{Kopka1995, title = {A Guide to {\LaTeX} -- Document Each name has four parts: Name, von, Surname, Preparation for Beginners and Advanced Users Jr. The surname is mandatory, all other parts are }, optional. BibT X accepts two different syntaxes for publisher = {Addison-Wesley}, E year = {1995}, names: author = {H. Kopka and P. W. Daly}, • Name von Surname: for example “Pico della } Mirandola” has to be written as Each type of entry (BOOK, ARTICLE, PROCEEDINGS, Pico della Mirandola. etc.) offers many fields in addition to those shown • von Surname, Jr, Name: for example “Pico in the example (title, publisher, year, author). della Mirandola II” has to be written as Further details can be found in Patashnik(1998). della Mirandola, II, Pico. Managing bibliographies with LATEX 38 TUGboat, Volume 30 (2009), No. 1 The second form is more general because the first 2.2.4 Creating and managing bibliography one cannot be used when the Jr field is present or databases when the surname contains more than one word and As should be clear from the example in section 2.2, the von part is not present. The .bst style takes the .bib file syntax is so intuitive that these files care of abbreviating (or not) names. If the author can be easily written with any text editor. Several wants to use abbreviated names, the .bib database programs, however, are dedicated to the creation can also have abbreviated names. For example: and management of .bib databases, such as Bib- author = {Mori, L. F.}, TeXMng3 (shareware for Windows), BibDesk4 (open- source for Mac OS X), KBibTeX5 (open-source for If the list of authors or editors is too long, it can Linux), Pybliographer6(open-source for Linux), bib- be ended by and others that will then be formatted liographer7 (freeware for Linux), Bibwiki8 (Internet by the style as “et al.” based), cb2Bib9 (freeware for Windows and Linux), author = {Conte, G. B. and Pianezzolla, E. and Zotero10 (open-source multi-platform plugin for Fire- Chiesa, P. and Rossi, G. and others}, fox), and JabRef11 (multi-platform open-source). The last three programs are particularly interesting and URL. The standard BibTEX styles do not provide will be discussed in the next paragraphs. a field for web addresses. A solution with these styles is to use the howpublished field: cb2Bib. cb2bib (which stands for “clipboard to @MISC{..., BibTEX”) is a program for extracting bibliographic ..., information from unformatted sources such as .pdf howpublished = {\url{http://...}}, files, web sites, and email.
Recommended publications
  • A GUI Interface for Biblatex
    Zbl-build: a GUI interface for Biblatex Guido Milanese Abstract ABibTEX database can be easily managed and maintained using one of the several GUI(s) avail- A set of dialogues and questions helps the user in able, such as the very popular Jabref3. Users with setting a basic configuration of Biblatex, and in little or no technical skills are normally comfort- selecting the required BibTEX archive(s). A more able with Jabref and the like, while they would feel detailed choice is offered for the “philosophy” bun- uneasy using a text editor such as vim or emacs. dle of styles. Unfortunately, the bibliographic styles are often not easy to deal with; Biblatex is a very powerful Sommario tool for the generation of almost any bibliographi- cal style, but the work must be done “by hand”, Una serie di dialoghi e di domande aiuta i.e. studying the manuals and trying to find the l’utilizzatore nella preparazione della configura- most suitable style. zione di base per Biblatex nella scelta degli archivi There were some questions posted to TEX/ BibT X necessari. Per la famiglia di stile “philoso- E LATEX user groups asking if a graphical “gener- phy” viene presentata una maggiore ricchezza di ator” of Biblatex styles is available4 – something parametri. similar to the command line tool makebst, used to generate the bst BibTEX style files, often combined 1 Why a GUI for Biblatex with merlin master bibliographical style5. Zbl-build is a simple graphical interface geared towards mak- Almost ten years ago, in 2006, the first version of ing the choice of a Biblatex style less frustrating, Biblatex showed that a new approach to biblio- setting Biblatex basic features and selecting one graphical issues was possible.
    [Show full text]
  • A Comparison of On-Line Computer Science Citation Databases
    A Comparison of On-Line Computer Science Citation Databases Vaclav Petricek1,IngemarJ.Cox1,HuiHan2, Isaac G. Councill3, and C. Lee Giles3 1 University College London, WC1E 6BT, Gower Street, London, United Kingdom [email protected], [email protected] 2 Yahoo! Inc., 701 First Avenue, Sunnyvale, CA, 94089 [email protected] 3 The School of Information Sciences and Technology, The Pennsylvania State University, University Park, PA 16802, USA [email protected] [email protected] Abstract. This paper examines the difference and similarities between the two on-line computer science citation databases DBLP and CiteSeer. The database entries in DBLP are inserted manually while the CiteSeer entries are obtained autonomously via a crawl of the Web and automatic processing of user submissions. CiteSeer’s autonomous citation database can be considered a form of self-selected on-line survey. It is important to understand the limitations of such databases, particularly when citation information is used to assess the performance of authors, institutions and funding bodies. We show that the CiteSeer database contains considerably fewer single author papers. This bias can be modeled by an exponential process with intuitive explanation. The model permits us to predict that the DBLP database covers approximately 24% of the entire literature of Computer Science. CiteSeer is also biased against low-cited papers. Despite their difference, both databases exhibit similar and signif- icantly different citation distributions compared with previous analysis of the Physics community. In both databases, we also observe that the number of authors per paper has been increasing over time. 1 Introduction Several public1 databases of research papers became available due to the advent of the Web [1,22,5,3,2,4,8] These databases collect papers in different scientific disciplines, index them and annotate them with additional metadata.
    [Show full text]
  • A Comparison of Researcher's Reference Management Software
    Journal of Economics and Behavioral Studies Vol. 6, No. 7, pp. 561-568, July 2014 (ISSN: 2220-6140) A Comparison of Researcher’s Reference Management Software: Refworks, Mendeley, and EndNote Sujit Kumar Basak Durban University of Technology, South Africa [email protected] Abstract: This paper aimed to present a comparison of researcher’s reference management software such as RefWorks, Mendeley, and EndNote. This aim was achieved by comparing three software. The main results of this paper were concluded by comparing three software based on the experiment. The novelty of this paper is the comparison of researcher’s reference management software and it has showed that Mendeley reference management software can import more data from the Google Scholar for researchers. This finding could help to know researchers to use the reference management software. Keywords: Reference management software, comparison and researchers 1. Introduction Reference management software maintains a database to references and creates bibliographies and the reference lists for the written works. It makes easy to read and to record the elements for the reference comprises such as the author’s name, year of publication, and the title of an article, etc. (Reiss & Reiss, 2002). Reference Management Software is usually used by researchers, technologists, scientists, and authors, etc. to keep their records and utilize the bibliographic citations; hence it is one of the most complicated aspects among researchers. Formatting references as a matter of fact depends on a variety of citation styles which have been made the citation manager very essential for researchers at all levels (Gilmour & Cobus-Kuo, 2011). Reference management software is popularly known as bibliographic software, citation management software or personal bibliographic file managers (Nashelsky & Earley, 1991).
    [Show full text]
  • Linking Educational Resources on Data Science
    The Thirty-First AAAI Conference on Innovative Applications of Artificial Intelligence (IAAI-19) Linking Educational Resources on Data Science Jose´ Luis Ambite,1 Jonathan Gordon,2∗ Lily Fierro,1 Gully Burns,1 Joel Mathew1 1USC Information Sciences Institute, 4676 Admiralty Way, Marina del Rey, California 90292, USA 2Department of Computer Science, Vassar College, 124 Raymond Ave, Poughkeepsie, New York 12604, USA [email protected], [email protected], flfierro, burns, [email protected] Abstract linked data (Heath and Bizer 2011) with references to well- known entities in DBpedia (Auer et al. 2007), DBLP (Ley The availability of massive datasets in genetics, neuroimag- 2002), and ORCID (orcid.org). Here, we detail the meth- ing, mobile health, and other subfields of biology and ods applied to specific problems in building ERuDIte. First, medicine promises new insights but also poses significant we provide an overview of our project. In later sections, we challenges. To realize the potential of big data in biomedicine, the National Institutes of Health launched the Big Data to describe our resource collection effort, the resource schema, Knowledge (BD2K) initiative, funding several centers of ex- the topic ontology, our linkage approach, and the linked data cellence in biomedical data analysis and a Training Coordi- resource provided. nating Center (TCC) tasked with facilitating online and in- The National Institutes of Health (NIH) launched the Big person training of biomedical researchers in data science. A Data to Knowledge (BD2K) initiative to fulfill the promise major initiative of the BD2K TCC is to automatically identify, of biomedical “big data” (Ohno-Machado 2014). The NIH describe, and organize data science training resources avail- BD2K program funded 15 major centers to investigate how able on the Web and provide personalized training paths for data science can benefit diverse fields of biomedical research users.
    [Show full text]
  • A Publication of the Science Fiction Research Association in This Issue
    292 Spring 2010 Editors Karen Hellekson SFRA 16 Rolling Rdg. A publication of the Science Fiction Research Association Jay, ME 04239 Review [email protected] [email protected] In This Issue Craig Jacobsen SFRA Review Business English Department Counting Down 2 Mesa Community College 1833 West Southern Ave. SFRA Business Mesa, AZ 85202 Statement in Response to the Arizona Immigration Bill 2 [email protected] Ask not what you can do for SFRA… 2 [email protected] SFRA Award Winners 3 Call for Executive Committee Candidates 4 Managing Editor Feature Janice M. Bogstad McIntyre Library-CD Scholarly Research and Writing 101 4 University of Wisconsin-Eau Claire Nonfiction Reviews 105 Garfield Ave. Classics and Contemporaries 8 Eau Claire, WI 54702-5010 [email protected] The Universe of Oz 9 The Unknown Lovecraft 10 Nonfiction Editor War of the Words: The Utopian Vision of H. G. Wells 11 Ed McKnight Fiction Reviews 113 Cannon Lane Deceiver 12 Taylors, SC 29687 [email protected] The Casebook of Victor Frankenstein: A Novel 12 Ares Express 14 Fiction Editor Nebula Awards Showcase 2010 15 Edward Carmien Brain Thief 16 29 Sterling Rd. Transition 17 Princeton, NJ 08540 Media Reviews [email protected] Avatar 18 Media Editor Pumzi 20 Ritch Calvin The Imaginarium of Doctor Parnassus 22 16A Erland Rd. Southern Portable Panic: Federico Álvarez’s Ataque de Pánico! 23 Stony Brook, NY 11790-1114 District B13 (Banlieue 13) 24 [email protected] Small Steps for Ants, a Giant Leap for Mankind: The SFRA Review (ISSN 1068- 395X) is published four times a year by Saul Bass’s Phase IV 24 the Science Fiction Research Association Pushing the Wrong Buttons 25 (SFRA), and distributed to SFRA members.
    [Show full text]
  • Altmetric.Com and Plumx
    This is a preprint of an article published in Scientometrics. The final authenticated version is available online at: https://doi.org/10.1007/s11192-021-03941-y A large-scale comparison of coverage and mentions captured by the two altmetric aggregators- Altmetric.com and PlumX Mousumi Karmakara, Sumit Kumar Banshalb, Vivek Kumar Singha,1 1Department of Computer Science, Banaras Hindu University, Varanasi-221005, India 2Department of Computer Science, South Asian University, New Delhi-110021, India. Abstract: The increased social media attention to scholarly articles has resulted in creation of platforms & services to track the social media transactions around them. Altmetric.com and PlumX are two such popular altmetric aggregators. Scholarly articles get mentions in different social platforms (such as Twitter, Blog, Facebook) and academic social networks (such as Mendeley, Academia and ResearchGate). The aggregators track activity and events in social media and academic social networks and provide the coverage and transaction data to researchers for various purposes. Some previous studies have compared different altmetric aggregators and found differences in the coverage and mentions captured by them. This paper attempts to revisit the question by doing a large-scale analysis of altmetric mentions captured by the two aggregators, for a set 1,785,149 publication records from Web of Science. Results obtained show that PlumX tracks more altmetric sources and captures altmetric events for a larger number of articles as compared to Altmetric.com. However, the coverage and average mentions of the two aggregators, for the same set of articles, vary across different platforms, with Altmetric.com recording higher mentions in Twitter and Blog, and PlumX recording higher mentions in Facebook and Mendeley.
    [Show full text]
  • (Bachelor, Master, Or Phd) and Which Software Tools to Use How to Write A
    2.6.2016 How to write a thesis (Bachelor, Master, or PhD) and which software tools to use ­ SciPlore Home Projects Publications About & Contact How to write a thesis (Bachelor, Master, or PhD) and Home / HOW TOs, sciplore mindmapping / which software tools to use How to write a thesis (Bachelor, Master, or PhD) and which software tools to use Previous Next How to write a thesis (Bachelor, Master, or PhD) and which software tools to use Available translations: Chinese (thanks to Chen Feng) | Portuguese (thanks to Marcelo Cruz dos Santos) | Russian (thanks to Sergey Loy) send us your translation Writing a thesis is a complex task. You need to nd related literature, take notes, draft the thesis, and eventually write the nal document and create the bibliography. Many books explain how to perform a literature survey and how to write scholarly literature in general and a thesis in particular (e.g. [1-9]). However, these books barely, if at all, cover software tools that help in performing these tasks. This is surprising, because great software tools that can facilitate the daily work of students and researchers are available and many of them for free. In this tutorial, we present a new method to reviewing scholarly literature and drafting a thesis using mind mapping software, PDF readers, and reference managers. This tutorial focuses on writing a PhD thesis. However, the presented methods are likewise applicable to planning and writing a bachelor thesis or master thesis. This tutorial is special, because it integrates the management of PDF les, the relevant content in PDFs (bookmarks), and references with mind mapping and word processing software.
    [Show full text]
  • Studies and Analysis of Reference Management Software: a Literature Review
    Studies and analysis of reference management software: a literature review Jesús Tramullas Ana Sánchez-Casabón {jesus,asanchez}@unizar.es Dept .of Library & Information Science, University of Zaragoza Piedad Garrido-Picazo [email protected] Dept. of Computer and Software Engineering, University of Zaragoza Abstract: Reference management software is a well-known tool for scientific research work. Since the 1980s, it has been the subject of reviews and evaluations in library and information science literature. This paper presents a systematic review of published studies that evaluate reference management software with a comparative approach. The objective is to identify the types, models, and evaluation criteria that authors have adopted, in order to determine whether the methods used provide adequate methodological rigor and useful contributions to the field of study. Keywords: reference management software, evaluation methods, bibliography. 1. Introduction and background Reference management software has been a useful tool for researchers since the 1980s. In those early years, tools were made ad-hoc, and some were based on the dBase II/III database management system (Bertrand and Bader, 1980; Kunin, 1985). In a short period of time a market was created and commercial products were developed to provide support to this type of information resources. The need of researchers to systematize scientific literature in both group and personal contexts, and to integrate mechanisms into scientific production environments in order to facilitate and expedite the process of writing and publishing research results, requires that these types of applications receive almost constant attention in specialized library and information science literature. The result of this interest is reflected, in bibliographical terms, in the publication of numerous articles almost exclusively devoted to describing, analyzing, and comparing the characteristics of several reference management software products (Norman, 2010).
    [Show full text]
  • Documentation of Northern Alta: Grammar, Texts and Glossary
    Documentation of Northern Alta: grammar, texts and glossary Alexandro-Xavier García Laguía ADVERTIMENT. La consulta d’aquesta tesi queda condicionada a l’acceptació de les següents condicions d'ús: La difusió d’aquesta tesi per mitjà del servei TDX (www.tdx.cat) i a través del Dipòsit Digital de la UB (diposit.ub.edu) ha estat autoritzada pels titulars dels drets de propietat intel·lectual únicament per a usos privats emmarcats en activitats d’investigació i docència. No s’autoritza la seva reproducció amb finalitats de lucre ni la seva difusió i posada a disposició des d’un lloc aliè al servei TDX ni al Dipòsit Digital de la UB. No s’autoritza la presentació del seu contingut en una finestra o marc aliè a TDX o al Dipòsit Digital de la UB (framing). Aquesta reserva de drets afecta tant al resum de presentació de la tesi com als seus continguts. En la utilització o cita de parts de la tesi és obligat indicar el nom de la persona autora. ADVERTENCIA. La consulta de esta tesis queda condicionada a la aceptación de las siguientes condiciones de uso: La difusión de esta tesis por medio del servicio TDR (www.tdx.cat) y a través del Repositorio Digital de la UB (diposit.ub.edu) ha sido autorizada por los titulares de los derechos de propiedad intelectual únicamente para usos privados enmarcados en actividades de investigación y docencia. No se autoriza su reproducción con finalidades de lucro ni su difusión y puesta a disposición desde un sitio ajeno al servicio TDR o al Repositorio Digital de la UB.
    [Show full text]
  • On Publication Usage in a Social Bookmarking System
    On Publication Usage in a Social Bookmarking System Daniel Zoller Stephan Doerfel Robert Jäschke Data Mining and Information ∗ L3S Research Center Retrieval Group ITeG, Knowledge and Data [email protected] University of Würzburg Engineering (KDE) Group [email protected] University of Kassel wuerzburg.de [email protected] Gerd Stumme Andreas Hotho ITeG, Knowledge and Data Data Mining and Information Engineering Group (KDE) Retrieval Group University of Kassel University of Würzburg [email protected] [email protected] kassel.de wuerzburg.de ABSTRACT The creation of impact measures from such data has been Scholarly success is traditionally measured in terms of cita- subsumed under the umbrella term altmetrics (alternative tions to publications. With the advent of publication man- metrics). According to the Altmetrics Manifesto [4] the agement and digital libraries on the web, scholarly usage goals of this initiative are to complement traditional bib- data has become a target of investigation and new impact liometric measures, to introduce diversity in measuring im- metrics computed on such usage data have been proposed pact, and to supplement peer-review. The manifesto also { so called altmetrics. In scholarly social bookmarking sys- appeals: \Work should correlate between altmetrics and ex- tems, scientists collect and manage publication meta data isting measures, predict citations from altmetrics and com- and thus reveal their interest in these publications. In this pare altmetrics with expert evaluation." In that spirit, we work, we investigate connections between usage metrics and analyze the usage metrics that can be computed in the social citations, and find posts, exports, and page views of publi- web system BibSonomy,1 a bookmarking tool for publica- cations to be correlated to citations.
    [Show full text]
  • Aigaion: a Web-Based Open Source Software for Managing the Bibliographic References
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by E-LIS repository Aigaion: A Web-based Open Source Software for Managing the Bibliographic References Sanjo Jose ([email protected]) Francis Jayakanth ([email protected]) National Centre for Science Information, Indian Institute of Science, Bangalore – 560 012 Abstract Publishing research papers is an integral part of a researcher's professional life. Every research article will invariably provide large number of citations/bibliographic references of the papers that are being cited in that article. All such citations are to be rendered in the citation style specified by a publisher and they should be accurate. Researchers, over a period of time, accumulate a large number of bibliographic references that are relevant to their research and cite relevant references in their own publications. Efficient management of bibliographic references is therefore an important task for every researcher and it will save considerable amount of researchers' time in locating the required citations and in the correct rendering of citation details. In this paper, we are reporting the features of Aigaion, a web-based, open-source software for reference management. 1. Introduction A citation or bibliographic citation is a reference to a book, article, web page, or any other published item. The reference will contain adequate details to facilitate the readers to locate the publication. Different citation systems and styles are being used in different disciplines like science, social science, humanities, etc. Referencing is also a standardised method of acknowledging the original source of information or idea.
    [Show full text]
  • What's in Extras
    What’s In Extras 2021/09/20 1 The Extras Folder The Extras folder contains several sub-folders with: • duplicates of several GUI programs installed by the MacTEX installer for those who already have a TEX distribution; • alternates to the GUI applications installed by the MacTEX installer; and • additional software that aE T Xer might find useful. The following sub-sections describe the software contained within them. Table (1), on the next page, contains a complete list of the enclosed software, versions, supported macOS versions, licenses and URLs. Note: for 2020 MacTEX supports High Sierra, Mojave and Catalina although some software also supports earlier versions of macOS. Earlier versions of applications are no longer supplied in the Extras folder but you may find them at the supplied URL. 1.1 Bibliography Bibliography programs for building and maintaining BibTEX databases. 1.2 Browsers A program to browse symbols used with LATEX. 1.3 Editors & Front Ends Alternative Editors, Typesetters and Previewers for TEX. These range from “WYSIWYM (What You See Is What You Mean)” to a Programmer’s Editor with strong LATEX support. 1.4 Equation Editors These allow the user to create beautiful equations, etc., that may be exported for use in other appli- cations; e.g., editors, illustration and presentation software. 1.5 Previewers Separate DVI and PDF previewers for use as external viewers with other editors. 1.6 Scripts Files to integrate some external programmer’s editors with the TEX system. 1.7 Spell Checkers Alternate TEX, LATEX and ConTEXt aware spell checkers. 1.8 Utilities Utilities for managing your MacTEX distribution.
    [Show full text]