LaTeX

From Fluids Wiki
Revision as of 10:51, 17 October 2018 by Bastorer (talk | contribs) (Created page with " Some general resources are: * [https://www.overleaf.com/learn/latex/Main_Page The Overleaf documention] has some user-friendly LaTeX documentation that also helps you get sta...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Some general resources are:

Removing URLs etc. from Bibliography

If you maintain your .bib file through Mendeley or some other program, you may find that when you call cite,citep,citet that the bibliography contains all sorts of unwanted content, such as lengthy URLs. One option to remove these is to remove all of the URLs from your .bib file, but that can be cumbersome (particularly if you maintain a large .bib).

Another option to remove these is to modify the appropriate .bst file to ignore them. For example, if you use natbib (a popular and very nice package for bibliographies) with the style plainnat, then you would need to modify plainnat.bst (can be locate on a nix machine by calling locate plainnat.bst).

Within the .bst file, you'll find sections that look like:

FUNCTION {format.url}
{ url empty$
    { "" }
    { new.block "URL \url{" url * "}" * }
  if$
}

Replace the highlighted line with { "" } to set it to ignore URLs by default.