Package knitcitations

Size: px
Start display at page:

Download "Package knitcitations"

Transcription

1 Package knitcitations March 18, 2013 Type Package Title Citations for knitr markdown files Version knitcitations provides the ability to create dynamic citations in which the bibliographic information is pulled from the web rather than having to be entered into a local database such as bibtex ahead of time. Knitcitations is primarily aimed at authoring in the R markdown format, and can provide outputs for web-based authoring such as linked text and tooltips over inline citations. Cite using a DOI, URL, or bibtex file key. See the package URL for details. URL Depends R (>= ), knitr, bibtex Imports xtable, RCurl, XML, httr Suggests testthat License CC0 Collate functiontable.r bibliography.r formatref.r ref.r cite.r create_bibkey.r citep.r citet.r read.bibtex.r write.b Author Carl Boettiger [aut, cre] Maintainer Carl Boettiger <cboettig@gmail.com> NeedsCompilation no Repository CRAN Date/Publication :26:33 1

2 2 authoryear_p R topics documented: authoryear_p authoryear_t bibliography cite citep citet cite_options cleanbib format_authoryear_p format_authoryear_t functiontable greycite newbib numeral read.bibtex ref write.bibtex write_cache Index 14 authoryear_p format the author and year This is just a utility function that calls format_authoryear_p, which does the actual formating at the time the citation is added to the data. This provides a separate API for the function that simply returns the formatted text, from the function that does the formatting (which may change, or may have more flavors, etc). authoryear_p(entry, format_inline_fn = format_authoryear_p) entry a bibentry format_inline_fn the function that actually creates the inline format for a single entry the author-year citation

3 authoryear_t 3 authoryear_t format the author and year format the author and year authoryear_t(entry, format_inline_fn = format_authoryear_t) entry a bibentry format_inline_fn the function that actually creates the inline format for a single entry the author-year citation bibliography Generate the bibliography Generate the bibliography bibliography(style = "markdown",.bibstyle = "JSS", ordering = c("authors", "year", "title", "journal", "volume", "number", "pages", "doi", "url"), sort = FALSE, bibtex = get("bibtex_data", envir = knitcitations_options),...) style ordering formatting style to print bibliography (default is plain text). Can be text, bibtex, html, textversion, R, citation, or other formats defined forthe print bibentry class, see?print.bibentry for details. a character list of the order in which information should be printed (e.g. c("author", "year", "title", "journal", "volume", "number", "pages", "doi", "uri")) see details. Works only for rdfa and markdown formats at the moment. Other styles are formatted according to the bibstyle method, see for more information.

4 4 cite sort bibtex.bibstyle logical indicating if bibliography should be sorted alphabetically, defaults to FALSE logical, use bibtex data structure internally? (internal option only) the bibstyle function call or string. Defaults to journal of statistical software (JSS). See bibstyle.... additional arguments passed to print.bibentry, see bibentry The markdown and rdfa print formats can take the argument ordering. A character string provides the order in which elements should be returned. Elements not specified are omitted from the return entirely. Even if both DOI or URI (usually the URL) are given, method will return the URL only if the DOI is absent/unavailable. a list of bibentries, providing a bibliography of what s been cited Examples citet(citation("knitr")) bibliography() ## use markdown formatting, show only author, year, and url bibliography("markdown", ordering = c("authors", "year", "url")) ## Repeat citations do not create duplicates: bib <- c(citation("knitr"), citation("knitr"), citation("bibtex"), citation("bibtex"), citation("knitr"), citat citep(bib) bibliography() cite Add a citation (internal for citet and citep) Add a citation (internal for citet and citep) cite(x, bibtex = get("bibtex_data", envir = knitcitations_options), format_inline_fn = format_authoryear_p)

5 citep 5 x a doi or list of dois, or a bibentry (or list of bibentries) bibtex internal logical indicating if we use a cache or external bibtex file format_inline_fn a function which will create the inline citation format (stored with the entry to avoid non-unique citation styles, e.g. Boettiger 2012a, Boettiger 2012b.) Stores the full citation in a "works_cited" list, which can be printed with bibliography a parenthetical inline citation Examples citep(" / ") citep Add a paranthetical citation Add a paranthetical citation x citep(x,..., format_inline_fn = format_authoryear_p, inline_format = authoryear_p) a doi or list of dois, or a bibentry (or list of bibentries) inline_format a function for formating the inline citation, defaults to authoryear_t format_inline_fn function to format a single inline citation... additional arguments passed to citet, see citet for details Stores the full citation in a "works_cited" list, which can be printed with bibliography A variety of reasons for the citation can be provided following the CiTO ontology: c("cites","citesasauthority", "citesasmetadatadocument", "citesassourcedocument","citesforinformation", "iscitedby","obtainsbackgroundfrom", "sharesauthorswith", "usesdatafrom", "usesmethodin", "confirms", "credits", "extends", "obtainssupportfrom", "supports", "updates", "corrects", "critiques", "disagreeswith", "qualifies", "refutes", "discusses", "reviews")

6 6 citet a parenthetical inline citation Examples library(knitcitations) citep(" / ") ## Read in the bibtex information for some packages: knitr <- citation("knitr") knitcitations <- citation("knitcitations") # generate the parentetical citation for these: citep(list(knitr,knitcitations)) # generate the full bibliography: bibliography() ## Assign a citation key to a doi and then use it later: citep(c(halpern2006=" /j x")) citep("halpern2006") citet Add a textual citation Parameters listed here are the same for parenthetical citation, citep. x cito citet(x, cito = NULL, tooltip = get("tooltip", envir = knitcitations_options), linked = get("linked", envir = knitcitations_options), numerical = get("numerical", envir = knitcitations_options), format_inline_fn = format_authoryear_t, inline_format = authoryear_t) tooltip linked a doi or list of dois, or a bibentry (or list of bibentries) Semantic reason for the citation. Only active if linked=true Show a citation information on mouseover. Requires the tooltip javascript from Pass logical TRUE/FALSE or set default behavior with cite_options link the inline citation text to the resource by doi (if available) or url? Pass logical TRUE/FALSE or set default behavior with cite_options numerical use citation instead of author-year format? (Not functional yet!) Pass logical TRUE/FALSE or set default behavior with cite_options format_inline_fn function to format a single inline citation

7 cite_options 7 inline_format a function for formating the inline citation, defaults to authoryear_t (designed for internal use only) Stores the full citation in a "works_cited" list, which can be printed with bibliography. A variety of reasons for the citation can be provided following the CiTO ontology: c("cites","citesasauthority", "citesasmetadatadocument", "citesassourcedocument","citesforinformation", "iscitedby","obtainsbackgroundfrom", "sharesauthorswith", "usesdatafrom", "usesmethodin", "confirms", "credits", "extends", "obtainssupportfrom", "supports", "updates", "corrects", "critiques", "disagreeswith", "qualifies", "refutes", "discusses", "reviews") a text inline citation Examples library(knitcitations) citet(" / ") ## Read in the bibtex information for some packages: knitr <- citation("knitr") citet(knitr) # generate the full bibliography: bibliography() ## Assign a citation key to a doi and then use it later: citet(c(halpern2006=" /j x")) citet("halpern2006") cite_options Toggles for various citation options Toggles for various citation options cite_options(tooltip = FALSE, linked = TRUE, numerical = FALSE, bibtex_data = FALSE) tooltip linked numerical bibtex_data Provide a javascript tooltip over the in-line citation? (requires twitter-bootstrap tooltip JS, see details). Add an HTML link around the in-line citation? Use numerical instead of author-year format citations? whether we should write to a bibtex file instead of the knitcitationscache environment for tracking bibliographic information of what we have already cited.

8 8 format_authoryear_p updates the option specified for the duration of the session. cleanbib Erase existing list of works cited Erase existing list of works cited cleanbib(bibtex = get("bibtex_data", envir = knitcitations_options)) bibtex logical, internal use parameter only. simply overwrites knitcitations.bib in bibtex data logging mode. (which means bibtex is used for internal data; not that the input data comes from bibtex. Input data can come from any source, bibtex or DOI, as shown in the documentation). format_authoryear_p format the author and year parenthetically This formats a single entry, though adjusted by author. This function is passed down to cite by citep, wher it creates the actuall formatting on the first use. format_authoryear_p(entry, char = "") entry char a bibentry a character to append to the citation (to disambiguate). This is handled automatically by the cite function. the author-year citation

9 format_authoryear_t 9 format_authoryear_t format the author and year This formats a single entry, though adjusted by author. This function is passed down to cite by citet, wher it creates the actuall formatting on the first use. format_authoryear_t(entry, char = "") entry char a bibentry a character to append to the citation (to disambiguate). This is handled automatically by the cite function. the author-year citation functiontable a table of functions in a package This function takes a package name an generates a two-column table with the names of each function in the package and the short description from the help documentation. pkg functiontable(pkg,...) a string specifying the name of a package,... additional arguments to xtable useful for Sweave/knit manuals specifying a table of functions Note that xtable format can also be set with options(xtable.type="latex") or options(xtable.type="html"). This function modified from DWin s solution on StackOverflow.com,

10 10 newbib the output of xtable (as html, or specify type="latex") Examples functiontable("xtable") greycite greycite citation method Grab citation data using the greycite API greycite(url, format = c("bib", "json")) url format the website URL have greycite return data in bib (bibtex) or json format? a bibentry class object newbib Erase existing list of works cited Erase existing list of works cited newbib(bibtex = get("bibtex_data", envir = knitcitations_options)) bibtex logical, internal use parameter only. simply overwrites knitcitations.bib in bibtex data logging mode. (which means bibtex is used for internal data; not that the input data comes from bibtex. Input data can come from any source, bibtex or DOI, as shown in the documentation).

11 numeral 11 numeral Formatting for numeric inline citations. Needs testing. Formatting for numeric inline citations. Needs testing. numeral(entry) entry a bibentry object, e.g. from cite read.bibtex read in bibtex and use key as list names read in bibtex and use key as list names read.bibtex(bibfile) bibfile a bibtex.bib file this differs from read.bib in that the list is named. this allows one to use citep(bib[c("key1", "key2")] a list of citation information See Also read.bib citep citet

12 12 write.bibtex ref Lookup article info via CrossRef with DOI. Lookup article info via CrossRef with DOI. doi ref(doi, title = FALSE, url = " key = "cboettig@gmail.com",..., curl = getcurlhandle()) title url key digital object identifier for an article in PLoS Journals return the title of the paper or not (defaults to FALSE) the PLoS API url for the function (should be left to default) your PLoS API key, either enter, or loads from.rprofile... optional additional curl options (debugging tools mostly) curl If using in a loop, call getcurlhandle() first and pass the returned value in here (avoids unnecessary footprint) Metadata from DOI in R s bibentry format. Examples ref(" / ") print(ref(" / "), style="bibtex") print(ref(" / "), style="text") write.bibtex write a bibtex file write a bibtex file write.bibtex(entry, file = "knitcitations.bib", append = FALSE, verbose = TRUE, create_key = TRUE)

13 write_cache 13 entry file append verbose create_key a bibentry object, list of bibentry objects, or a character vector of package names output bibtex file. Will automatically append.bib if not added. if NULL will use stdout. a logical indicating that bibtex entries be added the the file. If FALSE (default), the file is overwritten. a logical to toggle verbosity. If file=null, verbosity is forced off. logical indicating whether function should create a bibtex citation key if the object doesn t have one. a list of citation information, invisibly The knitcitations package automatically extends the use of this function to be able to write bibtex files from a string of DOIs, making it valuable for purposes beyond the citation of packages. See Also read.bib citep citet Examples write.bibtex(c("yihui2013" = citation("knitr"), "Boettiger2013" = citation("knitcitations"), "TempleLang2012"=c bib <- read.bibtex("knitcitations.bib") write_cache write knitcitations data to a cache object instead of a file write knitcitations data to a cache object instead of a file write_cache(a_bibentry, bibtex = get("bibtex_data", envir = knitcitations_options)) a_bibentry bibtex a bibentry object, possibly already named with a key logical, use a bibtex file for the cache of cited works rather than an environment? writes the bibentry to the environment knitcitationscache, created by

14 Index authoryear_p, 2 authoryear_t, 3 bibentry, 4 bibliography, 3, 5, 7 bibstyle, 3, 4 cite, 4 cite_options, 6, 7 citep, 5, 6 citet, 5, 6 cleanbib, 8 format_authoryear_p, 8 format_authoryear_t, 9 functiontable, 9 greycite, 10 newbib, 10 numeral, 11 read.bibtex, 11 ref, 12 write.bibtex, 12 write_cache, 13 14

Package RSentiment. October 15, 2017

Package RSentiment. October 15, 2017 Type Package Title Analyse Sentiment of English Sentences Version 2.2.1 Imports plyr,stringr,opennlp,nlp Date 2017-10-15 Package RSentiment October 15, 2017 Author Subhasree Bose

More information

Writing Package Vignettes

Writing Package Vignettes Writing Package Vignettes Duncan Murdoch Department of Statistical and Actuarial Sciences University of Western Ontario November 29, 2013 1 of 21 Outline 1 Why Write Packages? 2 What are Vignettes? 3 Mechanics

More information

Package colorpatch. June 10, 2017

Package colorpatch. June 10, 2017 Type Package Package colorpatch June 10, 2017 Title Optimized Rendering of Fold Changes and Confidence s Shows color patches for encoding fold changes (e.g. log ratios) together with confidence values

More information

Package machina. October 7, 2016

Package machina. October 7, 2016 Type Package Package machina October 7, 2016 Title Machina Time Series Generation and Backtesting Version 0.1.6 Connects to and allows the creation of time series, and running backtests

More information

Package hcandersenr. January 20, 2019

Package hcandersenr. January 20, 2019 Type Package Title H.C. Andersens Fairy Tales Version 0.2.0 Package hcandersenr January 20, 2019 Texts for H.C. Andersens fairy tales, ready for text analysis. Fairy tales in German, Danish, English, Spanish

More information

Package schoenberg. June 26, 2018

Package schoenberg. June 26, 2018 Type Package Title Tools for 12-Tone Musical Composition Version 2.0.2 Date 2018-06-26 Author Jeffrey A. Dahlke Package schoenberg June 26, 2018 Maintainer Jeffrey A. Dahlke

More information

INTRODUCTION TO ENDNOTE

INTRODUCTION TO ENDNOTE INTRODUCTION TO ENDNOTE What is it? EndNote is a bibliographic management tool that allows you to gather, organize, cite, and share research sources. This guide describes the desktop program; a web version

More information

LMS301: Reference Management Software (Mendeley)

LMS301: Reference Management Software (Mendeley) LMS301: Reference Management Software (Mendeley) What is Mendeley? Mendeley is a reference manager allowing you to manage, read, share, annotate and cite your research papers. Installation Guide for Mendeley

More information

Introduction to Research Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras

Introduction to Research Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras Introduction to Research Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras Lecture 09 Literature Survey: Wrapping up (Refer Slide Time: 00:01) So this is the

More information

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC THOMSON SCIENTIFIC EndNote Web Quick Reference Card Web is a Web-based service designed to help students and researchers through the process of writing a research paper. ISI Web of Knowledge, EndNote,

More information

Introduction to Mendeley

Introduction to Mendeley Introduction to Mendeley What is Mendeley? Mendeley is a reference manager allowing you to manage, read, share, annotate and cite your research papers......and an academic collaboration network with 3

More information

Package painter. August 13, 2018

Package painter. August 13, 2018 Package painter August 13, 2018 Type Package Title Creation and Manipulation of Color Palettes Version 0.1.0 Functions for creating color palettes, visualizing palettes, modifying colors, and assigning

More information

Semantic annotation of publication entities using the SPAR (Semantic Publishing and Referencing) Ontologies

Semantic annotation of publication entities using the SPAR (Semantic Publishing and Referencing) Ontologies Beyond the PDF Workshop La Jolla 19 January 2011 Semantic annotation of publication entities using the SPAR (Semantic Publishing and Referencing) Ontologies David Shotton and Silvio Peroni Image Bioinformatics

More information

Enriching scientific citations to facilitate knowledge discovery

Enriching scientific citations to facilitate knowledge discovery STM Innovations Seminar 2010 Flows in Flux: how publishing technologies change the researcher's life 3 December 2010 Enriching scientific citations to facilitate knowledge discovery David Shotton Image

More information

DIGITAL MEASURES BIBTEX AND PUBMED IMPORT- MANUAL

DIGITAL MEASURES BIBTEX AND PUBMED IMPORT- MANUAL DIGITAL MEASURES BIBTEX AND PUBMED IMPORT- MANUAL SEQUENCE OF STEPS: IMPORTING PUBLICATIONS Your Publications BIBTEX EXPORT FROM GOOGLE SCHOLAR BIBTEX EXPORT FROM REFWORKS BIBTEX EXPORT FROM SCOPUS BIBTEX

More information

EasyBib Pro Quick How To Where students can create citations, compile their source notes, and create an outline.

EasyBib Pro Quick How To Where students can create citations, compile their source notes, and create an outline. EasyBib Pro Quick How To Where students can create citations, compile their source notes, and create an outline. Student Access Students should follow the link on the Stoney Creek Media Center web page

More information

All about Mendeley. University of Southampton 18 May mendeley.com. Michaela Kurschildgen, Customer Consultant Elsevier

All about Mendeley. University of Southampton 18 May mendeley.com. Michaela Kurschildgen, Customer Consultant Elsevier All about Mendeley. University of Southampton 18 May 2015 Michaela Kurschildgen, Customer Consultant Elsevier mendeley.com What is Mendeley? Mendeley is a reference manager allowing you to manage, read,

More information

Getting started with Mendeley

Getting started with Mendeley UNIVERSITY OF TWENTE. Getting started with Mendeley C.M.Gerritsen ITC faculty library https://www.itc.nl/library August, 2018 1 Table of Contents 1 Mendeley in not even 10 steps... 3 1.1 Go to www.mendeley.com

More information

Reference management software - EndNote. Presenters: Research Support Team Libraries, Research & Learning Resources

Reference management software - EndNote. Presenters: Research Support Team Libraries, Research & Learning Resources Reference management software - EndNote Presenters: Research Support Team Libraries, Research & Learning Resources 1 Learning Outcomes By the end of the session, we hope you will have: understood how Reference

More information

Citation, Ethics, Plagiarism

Citation, Ethics, Plagiarism Citation, Ethics, Plagiarism Citation Why, when and how to cite LaTeX and BibTeX Dos and don'ts Ethics and Plagiarism Reading: Eloquent Science Chapters 12 and 15 Why bother citing? Literature review (in

More information

biblatex-mla MLA Style Using Biblatex James Clawson 1 Version Note 1 2 Introduction 1

biblatex-mla MLA Style Using Biblatex James Clawson 1 Version Note 1 2 Introduction 1 biblatex-mla MLA Style Using Biblatex James Clawson biblatex-mla@konx.net Version 1.9 November 2, 2016 Contents 1 Version Note 1 2 Introduction 1 3 Use 2 3.1 Citation commands.... 2 3.2 Package Options......

More information

Introduction to Endnote X8 Handbook

Introduction to Endnote X8 Handbook Introduction to Endnote X8 Handbook 1 Contents 1. Introduction... 5 2. Working with EndNote libraries... 6 2.1 Starting EndNote... 6 2.2 Opening and creating libraries... 6 2.3 Backing up and compressing

More information

Reference sheet for natbib usage (Describing version 7.1 from 2003/06/06)

Reference sheet for natbib usage (Describing version 7.1 from 2003/06/06) Reference sheet for natbib usage (Describing version 7.1 from 2003/06/06) For a more detailed description of the natbib package, L A TEX the source file natbib.dtx. Overview The natbib package is a reimplementation

More information

Editing Your Reading List

Editing Your Reading List Editing Your Reading List Page Selecting where a new item will appear on your list 2 Assigning importance 3 Adding a book 4 Adding a journal article 5 Adding a book chapter 6 Adding AV material 6 Adding

More information

Supplementary Note. Supplementary Table 1. Coverage in patent families with a granted. all patent. Nature Biotechnology: doi: /nbt.

Supplementary Note. Supplementary Table 1. Coverage in patent families with a granted. all patent. Nature Biotechnology: doi: /nbt. Supplementary Note Of the 100 million patent documents residing in The Lens, there are 7.6 million patent documents that contain non patent literature citations as strings of free text. These strings have

More information

Introduction to EndNote X7

Introduction to EndNote X7 Introduction to EndNote X7 UCL Library Services, Gower St., London WC1E 6BT 020 7679 7793 E-mail: library@ucl.ac.uk Web www.ucl.ac.uk/library What is EndNote? EndNote is a reference management package

More information

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017 INTRODUCTION TO ENDNOTE X8 NTNU University Library, Medicine and Health Library January 2017 CONTENTS About EndNote... 4 Obtaining and Installing EndNote... 4 Guides... 4 Creating a New Library... 5 Making

More information

Introduction to Citation Management Software

Introduction to Citation Management Software Introduction to Citation Management Software Basil Marti Thüringer Universitäts- und Landesbibliothek Jena January 2014 1 Content 1. Why citation management? 2. Program selection 3. Market overview / Introduction

More information

TUGboat, Volume 37 (2016), No heading. category: collator: foreword:

TUGboat, Volume 37 (2016), No heading. category: collator: foreword: TUGboat, Volume 37 (2016), No. 1 67 1 Introduction For many years I have been collecting books. They are located in five rooms, as well as two bookcases in my printing and binding workshop. But recently

More information

Dead Links? No Problem. We re In This Together

Dead Links? No Problem. We re In This Together University of Kentucky UKnowledge Library Presentations University of Kentucky Libraries 5-30-2014 Dead Links? No Problem. We re In This Together Kathryn Lybarger University of Kentucky, kathryn.lybarger@uky.edu

More information

Staff User s Guide Course Reading and Reserves. Version 22

Staff User s Guide Course Reading and Reserves. Version 22 Staff User s Guide Course Reading and Reserves Version 22 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or abuse will result in economic

More information

How to Use Noodlebib to Create a JOURNAL Citation in MLA Style

How to Use Noodlebib to Create a JOURNAL Citation in MLA Style How to Use Noodlebib to Create a JOURNAL Citation in MLA Style Step 1: Locate a SCHOLARLY JOURNAL article in a subscription database Database = Expanded Academic ASAP. Boolean Advanced KEYWORD search =

More information

Package rasterimage. September 10, Index 5. Defines a color palette

Package rasterimage. September 10, Index 5. Defines a color palette Type Package Title An Improved Wrapper of Image() Version 0.3.0 Author Martin Seilmayer Package rasterimage September 10, 2016 Maintainer Martin Seilmayer Description This is a wrapper

More information

EndNote X6 with Word 2007

EndNote X6 with Word 2007 IOE Library Guide EndNote X6 with Word 2007 What is EndNote? EndNote is a bibliographic reference manager, which allows you to maintain a personal library of all your references to books, journal articles,

More information

Academic Identity: an Overview. Mr. P. Kannan, Scientist C (LS)

Academic Identity: an Overview. Mr. P. Kannan, Scientist C (LS) Article Academic Identity: an Overview Mr. P. Kannan, Scientist C (LS) Academic identity is quite popular in the recent years amongst researchers due to its usage in the research report system. It is essential

More information

Editing Reference Types & Styles: Macintosh. EndNote Support & Training October 2017

Editing Reference Types & Styles: Macintosh. EndNote Support & Training October 2017 Editing Reference Types & Styles: Macintosh EndNote Support & Training October 2017 EndNote X8 Editing Reference Types & Styles: Macintosh 1 October 18, 2017 Introduction One of the most powerful features

More information

Information literacy Masters engineering science

Information literacy Masters engineering science Information literacy Masters engineering science October 2017 Linda Stoop Content: 1. Where can I find information about how to write a thesis? 2. Search strategy. How do I use the correct keywords? 3.

More information

DRAFT UC VENDOR/SHARED CATALOGING STANDARDS FOR AUDIO RECORDINGS JUNE 4, 2013 EDIT

DRAFT UC VENDOR/SHARED CATALOGING STANDARDS FOR AUDIO RECORDINGS JUNE 4, 2013 EDIT DRAFT UC VENDOR/SHARED CATALOGING STANDARDS FOR AUDIO RECORDINGS JUNE 4, 2013 EDIT 1 This draft document represents the standards that would be used for consortial cataloging of audio recordings, whether

More information

Reference sheet for natbib usage (Describing version 8.0 from 2007/02/05)

Reference sheet for natbib usage (Describing version 8.0 from 2007/02/05) Reference sheet for natbib usage (Describing version 8.0 from 2007/02/05) For a more detailed description of the natbib package, L A TEX the source file natbib.dtx. Overview The natbib package is a reimplementation

More information

Writing scientific papers 10/8/07

Writing scientific papers 10/8/07 Writing scientific papers 10/8/07 Wilkins rules for writing a paper Do figures first. Iterate figures until they display main points. Do figure captions. Iterate until they tell main story of paper. Do

More information

***Please be aware that there are some issues of compatibility between all current versions of EndNote and macos Sierra (version 10.12).

***Please be aware that there are some issues of compatibility between all current versions of EndNote and macos Sierra (version 10.12). EndNote for Mac Note of caution: ***Please be aware that there are some issues of compatibility between all current versions of EndNote and macos Sierra (version 10.12). *** Sierra interferes with EndNote's

More information

Purdue Libraries Publishing Services: The Domino Effect of Repository-Based Publishing, Outreach, and Promotion

Purdue Libraries Publishing Services: The Domino Effect of Repository-Based Publishing, Outreach, and Promotion Purdue University Purdue e-pubs Libraries Faculty and Staff Presentations Purdue Libraries 8-3-2012 Purdue Libraries Publishing Services: The Domino Effect of Repository-Based Publishing, Outreach, and

More information

Package ForImp. R topics documented: February 19, Type Package. Title Imputation of Missing Values Through a Forward Imputation.

Package ForImp. R topics documented: February 19, Type Package. Title Imputation of Missing Values Through a Forward Imputation. Type Package Package ForImp February 19, 2015 Title Imputation of Missing s Through a Forward Imputation Algorithm Version 1.0.3 Date 2014-11-24 Author Alessandro Barbiero, Pier Alda Ferrari, Giancarlo

More information

Writing Research Essays:

Writing Research Essays: Writing Research Essays: A Workshop Series: Step 3 Presented by The Writing Center at Trident Technical College Step 3: MLA format and documentation Checklist for Step 3: Understanding MLA format Setting

More information

How to Use Noodlebib to Create a JOURNAL Citation in MLA Style

How to Use Noodlebib to Create a JOURNAL Citation in MLA Style How to Use Noodlebib to Create a JOURNAL Citation in MLA Style Step 1: Locate a SCHOLARLY JOURNAL article in a subscription database Database = Expanded Academic ASAP. Boolean Advanced KEYWORD search =

More information

Essential EndNote X7.

Essential EndNote X7. Essential EndNote X7 IT www.york.ac.uk/it-services/training it-training@york.ac.uk Essential EndNote X7 EndNote X7 is a desktop application, and as such must be installed. All University of York classroom

More information

Reference sheet for natbib usage (Describing version 8.31b from 2010/09/13)

Reference sheet for natbib usage (Describing version 8.31b from 2010/09/13) Reference sheet for natbib usage (Describing version 8.31b from 2010/09/13) For a more detailed description of the natbib package, L A TEX the source file natbib.dtx. Overview The natbib package is a reimplementation

More information

IST Get It + Document Delivery. User Guide

IST Get It + Document Delivery. User Guide IST Get It + Document Delivery User Guide Last Update: 20.11.2015 IST Get It is an institutional linking service providing a fast and convenient way to access documents licensed by IST Austria. This manual

More information

A GUIDE TO USING ENDNOTE

A GUIDE TO USING ENDNOTE 1 A GUIDE TO USING ENDNOTE Need help? Email citations.library@mcgill.ca Introducing EndNote EndNote is computer software that allows you to: save references from online searches; manually enter references;

More information

ICI JOURNALS MASTER LIST Detailed Report for 2017

ICI JOURNALS MASTER LIST Detailed Report for 2017 ICI JOURNALS MASTER LIST Detailed Report for 2017 ISSN: 2455-7099, 2349-6592 Electronic version: YES Print version: YES Branch of science: The area of medical and health science Index Copernicus Sp. z

More information

The Organization and description of the UNLV archives

The Organization and description of the UNLV archives Library Faculty Presentations Library Faculty/Staff Scholarship & Research 2007 The Organization and description of the UNLV archives Tom D. Sommer University of Nevada, Las Vegas, tsommer10@yahoo.com

More information

What s New in MLA Style? (Version 8) IU East Writing Center

What s New in MLA Style? (Version 8) IU East Writing Center 1 What s New in MLA Style? (Version 8) IU East Writing Center What s New in the Eighth Edition? The eighth edition of the MLA Handbook, published in April 2016, rethinks documentation for an era of digital

More information

Apa Format Electronic Source No Author Reference List

Apa Format Electronic Source No Author Reference List Apa Format Electronic Source No Author Reference List How do I cite a work that has no listed author in an APA-style paper? The APA Style Blog is a helpful source when it comes to citing websites with

More information

Chapter 3 sourcing InFoRMAtIon FoR YoUR thesis

Chapter 3 sourcing InFoRMAtIon FoR YoUR thesis Chapter 3 SOURCING INFORMATION FOR YOUR THESIS SOURCING INFORMATION FOR YOUR THESIS Mary Antonesa and Helen Fallon Introduction As stated in the previous chapter, in order to broaden your understanding

More information

EndNote X6: the basics (downloadable desktop version)

EndNote X6: the basics (downloadable desktop version) EndNote X6: the basics (downloadable desktop version) EndNote is a package for creating and storing a library of references (citations plus abstracts, notes etc) which can then be used in conjunction with

More information

ISO INTERNATIONAL STANDARD. Bibliographic references and source identifiers for terminology work

ISO INTERNATIONAL STANDARD. Bibliographic references and source identifiers for terminology work INTERNATIONAL STANDARD ISO 12615 First edition 2004-12-01 Bibliographic references and source identifiers for terminology work Références bibliographiques et indicatifs de source pour les travaux terminologiques

More information

EndNote for Windows. Take a class. Background. Getting Started. 1 of 17

EndNote for Windows. Take a class. Background. Getting Started. 1 of 17 EndNote for Windows Take a class The Galter Library teaches a related class called EndNote. See our Classes schedule for the next available offering. If this class is not on our upcoming schedule, it is

More information

OMA Device Management Server Delegation Protocol

OMA Device Management Server Delegation Protocol OMA Device Management Server Delegation Protocol Candidate Version 1.3 06 Mar 2012 Open Mobile Alliance OMA-TS-DM_Server_Delegation_Protocol-V1_3-20120306-C OMA-TS-DM_Server_Delegation_Protocol-V1_3-20120306-C

More information

Endnote Workbook with exercises

Endnote Workbook with exercises This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. EndNote is software which enables you to: Endnote Workbook with exercises Maintain a database (called a Library) of references

More information

Desktop. Basic use of EndNote. Important start info 3 tips p. 1. Entering references manually p. 3

Desktop. Basic use of EndNote. Important start info 3 tips p. 1. Entering references manually p. 3 Basic use of EndNote Desktop Important start info 3 tips p. 1 Entering references manually p. 3 Import references from databases / search engines p. 4 Check for duplicates p. 5 Using EndNote with Word

More information

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED...

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... EndNote X7 Tutor Led Manual v1.7 Table of Contents PREFACE... 1 I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... 1 EndNote Explained... 1 Opening the EndNote Program...

More information

Literature Management with EndNote

Literature Management with EndNote Stephanie Hofmann & Bobby Neuhold contact: info@lib4ri.ch Literature Management with EndNote * Screenshot www.endnote.com Stephanie Hofmann & Bobby Neuhold contact: info@lib4ri.ch Welcome Lib4RI Training

More information

Measuring Your Research Impact: Citation and Altmetrics Tools

Measuring Your Research Impact: Citation and Altmetrics Tools Measuring Your Research Impact: Citation and Altmetrics Tools Guide Information Last Updated: Guide URL: Description: Tags: RSS: Apr 10, 2014 http://uri.libguides.com/researchimpact Overview of tools that

More information

EndNote Online. Getting Started Guide (Windows)

EndNote Online. Getting Started Guide (Windows) EndNote Online Getting Started Guide (Windows) Volda University College, 2017 Table of Contents Registering and creating an account... 2 Downloading and installing the Cite While You Write EndNote Plug-In

More information

EndNote Essentials. EndNote Overview PC. KUMC Dykes Library

EndNote Essentials. EndNote Overview PC. KUMC Dykes Library EndNote Essentials EndNote Overview PC KUMC Dykes Library Table of Contents Uses, downloading and getting assistance... 4 Create an EndNote library... 5 Exporting citations/abstracts from databases and

More information

Mendeley. By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran

Mendeley. By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran In the Name of God Mendeley By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran What is Mendeley? Mendeley is a reference manager allowing

More information

administration access control A security feature that determines who can edit the configuration settings for a given Transmitter.

administration access control A security feature that determines who can edit the configuration settings for a given Transmitter. Castanet Glossary access control (on a Transmitter) Various means of controlling who can administer the Transmitter and which users can access channels on it. See administration access control, channel

More information

Introduction to EndNote

Introduction to EndNote Library Services Introduction to EndNote Part 2: Creating an EndNote Library Table of Contents: Part 2 2. CREATING AN ENDNOTE LIBRARY - 3-2.1. CREATING A NEW LIBRARY - 3-2.2. ENTERING NEW REFERENCES MANUALLY

More information

Writing Research Essays:

Writing Research Essays: Writing Research Essays: A Workshop Series: Part 1 Presented by The Writing Center at Trident Technical College Step 1: Getting Started Checklist for Step 1 Understand the writing assignment Choose a topic

More information

Introduction to Mendeley

Introduction to Mendeley Introduction to Mendeley part of the Researcher Unbound series The Reference Manager Team, NUS Libraries WORKSHOPS SCHEDULE See: j.mp/ru_about What is Mendeley? Free Academic Software Cross-Platform (Win/Mac/Linux/Mobile)

More information

USING THE WEB TO CHANGE EDITORIAL RESEARCH PRACTICE. Patrick Golden & Michael Buckland Pacific Neighborhood Consortium December 7, 2012

USING THE WEB TO CHANGE EDITORIAL RESEARCH PRACTICE. Patrick Golden & Michael Buckland Pacific Neighborhood Consortium December 7, 2012 USING THE WEB TO CHANGE EDITORIAL RESEARCH PRACTICE Patrick Golden & Michael Buckland December 7, 2012 Documentary editing Editors prepare collections of documents: letters, articles, diaries, essays,

More information

CRIS with in-text citations as interactive entities. Sergey Parinov CEMI RAS and RANEPA

CRIS with in-text citations as interactive entities. Sergey Parinov CEMI RAS and RANEPA CRIS with in-text citations as interactive entities Sergey Parinov CEMI RAS and RANEPA In-text citations as interactive elements, why? Location of mentioning Frequency of mentioning Style of mentioning

More information

EndNote Online Getting Started Workbook

EndNote Online Getting Started Workbook EndNote Online Getting Started Workbook This guide should get you started setting up an account with the online version of EndNote, downloading references from databases and creating bibliographies using

More information

The Reference Librarian Face-to-Face with Reference Management

The Reference Librarian Face-to-Face with Reference Management The Reference Librarian Face-to-Face with Reference Management Lenuța Ursachi Reference librarian Dunărea de Jos University of Galați E-mail lenuta.ursachi@ugal.ro This case study focuses on the trends

More information

48 TV Caller ID TV CALLER ID

48 TV Caller ID TV CALLER ID 48 TV Caller ID TV CALLER ID What is TV Caller ID? TV Caller ID is just like phone-based Caller ID, with the added benefit of being able to view Caller ID information on your TV screen before the phone

More information

EndNote X7 Getting Started. (adapted with permission from Thompson 2006)

EndNote X7 Getting Started. (adapted with permission from Thompson 2006) EndNote X7 Getting Started (adapted with permission from Thompson 2006) August 2013 Content 1. Introduction... 3 1.1 Finding Your Way Around EndNote... 3 2. Creating & Adding Records To Your EndNote Library...

More information

ENDNOTE X4. Service Desk Health Sciences Library Main Campus EndNote Contacts:

ENDNOTE X4. Service Desk Health Sciences Library Main Campus EndNote Contacts: ENDNOTE X4 Service Desk Health Sciences Library hslibr@ucalgary.ca 403-220-6855 Main Campus EndNote Contacts: Saundra Lipton lipton@ucalgary.ca 220-3793 Leslie Potter ljpotter@ucalgary.ca 220-3446 Health

More information

Final Exam Review Worksheet

Final Exam Review Worksheet Final Exam Review Worksheet Module 1 What is information literacy? What are the six ACRL standards for Information Literacy? f. Why should you use different formats of information? What are the two characteristics

More information

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc.

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc. Analyzing Modulated Signals with the V93000 Signal Analyzer Tool Joe Kelly, Verigy, Inc. Abstract The Signal Analyzer Tool contained within the SmarTest software on the V93000 is a versatile graphical

More information

EndNote X8. Research Smarter. Online Guide. Don t forget to download the ipad App

EndNote X8. Research Smarter. Online Guide. Don t forget to download the ipad App EndNote X8 Research Smarter. Online Guide Don t forget to download the ipad App EndNote online EndNote online is the online component of our popular EndNote reference management and bibliography-creation

More information

(web semantic) rdt describers, bibliometric lists can be constructed that distinguish, for example, between positive and negative citations.

(web semantic) rdt describers, bibliometric lists can be constructed that distinguish, for example, between positive and negative citations. HyperJournal HyperJournal is a software application that facilitates the administration of academic journals on the Web. Conceived for researchers in the Humanities and designed according to an intuitive

More information

The digital revolution and the future of scientific publishing or Why ERSA's journal REGION is open access

The digital revolution and the future of scientific publishing or Why ERSA's journal REGION is open access The digital revolution and the future of scientific publishing or Why ERSA's journal REGION is open access Gunther Maier REGION the journal of ERSA Tim Berners-Lee and the World Wide Web March 1989 proposal

More information

Instructions to Authors

Instructions to Authors The instructions to authors is divided in three sections Current Agriculture Research Journal Instructions to Authors Pre Submission information Authors are advised to read these policies How to prepare

More information

Inventory Software Trials

Inventory Software Trials University of Kentucky UKnowledge Library Presentations University of Kentucky Libraries 9-2011 Inventory Software Trials Kathryn Lybarger University of Kentucky, kathryn.lybarger@uky.edu Julene L. Jones

More information

APA Research Paper Chapter 2 Supplement

APA Research Paper Chapter 2 Supplement Microsoft Office Word 00 Appendix D APA Research Paper Chapter Supplement Project Research Paper Based on APA Documentation Style As described in Chapter, two popular documentation styles for research

More information

Book Indexes p. 49 Citation Indexes p. 49 Classified Indexes p. 51 Coordinate Indexes p. 51 Cumulative Indexes p. 51 Faceted Indexes p.

Book Indexes p. 49 Citation Indexes p. 49 Classified Indexes p. 51 Coordinate Indexes p. 51 Cumulative Indexes p. 51 Faceted Indexes p. Preface Introduction p. 1 Making an Index p. 1 The Need for Indexes p. 2 The Nature of Indexes p. 4 Makers of Indexes p. 5 A Brief Historical Perspective p. 6 A Note to the Neophyte Indexer p. 9 p. xiii

More information

USING THE AUSTRALIAN GUIDE TO LEGAL CITATION (3rd edition) WITH ENDNOTE X6 or ENDNOTE X7

USING THE AUSTRALIAN GUIDE TO LEGAL CITATION (3rd edition) WITH ENDNOTE X6 or ENDNOTE X7 USING THE AUSTRALIAN GUIDE TO LEGAL CITATION (3rd edition) WITH ENDNOTE X6 or ENDNOTE X7 Date: 7 Sep. 2016 CONTENTS 1. Introduction 1.1 About this Guide 1.2 Terminology 1.3 Downloading the Output Style

More information

Suggestor.step.scopus.com/suggestTitle.cfm 1

Suggestor.step.scopus.com/suggestTitle.cfm 1 Suggestor.step.scopus.com/suggestTitle.cfm 1 Please read carefully before completing this form Help Please check the Scopus title list to determine whether the title you wish to suggest is already in Scopus.

More information

Introduction to EndNote Desktop

Introduction to EndNote Desktop Introduction to EndNote Desktop These notes have been prepared to assist participants in EndNote classes run by the Federation University Library. Examples have been developed using Windows 8.1 (Enterprise)

More information

Today s WorldCat: New Uses, New Data

Today s WorldCat: New Uses, New Data OCLC Member Services October 21, 2011 Today s WorldCat: New Uses, New Data Ted Fons Executive Director, Data Services & WorldCat Quality Good Practices for Great Outcomes: Cataloging Efficiencies that

More information

Directions: Please complete study guide in preparation for Semester 1 Final Exam.

Directions: Please complete study guide in preparation for Semester 1 Final Exam. 1 NAME: DATE: Period: Directions: Please complete study guide in preparation for Semester 1 Final Exam. I. Elements of Literature and Figurative Language Complete terms chart by providing the definition

More information

^a Place of publication: e.g. Rome (Italy) ; Oxford (UK) ^b Publisher: e.g. FAO ; Fishing News Books

^a Place of publication: e.g. Rome (Italy) ; Oxford (UK) ^b Publisher: e.g. FAO ; Fishing News Books IMPRINT field Complete this field when the Imprint information is contained in the document. The Imprint provides information about the Publisher of the document (the place of publication and the name

More information

EndNote X6 Basics. Health Sciences Library System University of Pittsburgh

EndNote X6 Basics. Health Sciences Library System University of Pittsburgh EndNote X6 Basics Health Sciences Library System University of Pittsburgh Instructors Linda M. Hartman, MLS/lhartman@pitt.edu Andrea Ketchum, MLIS / ketchum@pitt.edu Melissa Ratajeski, MLIS, RLAT / mar@pitt.edu

More information

EndNote Tutorial Handout Table of Contents

EndNote Tutorial Handout Table of Contents EndNote Tutorial Handout Table of Contents What is EndNote?... 2 Getting Started... 2 Create a New Library... 2 EndNote Interface... 3 Set the Reference Style... 4 Adding References to Your Library...

More information

The following example shows creating an instance of the Files View, name FILES, version view called "MyFiles".

The following example shows creating an instance of the Files View, name FILES, version view called MyFiles. View API This section describes basic usage of the View REST API. Browse https://github.com/apache/ambari/blob/trunk/ambari-views/docs/index.md for detailed usage information and examples. Get List of

More information

Assignment 6: Essay Sample

Assignment 6: Essay Sample Assignment 6: Essay Sample Jean Macnish 10/20/2016 TABLE OF CONTENTS APA Style Sample... 1 Overview... 1 Discussion... 1 Examples... 2 Format... 2 Summary... 3 References... 4 Graduation APA Style Sample

More information

WORKING NOTES AS AN. Michael Buckland, School of Information, UC Berkeley Andrew Hyslop, California State Archives. April 13, 2013

WORKING NOTES AS AN. Michael Buckland, School of Information, UC Berkeley Andrew Hyslop, California State Archives. April 13, 2013 WORKING NOTES AS AN ARCHIVAL CHALLENGE Michael Buckland, School of Information, UC Berkeley Patrick Golden, School of Information, UC Berkeley Andrew Hyslop, California State Archives S i t f C lif i A

More information

Positive Attendance. Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work?

Positive Attendance. Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work? Positive Attendance Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work? Setup Security Codes Absence Types Absence Reasons Attendance Periods/Bell

More information

APA STYLE GUIDE FOR BIBLIOGRAPHICAL CITATIONS

APA STYLE GUIDE FOR BIBLIOGRAPHICAL CITATIONS American School of Valencia Library APA STYLE GUIDE FOR BIBLIOGRAPHICAL CITATIONS Used primarily for: Psychology, business, engineering, social sciences. Some general things to know: To begin with, the

More information

The Open University s repository of research publications and other research outputs

The Open University s repository of research publications and other research outputs Open Research Online The Open University s repository of research publications and other research outputs Linked open data Conference Item How to cite: King, David (2013). Linked open data. In: Bibliographies

More information