Latex&Friends Course in Helsinki

Total Page:16

File Type:pdf, Size:1020Kb

Latex&Friends Course in Helsinki LATEX&friends course in Helsinki a TEX/LATEX enthusiast’s view Gaetano Zanghirati University of Ferrara, Italy in cooperation with DOMAST Doctoral School in Mathematics and Statistics Helsinki, May 2019 Cross-references LATEX’s cross-referencing mechanism is very powerful almost anything that is numbered can easily referenced (sections, figures, formulas) LATEX automatically takes care of numbering, updating it whenever necessary the commands to be used are independent of what has to be referenced \label{name} assigns the mnemonic name name of your choice to the element that has to be referenced (as long as it has a number associated with it) \ref{name} returns the right numbering associated to name, while \pageref{name} returns the corresponding page number the parameter name does not appear in the output document, but if you reference a nonexistent name, then LATEX print “??” where such a reference command appear and issues the warning LaTeX Warning: There were undefined references A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Cross-references Cross-referencing is a two steps mechanism: 1 LATEX store in an external auxiliary file( .aux) the label with the right number to be used 2 in the next compilation, LATEX reads in the right numbering from the auxiliary file and substitute the calling \ref command with such a number every time the auxiliary file is changed, LATEX displays in the console (and write out in the log file) the warning LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right the \pageref command can be used to help the reader identify the place where the referenced element is. For instance See table~\ref{tab:countries} on page~\pageref{tab:countries} the \label command must be put immediately after the number-generating command that refers to the element A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Cross-references All letters and punctuation marks can be used to form the name of a label best practice: differentiate the kind of element with the name itself. Common choices: prefix meaning prefix meaning ch: chapter eq: equation sec: section lst: code listing subsec: subsection itm: enumerated list item fig: figure alg: algorithm tab: table app: appendix Suggestion Avoid using numbers within labels! It’s much better to describe what the object is about: if you change the order of the objects, there is no need to rename all labels and their references! A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Cross-references the amsmath package introduces specialized cross-referencing commands: \eqref typesets parenthesized numbers \tag{eqnnum} allows to manually set equation numbers to the eqnnum text string you want to appear in the document. It is normally better to use labels!. Example: \tag{\ref{eqn:before}}. \numberwithin{cntrA}{cntrB} replaces the simple cntrA by cntrB.cntrA \numcases, \subnumcases for the cases env. the command \vref from varioref package has a different output according to the context, i.e., to the relative position of element and reference: if both are in the same page, it behaves exactly as \ref; if they appear in different pages, it automatically adds the page number (if they are far away from each other), or a string such as “on the facing page”, “on the next page”, “on the previous page” (if the two pages are contiguous). A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Cross-references The hyperref package provides the command \autoref: it creates a reference with additional text corresponding to the target?s type, and all of which will be a hyperlink. Example: \autoref{sec:intro} create a hyperlink to \label{sec:intro} and, if the pointed element is Section 3.4, the hyperlink would contain the text “section 3.4”, or similar \autoref* produces an unlinked prefix there exists also a cleveref package which In the preamble, they must be loaded in the sequence varioref, hyperref and cleveref to avoid conflicts A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies Managing references and citations is a relevant task There are two components: the source of information and the way they are displayed in the final document The source is essentially a set of “objects” that are mentioned somewhere in the document. Each one of these objects has attributes that may or may not be relevant to typeset The displayed aspect is the visual look of the data, that is the style used to typeset the selected attributes of each object LATEX allows two ways of management embedded system: all references data are part of the document source and you explicitly take care of the visual aspect of each single object you want to appear the final document database-enabled system: the raw data are stored in one (or more) external file(s) in a form of database items, one for each object, while the look they will have in the final document is determined by “bibliography style” specifications, in the form of TEX/LATEX commands coded in a dedicated file. A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies The embedded system: the bibliography data must be put inside a thebibliography environment each object is introduced in the source code by a \bibitem command, followed by the respective attributes and the style to be used to show them the argument of \bibitem is a unique alphanumerical key that will be used to cite the reference: Modern \LaTeX{} is described in Modern LATEX is described in [1]. \cite{LatexCompanion2004}. \begin{thebibliography}{9} \bibitem{LatexCompanion2004} References Frank Mittelback, Michael Goossens, [1] Frank Mittelback, Michael \textit{The \LaTeX Companion}, Goossens, The LATEXCompanion, Second Edition, Addison-Wesley, Second Edition, Addison-Wesley, Massachusetts, 2004. Massachusetts, 2004. \end{thebibliography} A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 1 Managing bibliographies The embedded system: the list of references will appear in the final document exactly where you put the environment the mandatory argument of \begin{thebibliography} tells LATEX how wide the item label will be when printed. However, that the number itself is not the parameter, but the number of digits is. the bibitem key is a mnemonic label consisting of any sequence of letters, numbers and punctuation symbols (although not a comma) various strategies suggest how to assemble this mnemonic label from the reference data and there are also automatic tools available, that can do the job for you the \cite{key} command cite a reference in the text the \cite command accepts an optional argument specifying some details of that particular reference useful for the reader Example: \cite[chapter 13, pag.~757]{LatexCompanion2004} ! [1, chapter 13, pag. 757] A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies multiple consecutive citations are obtained by adding more than one reference key inside the same \cite command: \cite{LatexCompanion2004,Lamport1994} ! [1, 2] which is different from \cite{LatexCompanion2004} \cite{Lamport1994} ! [1] [2] surely, the thebibliography environment can be put in a dedicated .tex file and \inputed in the source, in the point where the bibliography have to appear, but. When is the embedded system useful? If you are writing only one or two documents and aren?t planning on writing more on the same subject for a long time. It saves the time of creating a database of references that you are never going to use again. A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies The Database-enabled system: it is a much more powerful and flexible solution it uses the auxiliary tool calledB IBTEX, (bundled with LaTeX) BIBTEX has been succeeded by BibLATEX, which is configurable and customizable within LaTeX syntax BIBTEX provides for the storage of all references in an external, “flat-file” database with extension .bib (BibLATEX too) This database can be referenced in anyLATEX document, and citations made to any record it contains. This is often more convenient than embedding them at the end of every document written a “centralized” bibliography source can be linked to as many documents as desired: “write once, read many!” Of course, bibliographies can be split over as many files as one wishes: this is very useful! Example: a database players.bib dedicated to players biographies and clubs.bib dedicated to teams club history documents A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies There are several different ways to format lists of bibliographic references and the citations to them in the text List styles are specified in special .bst files The citation styles consist of two parts: the format of the abbreviated citation( i.e., the marker that is inserted into the text to identify the entry in the list of references) the format of the corresponding entry in the list of references, which includes full bibliographic details two main types for abbreviated citations: numbered: are numbered consecutively in order of appearance in the list of references. Consist in Arabic numerals in parentheses, square brackets, superscript, or a combination thereof (Vancouver system) textual: use the author surname and (usually) the year as the abbreviated form of the citation, which is normally fully or partially enclosed in parenthesis (Harvard system) A course on LaTeX&friends .:. G. Zanghirati & DOMAST .:. Helsinki, May 2019 Managing bibliographies Citations styles are usually selected by options to dedicated packages, such as natbib style name author name format reference format sorting plain Homer Jay Simpson #ID# by author unsrt Homer Jay Simpson #ID# as referenced abbrv H. J. Simpson #ID# by author alpha Homer Jay Simpson Sim95 by author abstract Homer Jay Simpson Simpson-1995a acm Simpson, H.
Recommended publications
  • (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]
  • Centre for Mathematical Biology's
    CMB Group Meeting October 8th, 2012 Centre for Mathematical Biology's https://www.maths.ox.ac.uk/groups/mathematical-biology/internal/tips Ornella Google Drive 5 free GB storage • easy access instant access to • collaboration • equations editor • forms, polls and surveys • translation • simultaneous work on docs • used Docs instead of email • version control • safe storage • tracking • work offline • allow editing without signing in Ornella Organisation • Date and number your pages or use a notebook • Write in meetings / write up meetings • Use referencing software • Bibtex • Mendeley / Refworks / Citeulike / Referencer • Keep track of the research skills things you've done • Keep a record of ideas you have about future directions • Backup your work! The university / maths institute has good back-up systems • Write up work as you go • Throw away work that is wrong Louise Computing • Scratch drive / networked scratch drives (/mi/share/scratch) • Subversioning (RabbitSVN is installed on the MI computers) • Dropbox (check the terms of use!) • Call your files sensible things • In Matlab: • Ask around if you're trying to do something - often people will know how! • Use sensible names for your variables • Comment your code • Mex functions • You can ssh into the MI computers (http://www.maths.ox.ac.uk/help/remote-access) • See http://www.maths.ox.ac.uk/help for useful computing info • LaTeX / Beamer Louise Extras • Conferences • Study Groups • Teaching / TAing • Bionumbers • SMB / ESMTB can give conference money if you join • Socials Louise
    [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]
  • Bibsonomy: a Social Bookmark and Publication Sharing System
    BibSonomy: A Social Bookmark and Publication Sharing System Andreas Hotho,1 Robert Jaschke,¨ 1,2 Christoph Schmitz,1 Gerd Stumme1,2 1 Knowledge & Data Engineering Group, Department of Mathematics and Computer Science, University of Kassel, Wilhelmshoher¨ Allee 73, D–34121 Kassel, Germany http://www.kde.cs.uni-kassel.de 2 Research Center L3S, Expo Plaza 1, D–30539 Hannover, Germany http://www.l3s.de Abstract. Social bookmark tools are rapidly emerging on the Web. In such sys- tems users are setting up lightweight conceptual structures called folksonomies. The reason for their immediate success is the fact that no specific skills are needed for participating. In this paper we specify a formal model for folksonomies and briefly describe our own system BibSonomy, which allows for sharing both book- marks and publication references in a kind of personal library. 1 Introduction Complementing the Semantic Web effort, a new breed of so-called “Web 2.0” appli- cations is currently emerging on the Web. These include user-centric publishing and knowledge management platforms like Wikis, Blogs, and social resource sharing tools. These tools, such as Flickr3 or del.icio.us,4 have acquired large numbers of users within less than two years.5 The reason for their immediate success is the fact that no specific skills are needed for participating, and that these tools yield immediate benefit for each individual user (e.g. organizing ones bookmarks in a browser-independent, persistent fashion) without too much overhead. Large numbers of users have created huge amounts of information within a very short period of time.
    [Show full text]
  • Reference Management Software (Rms) in an Academic Environment: a Survey at a Research University in Malaysia
    Journal of Theoretical and Applied Information Technology 10 th June 2016. Vol.88. No.1 © 2005 - 2016 JATIT & LLS. All rights reserved . ISSN: 1992-8645 www.jatit.org E-ISSN: 1817-3195 REFERENCE MANAGEMENT SOFTWARE (RMS) IN AN ACADEMIC ENVIRONMENT: A SURVEY AT A RESEARCH UNIVERSITY IN MALAYSIA 1MOHAMMAD OSMANI, 2ROZAN MZA, 3BAKHTYAR ALI AHMAD, 4ARI SABIR ARIF 1 Department of Management, Mahabad Branch, Islamic Azad University, Mahabad, Iran 2 Faculty of Computing, Universiti Teknologi Malaysia (UTM), Johor, Malaysia 3 Faculty of Geo Information and Real Estate, Universiti Teknologi Malaysia (UTM), Johor, Malaysia 4 Faculty of Physical and Basic Education, University of Sulaimani (UOS), Sulaimani, Iraq E-mail: [email protected], [email protected] , [email protected], [email protected] ABSTRACT Reference Management Software is used by researchers in academics to manage the bibliographic citations they encounter in their research. With these tools, scholars keep track of the scientific literature they read, and to facilitate the editing of the scientific papers they write. This study presents the results of a quantitative survey performed at a research university in Malaysia. The aims of the survey were to observe how much these softwares are used by the scientific community, to see which softwares are most known and used, and to find out the reasons and the approaches behind their usage. Manually questionnaire was distributed to the Master and PhD students at all faculties in Jun 2014. The data collected were analysed through a constant comparative analysis, and the following categories were drawn: a basic practical approach to the instrument, the heavy impact of the time factor, the force of habit in scholars, economic issues, the importance of training and literacy, and the role that the library can have in this stage.
    [Show full text]
  • Evaluación De Software Libre Para La Gestión De Bibliografía
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by E-LIS Evaluación de software libre para la gestión de bibliografía Mónica Giménez López Jesús Tramullas Saz Resumen Las herramientas sociales de gestión de bibliografía están emergiendo rápidamente en la web. En este trabajo se lleva a cabo una evaluación de las herramientas de gestión bibliográfica más reconocidas existentes en la red. Al tratarse de herramientas libres y open source, se pretende elegir la mejor para desarrollar un servicio de gestión de bibliografías en castellano. Palabras clave Gestión bibliográfica, software libre, redes sociales, web 2.0., web semántica, Abstract The Social Tools in bibliography management are growing really fast on the Internet. In this project we’re going to evaluate the most popular management bibliography tools known. We’re going to select the best open source tool in order to develop a bibliography management service in Spanish Castilian. Keywords Bibliography management, free software, open source, social network, web 2.0., semantic web 1. Introducción Este trabajo pretende hacer una evaluación de varias herramientas de gestión bibliográfica que existen en la red, y que permiten importar, organizar, exportar, editar y compartir referencias bibliográficas, así como crear bibliografías personales y darle formato. Entre la amplia variedad de herramientas de gestión bibliográfica, disponibles, se han seleccionado las siguientes: • Bibsonomy ( http://www.bibsonomy.org ) • CiteuLike ( http://www.citeulike.org ) • Connotea ( www.connotea.org ) • Refbase ( http://refbase.sourceforge.net ) • Wikindx ( http://wikindx.sourceforge.net/ ) • Zotero ( http://www.zotero.org/ ) Se han analizado las características y capacidades que pueden interesar desde un punto de vista documental.
    [Show full text]
  • Publishing Bibliographic Data on the Semantic Web Using Bibbase
    Undefined 0 (0) 1 1 IOS Press Publishing Bibliographic Data on the Semantic Web using BibBase Editor(s): Carsten Keßler, University of Münster, Germany; Mathieu d’Aquin, The Open University, UK; Stefan Dietze, L3S Research Center, Germany Solicited review(s): Kai Eckert, University of Mannheim, Germany; Antoine Isaac, Vrije Universiteit Amsterdam, The Netherlands; Jan Brase, German National Library of Science and Technology, Germany Reynold S. Xin a, Oktie Hassanzadeh b,∗, Christian Fritz c, Shirin Sohrabi b and Renée J. Miller b a Department of EECS, University of California, Berkeley, California, USA E-mail: [email protected] b Department of Computer Science, University of Toronto, 10 King’s College Rd., Toronto, Ontario, M5S 3G4, Canada E-mail: {oktie,shirin,miller}@cs.toronto.edu c Palo Alto Research Center, 3333 Coyote Hill Road, Palo Alto, California, USA E-mail: [email protected] Abstract. We present BibBase, a system for publishing and managing bibliographic data available in BiBTeX files. BibBase uses a powerful yet light-weight approach to transform BiBTeX files into rich Linked Data as well as custom HTML code and RSS feed that can readily be integrated within a user’s website while the data can instantly be queried online on the system’s SPARQL endpoint. In this paper, we present an overview of several features of our system. We outline several challenges involved in on-the-fly transformation of highly heterogeneous BiBTeX files into high-quality Linked Data, and present our solution to these challenges. Keywords: Bibliographic Data Management, Linked Data, Data Integration 1. Introduction as DBLP Berlin [19] and RKBExplorer [24]).
    [Show full text]
  • Research Techniques in Network and Information Technologies, February
    Tools to support research M. Antonia Huertas Sánchez PID_00185350 CC-BY-SA • PID_00185350 Tools to support research The texts and images contained in this publication are subject -except where indicated to the contrary- to an Attribution- ShareAlike license (BY-SA) v.3.0 Spain by Creative Commons. This work can be modified, reproduced, distributed and publicly disseminated as long as the author and the source are quoted (FUOC. Fundació per a la Universitat Oberta de Catalunya), and as long as the derived work is subject to the same license as the original material. The full terms of the license can be viewed at http:// creativecommons.org/licenses/by-sa/3.0/es/legalcode.ca CC-BY-SA • PID_00185350 Tools to support research Index Introduction............................................................................................... 5 Objectives..................................................................................................... 6 1. Management........................................................................................ 7 1.1. Databases search engine ............................................................. 7 1.2. Reference and bibliography management tools ......................... 18 1.3. Tools for the management of research projects .......................... 26 2. Data Analysis....................................................................................... 31 2.1. Tools for quantitative analysis and statistics software packages ......................................................................................
    [Show full text]
  • Tactics for Evaluating Citation Management Tools William Marino Eastern Michigan University, [email protected]
    Eastern Michigan University DigitalCommons@EMU University Library Faculty Scholarship University Library 1-1-2012 Fore-cite: Tactics for Evaluating Citation Management Tools William Marino Eastern Michigan University, [email protected] Follow this and additional works at: http://commons.emich.edu/lib_sch Recommended Citation Marino, William, "Fore-cite: Tactics for Evaluating Citation Management Tools" (2012). University Library Faculty Scholarship. Paper 7. http://commons.emich.edu/lib_sch/7 This Article is brought to you for free and open access by the University Library at DigitalCommons@EMU. It has been accepted for inclusion in University Library Faculty Scholarship by an authorized administrator of DigitalCommons@EMU. For more information, please contact lib- [email protected]. Fore-cite: tactics for evaluating citation management tools Introduction Once upon a time, there was a very limited set of options regarding citation management software, and this set was well understood to the trained mind and did what it was meant to do, and that was good. A leader, Endnote, arose among that set and was consequently supported by academic libraries and other research institutions across the world, who merrily spread the word that technology was breaking the age- long chains of paper’s tyranny—at least when it came to storing and sorting one’s references. As the internet matured, with the advent of Web 2.0 and cloud computing, this set began to expand and the environment began to change. Increased functionality and flexibility meant that users began to question the hegemony of the leader. Librarians, those champions of information, began to develop comparisons to assist users with the gnawing decision of which tool was best.
    [Show full text]
  • References Bibliography In
    LYX: For the Impatient - 2 Adel M. Abdel-Azim, MDSC, PhD Professor and Chairman of Oral Pathology Department, Faculty of Dentistry, Ain Shams University, Egypt 6/5/2013 Preface Hopefully you’ll find something useful in this little book – Adel This document was created by LYX and is fully hyperlinkable that is to say you can click on the any item on the table of contents or on the list of figures to reach immediately to your target. Also, you can click on the figure number seen within the text to reach to the figure. Thanks are due to LYX for its ability to make documents fully hyperlinkable and hypreclickable. Note: This is a part of my book “LYX For the Impatient” which is still under preparation. Hope that I can finish it as soon as possible. 4 Contents 1 References (Bibliography) in LYX 7 1.1 Citation Versus Reference List ................. 7 1.2 Citation Styles ......................... 7 1.3 BibTEX ............................. 8 1.4 Inserting References in LYX . 12 1.5 Modifying References in LYX . 16 1.6 Citation Positioning ...................... 16 1.7 Style of the numbers in the bibliography . 17 1.8 Journal Styles .......................... 17 List of Figures 1.1 Citation and reference list .................... 8 1.2 JabRef Web Search Pane ..................... 12 1.3 Bibtex Key Generation ...................... 13 6 List of Figures 1 References (Bibliography) in LYX 1.1 Citation Versus Reference List F Citation or “reference in text” is the expression written in the text de- noting or referring the author, authors, published or unpublished source. F Reference list also known as bibliographical list is the list found usually at the end of your document in which you list all the authors or sources mentioned in your document.
    [Show full text]
  • An Insider's Insight Into Literature Searches
    An Insider’s Insight into Literature Searches Searching the literature can take various forms, ranging from a quick scan of recent publications to a formal, systematic interrogation of all available data sources to establish the scientific consensus on a specific topic. In these days of online journal databases, the relative ease of conducting a search means that they often start informally with no thought-out search strategy or defined goal. A long list of articles can be generated almost instantaneously, but what did you miss and how long will it take to review the data? How easily can the search strategy be repeated and adapted to obtain a more complete and refined set of references? We offer some insights from the Niche medical writing team who have been conducting literature searches for their clients since 1998. Copyright © 2016 Niche Science & Technology Ltd, UK 1 Before you start Prepare to succeed • Establish a formal plan for your literature • Your searches will create outputs in the form of search if you propose to do anything more than lists of publications. Decide what information conduct a cursory review of the literature you need to record about each reference in order to help determine its relevance, how you • Know what you want to achieve so you avoid will store the information and how you will endless futile or repetitive searching. Set ‘score’ the overall efficacy of a search strategy yourself an objective and identify an endpoint that qualifies whether or not you have achieved • Know something about your subject area your goal before you decide on the operational parameters of your search; consider the • Ensure you have access to an appropriate coverage history in the literature, controversies, search engine as different databases will specialist journals, sub categories, etc.
    [Show full text]