This is a collection of tools useful for working with BibTex, the bibliography program associated with LaTeX.
mq 3525846This creates several files in my home directory:
@article{Schneider.Ehrenfeucht1986,
author = "T. D. Schneider
and G. D. Stormo
and L. Gold
and A. Ehrenfeucht",
title = "{Information content of binding sites on nucleotide sequences}",
journal = "J Mol Biol",
volume = "188",
pages = "415--431",
pmid = "3525846",
pmcid = "\todobf{MISSING}",
note = "\htmladdnormallink
{https://doi.org/10.1016/0022-2836(86)90165-8}
{https://doi.org/10.1016/0022-2836(86)90165-8}",
comment = "2021/06/13 15:01:23 ",
year = "1986"}
% bold face around text with todo mark \todobf{text}
\newcommand{\todobf}[1]{{\rule{0.5em}{1ex}\textbf{ #1}}}
See further down this page for more about todobf.
PubMed Central (PMC) is the NIH digital archive of full-text, peer-reviewed journal articles. Its content is publicly accessible and integrated with other databases." "Include the PMC number (PMCID) for applicable articles in applications, proposals and reports."
I have built two tools (tcsh scripts) to make conversion easier. These scripts should work on any Unix system. They rely on wget.
A bst bibliography that uses the PMCID is nci.bst which can be used in association with nci.sty. Together they make references that look like this:
[183] Clark, S. J., Harrison, J., Paul, C. L., and Frommer, M.: High sensitivity mapping of methylated cytosines. Nucleic Acids Res. 22: 2990-2997, PMC310266, 1994.
as of 2014 Sep 30
% Mark Things To Do
\newcommand{\todo}{\rule{0.5em}{1ex}}
This creates a small black rectangle
❚
on the page which is easy to spot.
If a page doesn't have any of these, the page is done!
% bold face around text with todo mark \todobf{text}
\newcommand{\todobf}[1]{{\rule{0.5em}{1ex}\textbf{ #1}}}
which I use as:
\todobf{something I don't want to forget to do.}
It looks like this:
❚ something I don't want to forget to do.
\todobf{\cite{Shannon1949} is a great paper to read!}
It looks like this:
❚ [Shannon1949] is a great paper to read!
\todobf{\cite{Student.Mentor2014}}
reading .
and VOILA! The paper is on my iPad ready to read!
\usepackage{hyperref}
Then define new commands:
\newcommand{\pdf}[1]{\href{run:./pdf/#1.pdf}{\textcolor{blue}{\underline{#1}}}}
\newcommand{\pdfdone}[1]{\href{run:./pdf/#1.pdf}{\textcolor{black}{\underline{#1}}}
I use \pdf{} alongside \cite{} inside \todobf{}:
\todobf{\cite{Shannon1949}\pdf{Shannon1949} is a great paper to read!}
It looks like this:
❚ [Shannon1949] [Shannon1949] is a great paper to read!The result is a hyperlink inside the LaTeX document that pops up the pdf of the reference!
as of 2014 Sep 30
\usepackage{hyperref}
@article{Doob1942,
author = "J. L. Doob",
title = "{The Brownian Movement and Stochastic Equations}",
journal = "Annals of Mathematics",
volume = "43",
pages = "351--369",
note = "\htmladdnormallink
{http://www.jstor.org/stable/1968873}
{http://www.jstor.org/stable/1968873}",
comment = "2014/09/18_13:06:18 from Kozak.Wiens2010 via
http://en.wikipedia.org/wiki/Ornstein\%E2\%80\%93Uhlenbeck\_process
see: Gillespie1996b",
year = "1942"}
This makes the jstor link active in your references.
Schneider Lab
origin: 2008 Mar 25
updated: 2021 Jun 13