| meta_google_scholar {metathis} | R Documentation |
Add Google Scholar Metadata
Description
Add bibliographic metadata to pages in the format expected by Google
Scholar. Please reference the
Google Scholar Inclusion
page for the most up-to-date information and instructions. Note that this
function adds the citation_ prefix to all of its arguments; the title
argument becomes the citation_title <meta> tag.
Usage
meta_google_scholar(
.meta = meta(),
title,
author,
publication_date,
online_date = NULL,
journal_title = NULL,
conference_title = NULL,
volume = NULL,
issue = NULL,
firstpage = NULL,
lastpage = NULL,
pdf_url = NULL,
issn = NULL,
isbn = NULL,
dissertation_institution = NULL,
technical_report_institution = NULL,
technical_report_number = NULL
)
Arguments
.meta |
A |
title |
The title of the paper. The title tag must contain the title of the paper. Don't use it for the title of the journal or a book in which the paper was published, or for the name of your repository. This tag is required for inclusion in Google Scholar. |
author |
A vector of author names. The |
publication_date, online_date |
The date the paper was published in the
journal ( The |
journal_title, conference_title, issn, isbn, volume, issue, firstpage, lastpage |
For journal and conference papers, provide the remaining bibliographic
citation data in the following tags: |
pdf_url |
The |
dissertation_institution, technical_report_institution, technical_report_number |
For theses, dissertations, and technical reports, provide the remaining
bibliographic citation data in the following tags:
|
Value
A meta object, or a set of <meta> HTML tags inside an HTML
<head> tag. For use in rmarkdown::html_document(), shiny::runApp(),
or other HTML locations.
References
https://scholar.google.com/intl/en/scholar/inclusion.html#indexing
See Also
Other meta:
meta_apple_itunes_app(),
meta_apple_web_app(),
meta_general(),
meta_geo(),
meta_name(),
meta_social(),
meta_tag(),
meta_viewport(),
meta()
Examples
meta_google_scholar(
title = c(
"The testis isoform of the phosphorylase kinase catalytic subunit (PhK-T)",
"plays a critical role in regulation of glycogen mobilization in developing lung"
),
author = c(
"Liu, Li",
"Rannels, Stephen R.",
"Falconieri, Mary",
"Phillips, Karen S.",
"Wolpert, Ellen B.",
"Weaver, Timothy E."
),
publication_date = "1996/05/17",
journal_title = "Journal of Biological Chemistry",
volume = 271,
issue = 20,
firstpage = 11761,
lastpage = 11766,
pdf_url = "http://www.example.com/content/271/20/11761.full.pdf"
)