cite
and papercite
Plugins," in Code Magus Limited, 2015-08-02, http://www.codemagus.com/2015/08/02/citations-in-a-wordpress-post/.The above cite entry and link entry was generated using the cite
-plugin as:
[cite]
Citations using bibtex
bibliography files can be generated using the papercite
-plugin.
Introduce the bibliography file as:
[bibshow file=<file-name>]
Wherever a citation is required, use the following:
[bibcite key=<key-value>]
And then where you need to place the corresponding bibliography entries, us:
[/bibshow]
This is illustraed in the following, where I have used external.bib
as the bibtex
file. If I want to mention something about X.25 [1] or anything about X.28 [2], I would leave a reference to the corresponding ITU-T documentation for the reader.
Uncited bibliography entries could also be included, by, for example, referring to the bibtex
file as well as the key entry as in the following
[bibtex file=external.bib key=r-citation]
Cited bibliography entries:
[Bibtex]
@misc{x25,
author = {{International Telecommunication Union}},
howpublished = {ITU-T Recommendation X.25},
title = "{Interface between Data Terminal Equipment (DTE) and Data
Circuit-terminating Equipment (DCE) for terminals operating in the
packet mode and connected to public data networks by dedicated circuits}",
year = 1996,
month = oct,
key = 2015,
}
[Bibtex]
@misc{x28,
author = {{International Telecommunication Union}},
howpublished = {ITU-T Recommendation X.28},
title = "{DTE/DCE interface for start-stop mode data terminal equipment
accessing the Packet Assembly/Disassembly facility (PAD) in a
public data network situated in the same country}",
year = 1997,
month = dec,
key = 2016,
}
Uncited bibliography entry:
- R Core Team, “R: A Language and Environment for Statistical Computing,” , 2014.
[Bibtex]@Manual{r-citation, title = "{R: A Language and Environment for Statistical Computing}", author = {{R Core Team}}, organization = {R Foundation for Statistical Computing}, address = {Vienna, Austria}, year = {2014}, url = {http://www.R-project.org/}, key = 2018, }