Trying to get that backslash
This file contains 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
\RequirePackage{filecontents} | |
\begin{filecontents*}{\jobname.bib} | |
@online{zotero-1855286-1414, | |
title = {Faster \symbol{`\\} unfolding{} of communities: speeding up the Louvain algorithm}, | |
url = {http://www.patanalyse.com/sample-analysis.html} | |
} | |
\end{filecontents*} | |
\documentclass{article} | |
\usepackage[% | |
% backend=bibtex % use BibTeX | |
backend=biber % Use biber | |
]{biblatex} | |
\addbibresource{\jobname.bib} | |
\begin{document} | |
\symbol{`\\} | |
\nocite{*} | |
\printbibliography | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment