From 7d9d2e08fcab92adcc759e3f1e4bb0a15a63f220 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Sun, 26 Apr 2020 03:02:41 +0000 Subject: CTAN sync 202004260302 --- .../biblatex-contrib/biblatex-software/sample.tex | 78 ++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 macros/latex/contrib/biblatex-contrib/biblatex-software/sample.tex (limited to 'macros/latex/contrib/biblatex-contrib/biblatex-software/sample.tex') diff --git a/macros/latex/contrib/biblatex-contrib/biblatex-software/sample.tex b/macros/latex/contrib/biblatex-contrib/biblatex-software/sample.tex new file mode 100644 index 0000000000..bb4ba7fdfb --- /dev/null +++ b/macros/latex/contrib/biblatex-contrib/biblatex-software/sample.tex @@ -0,0 +1,78 @@ +\documentclass[10pt]{article} +\usepackage{a4wide} +\usepackage{hyperref} +\usepackage[ + style=numeric+sw, % numeric bibliography style with software + halid=true, % toggle typesetting of halid + swhid=true, % toggle typesetting of swhid + vcs=true, % toggle typesetting of repository + license=true, % toggle typesetting of software licenses + swlabels=true, % toggle typesetting of software type labels in the bibliography + abbreviate=false, + natbib=true, + sorting=ydnt, + backend=biber, + bibencoding=utf8, + giveninits=true, + url=false, + doi=false, + defernumbers, + maxcitenames=10, + defernumbers=true, + maxbibnames=100]{biblatex} + +% +% Make title an hyperlink to the DOI or URL to make the result leaner (suggested by N. Rougier 4/4/2020) +% + +\newcommand{\doiorurl}{% + \iffieldundef{doi} + {\iffieldundef{url} + {} + {\strfield{url}}} + {http://dx.doi.org/\strfield{doi}}% +} +\newcommand{\myhref}[1]{% + \ifboolexpr{% + test {\ifhyperref} + and + not test {\iftoggle{bbx:url}} + and + not test {\iftoggle{bbx:doi}} + } + {\href{\doiorurl}{#1}} + {#1}% +} +\DeclareFieldFormat{title}{\myhref{\mkbibemph{#1}}} +\DeclareFieldFormat + [article,inbook,incollection,inproceedings,patent,thesis,unpublished] + {title}{\myhref{\mkbibquote{#1\isdot}}} + + +\addbibresource{biblio.bib} +\addbibresource{manual.bib} +\author{Inria Software Citation Working Group} +\date{\today} +\title{Test document for software entries} +\begin{document} + +\maketitle + +This is how the proposed entries are rendered with the standard BibLaTeX style +extended with the \texttt{software} module. + +\begin{itemize} +\item software entry CGAL \cite{cgal} and Scilab \cite{delebecque:hal-02090402} +\item softwareversion entry CGAL 5.0.2 \cite{cgal:5-0-2} +\item softwareversion Scilab 1.1.1 : from the chain of crossrefs \cite{delebecque:hal-02090402v1}, and from the condensed bibtem \cite{delebecque:hal-02090402-condensed} (they should be identical) +\item softwaremodule entry Voronoi: from the chain of crossrefs \cite{cgal:lp-gi-20a}, and the from the condensed bibtem \cite{cgal:lp-gi-20a-condensed} (they should be identical) +\item software entry Parmap \cite{parmap} +\item codefragment entry simplemapper \cite{simplemapper} +\item documentation in a software entry \cite{scilabdoc} +\end{itemize} + +\printbibheading +\printbibliography[heading=subbibliography,type=software,title={Software Projects}] +\printbibliography[heading=subbibliography,nottype=software,title={Software versions, modules, excerpts and manuals}] + +\end{document} -- cgit v1.2.3