diff options
author | Karl Berry <karl@freefriends.org> | 2025-01-01 20:53:27 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2025-01-01 20:53:27 +0000 |
commit | 4bc4c61003a57c57c73705696a6bad4151337c67 (patch) | |
tree | ce46033cd4533ee7ae364863899828cd4ff10353 /Master/texmf-dist/doc/latex | |
parent | 69fdb5f97aa62423c1982052789c0943bea52297 (diff) |
biblatex-cse (1jan25)
git-svn-id: svn://tug.org/texlive/trunk@73262 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-cse/README.md | 43 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.pdf | bin | 0 -> 146152 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.tex | 126 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-cse/bibliography.bib | 164 |
4 files changed, 333 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-cse/README.md b/Master/texmf-dist/doc/latex/biblatex-cse/README.md new file mode 100644 index 00000000000..aaa87a64341 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-cse/README.md @@ -0,0 +1,43 @@ +# BibLaTeX: Council of Science Editors style + +Support for **Council of Science Editors** style in BibLaTeX. + + +## How to use the biblatex-cse style + +1. Download the `biblatex-cse.bbx` and `biblatex-cse.cbx` files and put them in your document's main diretory/folder. +1. Load `biblatex` with the option `style=biblatex-cse`, i.e., +```latex +\usepackage[style=biblatex-cse]{biblatex} +``` + +## How to contribute + +I did this style file by request of a user of my [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 biblatex-cse 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 [https://github.com/joaomlourenco/biblatex-cse](in the project's page on GitHub) or, even better, **submit a pull request**. + + +-------- + +<picture> + <source + media="(prefers-color-scheme: dark)" + srcset=" + https://api.star-history.com/svg?repos=joaomlourenco/biblatex-cse&type=Date&theme=dark + " + /> + <source + media="(prefers-color-scheme: light)" + srcset=" + https://api.star-history.com/svg?repos=joaomlourenco/biblatex-cse&type=Date + " + /> + <img + width="500" + alt="Star History Chart" + src="https://api.star-history.com/svg?repos=joaomlourenco/biblatex-cse&type=Date" + /> +</picture> + +**If you opt for using this project, please give it a star by clicking the (⭐️) at the top right of the [project's page](https://github.com/joaomlourenco/biblatex-cse).** + +--------
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.pdf b/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.pdf Binary files differnew file mode 100644 index 00000000000..5406da370d5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.tex b/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.tex new file mode 100644 index 00000000000..9e270d1090c --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.tex @@ -0,0 +1,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} diff --git a/Master/texmf-dist/doc/latex/biblatex-cse/bibliography.bib b/Master/texmf-dist/doc/latex/biblatex-cse/bibliography.bib new file mode 100644 index 00000000000..41dc7056bb6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-cse/bibliography.bib @@ -0,0 +1,164 @@ +@Article{Duddington1955, + author = {C. L. Duddington}, + title = {Fungi that Attack Microscopic Animals}, + doi = {10.1007/bf02872434}, + issue = {7}, + pages = {377--439}, + volume = {21}, + journal = {The Botanical Review}, + year = {1955}, +} + +@Article{Asa2011, + author = {Cheryl Asa and Sally Boutelle}, + title = {Contraception}, + doi = {10.1016/B978-1-4377-1986-4.00002-0}, + editor = {R. EricFowler, Murray E. Miller}, + pages = {8--14}, + volume = {7}, + edition = {1}, + journal = {Fowler's Zoo and Wild Animal Medicine Current Therapy}, + publisher = {Elsevier Saunders}, + year = {2011}, +} + +@Article{Migaki1982, + author = {Migaki, G. and Schmidt, R. E. and Toft, J. D. and Kaufmann, A. F.}, + title = {Mycotic Infections of the Alimentary Tract of Nonhuman Primates: A Review}, + doi = {10.1177/030098588201907s07}, + pages = {93--103}, + volume = {19}, + journal = {Vet. Pathol}, + year = {1982}, +} + +@Article{Lysek1982, + author = {Hynek Lýsek and O. Fassatiová and N. Cuervo Pineda and N. Lorenzo and José Ángel {Hernández Malagón}}, + title = {Ovicidal fungi in soils of Cuba.}, + issn = {0015--5683}, + issue = {3}, + pages = {265--270}, + url = {https://europepmc.org/article/med/6890012}, + volume = {29}, + journal = {Folia Parasitologica}, + month = {1}, + pmid = {6890012}, + year = {1982}, +} + +@Article{Carvalho2007, + author = {Madeira de Carvalho, Luís Manuel and Gillespie, A. T. and Serra, P. M. and Bernardo, F. A. and Farrim, A. P. and Fazendeiro, I. M.}, + title = {Eficácia do fungo nematófago \textit{Duddingtonia flagrans} no controlo biológico da estrongilidose equina no Ribatejo Efficacy of the nematofagous fungi \textit{Duddingtonia flagrans} in the biological control of horse strongylosis in the Ribatejo}, + pages = {233--247}, + volume = {102}, + journal = {REVISTA PORTUGUESA DE CIÊNCIAS VETERINÁRIAS}, + keywords = {()}, + year = {2007}, +} + +@Article{Riadigos2014, + author = {Silvia Miguélez Riádigos and María Sol {Arias Vázquez} and Esther Valderrábano Cano and Pablo Piñeiro Fraga and Diego Gómez Uzal and María Fernández Marcos and Rodrigo {Bonilla Quintero} and Rita Sánchez-Andrade Fernández and Luis Manuel {Madeira de Carvalho}}, + title = {Control Biológico de Nematodos Parásitos en Antílopes (\textit{Cervicapra cervicapra}) en Cautividad}, + issn = {2182--8865}, + pages = {47--56}, + volume = {34}, + journal = {Pastagens e Forragens}, + year = {2014}, +} + +@Book{AnkelSimons2007, + author = {Friderun Ankel-Simons}, + title = {Primate Anatomy An Introduction}, + edition = {3}, + isbn = {1865843830}, + publisher = {Elsevier Academic Press}, + url = {http://www.bookaid.org}, + year = {2007}, +} + +@book{Bogitsh2013, + author = {Burton Jerome Bogitsh and Clint Earl Carter}, + edition = {4}, + isbn = {9780124159150}, + publisher = {Academic Press}, + title = {Human parasitology}, + year = {2013}, +} + +@Book{Taylor2016, + author = {Taylor, M. A. and Coop, R. L. and Wall, R. L.}, + title = {Veterinary Parasitology}, + edition = {4}, + publisher = {Wiley Blackwell}, + year = {2016}, +} + +@Book{Modry2015, + author = {David Modrý and Klára J. Petrzelková and Barbora Kalousová and Hideo Hasegawa}, + title = {Parasites of Apes: An Atlas of Coproscopic Diagnostics}, + year = {2015}, +} + +@Book{Modry2017, + author = {David Modrý and Lada Hofmannová and Andrei D. Mihalca and Jana Juránková and Helena Neumayerová and Gianluca D’Amico}, + title = {Field and laboratory diagnostics of parasitic diseases of domestic animals: from sampling to diagnosis}, + year = {2017}, +} + +@Manual{Zoos2022, + author = {Zoos and Aquaria, European Association of}, + title = {EAZA Membership and Accreditation Manual}, + city = {Amsterdam}, + year = {2022}, +} + +@MastersThesis{Carvalho2002, + author = {Madeira de Carvalho, Luís Manuel}, + institution = {Faculdade de Medicina Veterinária}, + title = {Epidemiologia e controlo da estrongilidose em diferentes sistemas de produção equina em Portugal}, + city = {Lisbon}, + year = {2002}, +} + +@online{ZooBarcelona:Timeline, + author = {Zoo Barcelona}, + title = {Timeline – Walk through the past, present and future of a conservation institution for biodiversity}, + url = {https://historia.zoobarcelona.cat/en/}, +} + +@PhdThesis{Balan2017, + author = {Fabián Leonardo {Arroyo Balán}}, + institution = {Facultade de Veterinaria Universidade de Santiago de Compostela}, + title = {Formulación de Esporas de Hongos Parasiticidas en Pellets Nutricionales}, + url = {http://hdl.handle.net/10347/15820}, + year = {2017}, +} + +@techreport{Fiby2020, + author = {Monika Fiby}, + title = {Bio-floors in Animal Enclosures}, + year = {2020}, +} + +@techreport{Miller2011, + author = {R. Eric Miller and Murray Fowler}, + title = {Zoo and Wild Animal Medicine CURRENT THERAPY}, + year = {2011}, +} + +@TechReport{Abello2017, + author = {Ma Teresa Abelló and Frank Rietkerk and Neil Bemment}, + title = {EAZA Best Practice Guidelines for Gorillas EAZA BEST PRACTICE GUIDELINES Great Ape Taxon Advisory Group GORILLA (Gorilla gorilla gorilla) (2nd Edition)}, + year = {2017}, +} + +@techreport{Duque2018, + author = {Daniela Duque and Ricardo Lopes and Filipe Sampaio and Augusto Silva and Paula Brilhante Simões}, + institution = {Laboratório Veterinário INNO}, + month = {4}, + title = {Prevalência parasitária gastrointestinal em 1419 casos (2015-2017), comparando a análise coprológica de 1 versus 3 amostras}, + year = {2018}, +} + + + |