-
-
Save PJK/d723806cadceb8dc7f61 to your computer and use it in GitHub Desktop.
Latex citations with URL dates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@online{am_serializers, | |
title="ActiveModel::Serializers", | |
author={{Rails core team}}, | |
url="https://github.com/rails-api/active_model_serializers", | |
urldate={2015-04-25} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(NAME).bbl: $(BIB) $(NAME).tex | |
pdflatex -shell-escape $(PDFL_FLAGS) $(NAME) | |
biber $(NAME) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{url} | |
\usepackage[style=alphabetic]{biblatex} | |
\linespread{1.15} | |
\setlength{\parskip}{0.7pt} | |
%% \bibliography{<mybibfile>}% ONLY selects .bib file; syntax for version <= 1.1b | |
\addbibresource[]{literature.bib}% Syntax for version >= 1.2 | |
\addbibresource[]{rfc.bib} | |
\addbibresource[]{reilly.bib} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment