1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
%% This is file `biblatex-cse-doc.tex',
%%
%% Copyright (C) 2024 by João Lourenço <joao.lourenco@fct.unl.pt>
%%
%% This file may be distributed and/or modified under the conditions of
%% the LaTeX Project Public License, either version 1.3c of this license
%% or (at your option) any later version. The latest version of this
%% license is in:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% and version 1.3c or later is part of all distributions of LaTeX
%% version 2006/05/20 or later.
%%
\documentclass[
a4paper, % paper size.
11pt, % type size.
]{article}
% Enable hyperlinking/hypertext and PDF metadata
\usepackage[style=biblatex-cse]{biblatex}
\addbibresource{bibliography.bib}
\usepackage[colorlinks=true,allcolors=blue]{hyperref}
\newcommand{\novathesis}{\texttt{novathesis}}
\newcommand{\nauthors}[1]{#1 authors: }
\title{The Council of Science Editors (\textsf{\filename}) Bib\LaTeX\ style}
\author{João M. Lourenço $<$\texttt{joao.lourenco@fct.unl.pt}$>$}
\date{\filedate\ (v\fileversion)}
\begin{document}
\maketitle
\begin{abstract}
This is a BibLaTeX style that implements the bibliography style of the Council of Science Editors (CSE) for BibLaTeX.
\end{abstract}
\section{How to use the biblatex-cse style}
\begin{enumerate}
\item Download the \texttt{biblatex-cse.bbx} and \texttt{biblatex-cse.cbx} files and put them in your document's main diretory/folder.
\item Load \texttt{biblatex} with the option \texttt{style=biblatex-cse}, i.e.,
\begin{verbatim}
\usepackage[style=biblatex-cse]{biblatex}
\end{verbatim}
\end{enumerate}
\section{How to contribute}
I did this style file by request of a user of my \href{https://github.com/joaomlourenco/novathesis}{LaTeX template \novathesis}. He was quite thorough, double and triple checking that the output was conforming to the requirements of his University (Faculty of Veterinary from the University of Lisbon). Although this \texttt{\filename} style served the requirements from his University, there may still be some unconformities to the CSE style. If you find any, please open an issue in the \href{https://github.com/joaomlourenco/biblatex-cse}{project's page on GitHub} or, even better, \textbf{submit a pull request}.
\section{Examples of citations abd bibliography}
\subsection{Article Citations}
\indent
\par\nauthors{1}\cite{Duddington1955}
\par\nauthors{2}\cite{Asa2011}
\par\nauthors{3}\cite{Migaki1982}
\par\nauthors{4}\cite{Lysek1982}
\par\nauthors{5}\cite{Carvalho2007}
\par\nauthors{8}\cite{Riadigos2014}
\printbibliography[type=article, title=Article References]
\subsection{Book Citations}
\indent
\par\nauthors{1}\cite{AnkelSimons2007}
\par\nauthors{2}\cite{Bogitsh2013}
\par\nauthors{3}\cite{Taylor2016}
\par\nauthors{4}\cite{Modry2015}
\par\nauthors{5}\cite{Modry2017}
\printbibliography[type=book, title=Book References]
\subsection{Manual Citations}
\indent
\par\nauthors{1}\cite{Zoos2022}
\printbibliography[type=manual, title=Manual References]
\subsection{Master Thesis Citations}
\indent
\par\nauthors{1}\cite{Carvalho2002}
\printbibliography[type=masterthesis, title=Masterthesis References]
\subsection{Online Citations}
\indent
\par\nauthors{1}\cite{ZooBarcelona:Timeline}
\printbibliography[type=manual, title=Online References]
\subsection{PhD Thesis Citations}
\indent
\par\nauthors{1}\cite{Balan2017}
\printbibliography[type=phdthesis, title=Phdthesis References]
\subsection{Technical Report Citations}
\indent
\par\nauthors{1}\cite{Fiby2020}
\par\nauthors{2}\cite{Miller2011}
\par\nauthors{5}\cite{Abello2017}
\par\nauthors{5}\cite{Duque2018}
\printbibliography[type=techreport, title=Techreport References]
% Bibliography goes here
% ----------------------
\end{document}
|