Remove docs folder
This commit is contained in:
470
assets/babathesis.latex
Normal file
470
assets/babathesis.latex
Normal file
@@ -0,0 +1,470 @@
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Basic configuration
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Use 'KOMA-Script Book' as the document class
|
||||
\documentclass[toc=bibliography,toc=indentunnumbered,listof=totoc]{scrbook}
|
||||
|
||||
% Use Spanish as language
|
||||
\usepackage[spanish]{babel}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Preload essentials
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Load some required packages
|
||||
\usepackage{etoolbox} % Modding standard environments
|
||||
\usepackage[fleqn,intlimits]{amsmath} % Common mathematical environments
|
||||
\usepackage[svgnames]{xcolor} % Enables coloring of text and pages
|
||||
\usepackage{hyperref} % Enables hyperlink generation
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Page design
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Font size
|
||||
\KOMAoptions{fontsize=11pt}
|
||||
|
||||
% Line spacing
|
||||
\linespread{1.04}
|
||||
|
||||
% Paper format
|
||||
\KOMAoptions{paper=B5}
|
||||
|
||||
% Duplex layout
|
||||
\KOMAoptions{twoside}
|
||||
|
||||
% Page layout [1/sqrt(3)]
|
||||
\usepackage[text={108.25mm,187.50mm},hmarginratio=1:1,vmarginratio=1:2]{geometry}
|
||||
|
||||
% Page layout [1/sqrt(2)]
|
||||
%\KOMAoptions{BCOR=15mm}
|
||||
%\KOMAoptions{DIV=11}
|
||||
|
||||
% Page layout [Classic circle]
|
||||
%\KOMAoptions{BCOR=15mm}
|
||||
%\KOMAoptions{DIV=classic}
|
||||
|
||||
% Disable headers
|
||||
\pagestyle{plain}
|
||||
|
||||
% Font used for page numbers
|
||||
\addtokomafont{pagenumber}{\lining\scshape}
|
||||
|
||||
% Use spacing instead of indentation to separate paragraphs
|
||||
%\KOMAoptions{parskip=half+}
|
||||
|
||||
% Don't stretch the content to fill entire pages
|
||||
\raggedbottom{}
|
||||
|
||||
% Don't break paragraphs because of a single line
|
||||
\PassOptionsToPackage{defaultlines=2,all}{nowidow}
|
||||
|
||||
% Permit some hyphenation in ragged-right blocks
|
||||
\PassOptionsToPackage{newcommands}{ragged2e}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Document fonts
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Load font management packages
|
||||
\usepackage[no-math]{fontspec}
|
||||
\usepackage{unicode-math}
|
||||
\usepackage{realscripts}
|
||||
\usepackage{microtype}
|
||||
|
||||
% Where to look for fonts
|
||||
\defaultfontfeatures{Path={fonts/}}
|
||||
|
||||
% Scale all fonts to the same x-height
|
||||
\defaultfontfeatures{Scale=MatchLowercase}
|
||||
|
||||
% Use italics for all math letters
|
||||
\unimathsetup%
|
||||
{
|
||||
math-style=ISO,
|
||||
nabla=upright,
|
||||
partial=upright
|
||||
}
|
||||
|
||||
% Turn on "contextual alternates"
|
||||
\defaultfontfeatures{RawFeature={+calt}}
|
||||
|
||||
% Define commands to switch number style
|
||||
\newcommand{\lining}{\addfontfeature{Numbers={Lining}}}
|
||||
\newcommand{\oldstyle}{\addfontfeature{Numbers={OldStyle}}}
|
||||
|
||||
% Serif font (used for body text)
|
||||
\setmainfont{Libertinus Serif}%
|
||||
[
|
||||
UprightFont = {*-Regular},
|
||||
ItalicFont = {*-Italic},
|
||||
BoldFont = {*-Semibold},
|
||||
BoldItalicFont = {*-Semibold Italic},
|
||||
Numbers = {OldStyle},
|
||||
PunctuationSpace = 1.125
|
||||
]
|
||||
|
||||
% Sans font (used for titling)
|
||||
\setsansfont{URW Classico}%
|
||||
[
|
||||
UprightFont = {*-Regular},
|
||||
ItalicFont = {*-Italic Italic},
|
||||
BoldFont = {*-Bold},
|
||||
Numbers = {Proportional,Lining},
|
||||
Scale = MatchUppercase
|
||||
]
|
||||
|
||||
% Math font (used for equations)
|
||||
\setmathfont{Libertinus Math}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Table of contents
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Load a package for styling the table of contents
|
||||
\usepackage{tocbasic}
|
||||
|
||||
% Do not include subsections in the table of contents
|
||||
\setcounter{tocdepth}{1}
|
||||
|
||||
% Fix vertical spacing after table of contents title
|
||||
\BeforeTOCHead[toc]{\RedeclareSectionCommand[beforeskip=1sp,afterskip=1sp]{chapter}}
|
||||
|
||||
% Place page numbers right after the section entries
|
||||
% Use tabular lining figures for the sections, but oldstyle figures for the pages
|
||||
\DeclareTOCStyleEntry[
|
||||
entryformat=\lining\bfseries,
|
||||
linefill=\quad,
|
||||
pagenumberbox={},
|
||||
raggedpagenumber,
|
||||
pagenumberformat=\bfseries,
|
||||
]{tocline}{chapter}
|
||||
\DeclareTOCStyleEntry[
|
||||
entryformat=\lining,
|
||||
linefill=\quad,
|
||||
pagenumberbox={},
|
||||
raggedpagenumber,
|
||||
pagenumberformat=,
|
||||
]{tocline}{section}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Headings
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Change the font used for headings
|
||||
\addtokomafont{disposition}{\sffamily}
|
||||
|
||||
% Change the sizes of chapters and sections
|
||||
\addtokomafont{chapter}{\LARGE}
|
||||
\addtokomafont{section}{\large}
|
||||
|
||||
% Change spacing around chapters and sections
|
||||
\RedeclareSectionCommand[beforeskip=-0.0\baselineskip,afterskip=0.5\baselineskip]{chapter}
|
||||
\RedeclareSectionCommand[beforeskip=-1.0\baselineskip,afterskip=0.5\baselineskip]{section}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Captions
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Change the font used for captions
|
||||
\addtokomafont{caption}{\small}
|
||||
|
||||
% Change the font used for labels
|
||||
\addtokomafont{captionlabel}{\bfseries\lining}
|
||||
|
||||
% Add 2em margins on each side of the caption. (Since the default
|
||||
% \parindent is 1em, this implies that the left end of the caption
|
||||
% will always look one \parindent indented if it comes right before
|
||||
% or after a new paragraph, and can thus prevent weird indentation.)
|
||||
\setcapdynwidth{\dimexpr\textwidth-4em\relax}
|
||||
|
||||
% Disable extra indentation of subsequent lines in a multiline caption
|
||||
\setcapindent{0em}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Footnotes
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Make sure footnote marks are separated by commas and kerned properly
|
||||
|
||||
% Change the font used for footnotes
|
||||
%\addtokomafont{footnote}{\sffamily}
|
||||
|
||||
% Change the footnote marks to lining numbers
|
||||
\renewcommand{\thefootnote}{\lining{\arabic{footnote}}}
|
||||
|
||||
% Change the footnote marks to Latin letters
|
||||
%\renewcommand{\thefootnote}{\textit{\alph{footnote}}}
|
||||
|
||||
% Change the footnote marks to symbols
|
||||
%\usepackage[wiley]{footmisc}
|
||||
%\renewcommand{\thefootnote}{\fnsymbol{footnote}}
|
||||
|
||||
% Set the footnote rule length to the text width
|
||||
\setfootnoterule{\textwidth}
|
||||
|
||||
% Remove the footnote rule entirely
|
||||
%\setfootnoterule{0pt}
|
||||
|
||||
% Adjust the footnote formatting and spacing
|
||||
\deffootnote{2.15em}{2.15em}{\thefootnotemark.\kern0.75em}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Hyperlinks
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Table of contents links
|
||||
\hypersetup{linktoc=page}
|
||||
|
||||
% Color the hyperlinks
|
||||
\hypersetup{colorlinks}
|
||||
\hypersetup{allcolors=Navy}
|
||||
|
||||
% Font used for hyperlinks
|
||||
\urlstyle{rm}
|
||||
|
||||
% Fix kerning problems for backslashes and redefine underscores in hyperlinks
|
||||
\makeatletter
|
||||
\let\UrlSpecialsOld\UrlSpecials{}
|
||||
\def\UrlSpecials{\UrlSpecialsOld\do/{\Url@slash}\do\_{\Url@underscore}}%
|
||||
\def\Url@slash{\@ifnextchar/{\kern+0.05em\mathchar47\kern-0.10em}%
|
||||
{\kern0.08em\mathchar47\penalty\UrlBigBreakPenalty}}
|
||||
\def\Url@underscore{\nfss@text{\leavevmode \kern.06em\vbox{\hrule height 0.12ex width 0.4em}}}
|
||||
\makeatother
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% References
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Bibliography backend (e.g. 'biber' or 'bibtex')
|
||||
\PassOptionsToPackage{backend=biber}{biblatex}
|
||||
|
||||
% Bibliography style (e.g. 'phys' or 'nature')
|
||||
\PassOptionsToPackage{style=phys}{biblatex}
|
||||
|
||||
% Citation style (e.g. 'plain' or 'superscript')
|
||||
\PassOptionsToPackage{autocite=plain}{biblatex}
|
||||
|
||||
% Enable multiple bibliographies with separate numbering
|
||||
\PassOptionsToPackage{defernumbers=true}{biblatex}
|
||||
|
||||
% Pandoc references
|
||||
% Format for cross-references with \cref
|
||||
\PassOptionsToPackage{noabbrev}{cleveref}
|
||||
\newcommand{\crefrangeconjunction}{--}
|
||||
|
||||
\newlength{\cslhangindent}
|
||||
\setlength{\cslhangindent}{1.5em}
|
||||
\newlength{\csllabelwidth}
|
||||
\setlength{\csllabelwidth}{3em}
|
||||
\newenvironment{CSLReferences}[2] % #1 hanging-ident, #2 entry spacing
|
||||
{% don't indent paragraphs
|
||||
\setlength{\parindent}{0pt}
|
||||
% turn on hanging indent if param 1 is 1
|
||||
\ifodd #1 \everypar{\setlength{\hangindent}{\cslhangindent}}\ignorespaces\fi
|
||||
% set entry spacing
|
||||
\ifnum #2 > 0
|
||||
\setlength{\parskip}{#2\baselineskip}
|
||||
\fi
|
||||
}%
|
||||
{}
|
||||
\usepackage{calc}
|
||||
\newcommand{\CSLBlock}[1]{#1\hfill\break}
|
||||
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}}
|
||||
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break}
|
||||
\newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Postload packages
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Load the required packages
|
||||
\usepackage{biblatex} % Produces the bibliography
|
||||
\usepackage{ragged2e} % Permits ragged-right with hyphenation
|
||||
\usepackage{nowidow} % Prevents widows and orphans in text
|
||||
\usepackage{cleveref} % Easy and consistent cross-references
|
||||
\usepackage{graphicx} % Loads and displays figures
|
||||
\usepackage{pdfpages} % Enables embedding of documents
|
||||
\usepackage{booktabs} % Proper formatting of tables
|
||||
\usepackage{siunitx} % Proper formatting of units
|
||||
\usepackage{mhchem} % Proper formatting of chemicals
|
||||
\usepackage{lipsum} % Insertion of arbitrary content
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Miscellaneous
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Enforce a consistent Greek style
|
||||
%\AtBeginDocument{\let\nabla=𝛁}
|
||||
\AtBeginDocument%
|
||||
{
|
||||
\let\epsilon=\varepsilon{}
|
||||
\let\phi=\varphi{}
|
||||
}
|
||||
|
||||
% Change the font used for tables
|
||||
\AtBeginEnvironment{tabular}{\small}
|
||||
\AtBeginEnvironment{tabular*}{\small}
|
||||
|
||||
% Use lining numbers for chemistry and physics
|
||||
\mhchemoptions{textfontcommand=\lining}
|
||||
\sisetup{text-rm=\lining}
|
||||
|
||||
% Format for typesetting physical units
|
||||
\sisetup{range-units=single}
|
||||
\sisetup{range-phrase=--}
|
||||
\sisetup{detect-all=true}
|
||||
|
||||
% Use 2em equation indentation
|
||||
\makeatletter
|
||||
\setlength\@mathmargin{2em}
|
||||
\makeatother
|
||||
|
||||
% Replace \cite with the more flexible \autocite
|
||||
\let\cite=\autocite{}
|
||||
|
||||
% Define a custom color palette
|
||||
\definecolor{whiteish}{rgb}{1.000, 0.964, 0.859}
|
||||
\definecolor{rosewood}{rgb}{0.396, 0.000, 0.043}
|
||||
|
||||
% Declare a custom article format for my papers
|
||||
\DeclareBibliographyAlias{customa}{article}
|
||||
\DeclareFieldFormat[customa]{labelnumber}{\textsc{\Rn{#1}}}
|
||||
|
||||
% Where to look for figure files
|
||||
\graphicspath{{./figures/}}
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Custom macros
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Abbreviations
|
||||
\newcommand{\eg}{e.g.\ }
|
||||
\newcommand{\ie}{i.e.\ }
|
||||
\newcommand{\cf}{c.f.\ }
|
||||
\newcommand{\etal}{et al.\ }
|
||||
|
||||
% Common notation
|
||||
\renewcommand{\d}[1]{\mathop{\textrm{d}\kern0em#1\kern0.1em}}
|
||||
\newcommand{\up}{\uparrow}
|
||||
\newcommand{\dn}{\downarrow}
|
||||
\newcommand{\trans}{{\symsfup{T}}}
|
||||
|
||||
% Common functions
|
||||
\DeclareMathOperator{\tr}{Tr}
|
||||
\DeclareMathOperator{\re}{Re}
|
||||
\DeclareMathOperator{\im}{Im}
|
||||
\DeclareMathOperator{\atan}{atan}
|
||||
\DeclareMathOperator{\atanh}{atanh}
|
||||
\DeclareMathOperator{\asin}{asin}
|
||||
\DeclareMathOperator{\asinh}{asinh}
|
||||
\DeclareMathOperator{\acos}{acos}
|
||||
\DeclareMathOperator{\acosh}{acosh}
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% Document itself
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
% Import bibliographies
|
||||
\addbibresource{bibliography.bib}
|
||||
|
||||
\begin{document}
|
||||
% UGR titlepage
|
||||
\begin{titlepage}
|
||||
\newlength{\centeroffset}
|
||||
\setlength{\centeroffset}{-0.5\oddsidemargin}
|
||||
\addtolength{\centeroffset}{0.5\evensidemargin}
|
||||
\thispagestyle{empty}
|
||||
|
||||
\noindent\hspace*{\centeroffset}
|
||||
\begin{minipage}{\textwidth}
|
||||
\centering
|
||||
\includegraphics[width=0.9\textwidth]{assets/logo_ugr}\\[1cm]
|
||||
|
||||
\textsc{ \Large TRABAJO FIN DE GRADO\\[0.2cm]}
|
||||
\textsc{ GRADO DE INGENIERÍA EN INFORMÁTICA}\\[1cm]
|
||||
% Upper part of the page
|
||||
%
|
||||
% Title
|
||||
{\huge\bfseries $title$\\}
|
||||
\noindent\rule[-1ex]{\textwidth}{3pt}\\[3.5ex]
|
||||
|
||||
{\large\bfseries }
|
||||
\end{minipage}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\noindent\hspace*{\centeroffset}\begin{minipage}{\textwidth}
|
||||
\centering
|
||||
|
||||
\textbf{Autor}\\ {$author$}\\[2.5ex]
|
||||
\textbf{Directores}\\
|
||||
{Carlos Cano Gutiérrez}\\
|
||||
{María Soledad Benítez Cantos}\\[2cm]
|
||||
\includegraphics[width=0.3\textwidth]{assets/logo-ceuta.jpg}\\[0.1cm]
|
||||
\textsc{Facultad de Educación, Tecnología y Economía de Ceuta}\\
|
||||
\textsc{---}\\
|
||||
Granada, $date$
|
||||
\end{minipage}
|
||||
\end{titlepage}
|
||||
|
||||
\frontmatter
|
||||
\tableofcontents
|
||||
\mainmatter{}
|
||||
$body$
|
||||
\backmatter{}
|
||||
\printbibliography{}
|
||||
\end{document}
|
||||
286
assets/bibliography.bib
Normal file
286
assets/bibliography.bib
Normal file
@@ -0,0 +1,286 @@
|
||||
@article{10.1093/molbev/msy224,
|
||||
author = {Flagel, Lex and Brandvain, Yaniv and Schrider, Daniel R},
|
||||
title = "{The Unreasonable Effectiveness of Convolutional Neural
|
||||
Networks in Population Genetic Inference}",
|
||||
journal = {Molecular Biology and Evolution},
|
||||
volume = 36,
|
||||
number = 2,
|
||||
pages = {220-238},
|
||||
year = 2018,
|
||||
month = 12,
|
||||
abstract = "{Population-scale genomic data sets have given researchers
|
||||
incredible amounts of information from which to infer
|
||||
evolutionary histories. Concomitant with this flood of data,
|
||||
theoretical and methodological advances have sought to extract
|
||||
information from genomic sequences to infer demographic events
|
||||
such as population size changes and gene flow among closely
|
||||
related populations/species, construct recombination maps, and
|
||||
uncover loci underlying recent adaptation. To date, most
|
||||
methods make use of only one or a few summaries of the input
|
||||
sequences and therefore ignore potentially useful information
|
||||
encoded in the data. The most sophisticated of these
|
||||
approaches involve likelihood calculations, which require
|
||||
theoretical advances for each new problem, and often focus on
|
||||
a single aspect of the data (e.g., only allele frequency
|
||||
information) in the interest of mathematical and computational
|
||||
tractability. Directly interrogating the entirety of the input
|
||||
sequence data in a likelihood-free manner would thus offer a
|
||||
fruitful alternative. Here, we accomplish this by representing
|
||||
DNA sequence alignments as images and using a class of deep
|
||||
learning methods called convolutional neural networks (CNNs)
|
||||
to make population genetic inferences from these images. We
|
||||
apply CNNs to a number of evolutionary questions and find that
|
||||
they frequently match or exceed the accuracy of current
|
||||
methods. Importantly, we show that CNNs perform accurate
|
||||
evolutionary model selection and parameter estimation, even on
|
||||
problems that have not received detailed theoretical
|
||||
treatments. Thus, when applied to population genetic
|
||||
alignments, CNNs are capable of outperforming expert-derived
|
||||
statistical methods and offer a new path forward in cases
|
||||
where no likelihood approach exists.}",
|
||||
issn = {0737-4038},
|
||||
doi = {10.1093/molbev/msy224},
|
||||
url = {https://doi.org/10.1093/molbev/msy224},
|
||||
eprint = {https://academic.oup.com/mbe/article-pdf/36/2/220/27736968/msy224.pdf},
|
||||
}
|
||||
|
||||
@Article{pmid19706884,
|
||||
Author = "Robins, H. S. and Campregher, P. V. and Srivastava, S. K.
|
||||
and Wacher, A. and Turtle, C. J. and Kahsai, O. and Riddell,
|
||||
S. R. and Warren, E. H. and Carlson, C. S. ",
|
||||
Title = "{{C}omprehensive assessment of {T}-cell receptor beta-chain
|
||||
diversity in alphabeta {T} cells}",
|
||||
Journal = "Blood",
|
||||
Year = 2009,
|
||||
Volume = 114,
|
||||
Number = 19,
|
||||
Pages = "4099--4107",
|
||||
Month = "Nov"
|
||||
}
|
||||
|
||||
@article {Nurk2021.05.26.445798,
|
||||
author = {Nurk, Sergey and Koren, Sergey and Rhie, Arang and
|
||||
Rautiainen, Mikko and Bzikadze, Andrey V. and Mikheenko, Alla
|
||||
and Vollger, Mitchell R. and Altemose, Nicolas and Uralsky,
|
||||
Lev and Gershman, Ariel and Aganezov, Sergey and Hoyt,
|
||||
Savannah J. and Diekhans, Mark and Logsdon, Glennis A. and
|
||||
Alonge, Michael and Antonarakis, Stylianos E. and Borchers,
|
||||
Matthew and Bouffard, Gerard G. and Brooks, Shelise Y. and
|
||||
Caldas, Gina V. and Cheng, Haoyu and Chin, Chen-Shan and Chow,
|
||||
William and de Lima, Leonardo G. and Dishuck, Philip C. and
|
||||
Durbin, Richard and Dvorkina, Tatiana and Fiddes, Ian T. and
|
||||
Formenti, Giulio and Fulton, Robert S. and Fungtammasan,
|
||||
Arkarachai and Garrison, Erik and Grady, Patrick G.S. and
|
||||
Graves-Lindsay, Tina A. and Hall, Ira M. and Hansen, Nancy F.
|
||||
and Hartley, Gabrielle A. and Haukness, Marina and Howe,
|
||||
Kerstin and Hunkapiller, Michael W. and Jain, Chirag and Jain,
|
||||
Miten and Jarvis, Erich D. and Kerpedjiev, Peter and Kirsche,
|
||||
Melanie and Kolmogorov, Mikhail and Korlach, Jonas and
|
||||
Kremitzki, Milinn and Li, Heng and Maduro, Valerie V. and
|
||||
Marschall, Tobias and McCartney, Ann M. and McDaniel, Jennifer
|
||||
and Miller, Danny E. and Mullikin, James C. and Myers, Eugene
|
||||
W. and Olson, Nathan D. and Paten, Benedict and Peluso, Paul
|
||||
and Pevzner, Pavel A. and Porubsky, David and Potapova, Tamara
|
||||
and Rogaev, Evgeny I. and Rosenfeld, Jeffrey A. and Salzberg,
|
||||
Steven L. and Schneider, Valerie A. and Sedlazeck, Fritz J.
|
||||
and Shafin, Kishwar and Shew, Colin J. and Shumate, Alaina and
|
||||
Sims, Yumi and Smit, Arian F. A. and Soto, Daniela C. and
|
||||
Sovi{\'c}, Ivan and Storer, Jessica M. and Streets, Aaron and
|
||||
Sullivan, Beth A. and Thibaud-Nissen, Fran{\c c}oise and
|
||||
Torrance, James and Wagner, Justin and Walenz, Brian P. and
|
||||
Wenger, Aaron and Wood, Jonathan M. D. and Xiao, Chunlin and
|
||||
Yan, Stephanie M. and Young, Alice C. and Zarate, Samantha and
|
||||
Surti, Urvashi and McCoy, Rajiv C. and Dennis, Megan Y. and
|
||||
Alexandrov, Ivan A. and Gerton, Jennifer L. and
|
||||
O{\textquoteright}Neill, Rachel J. and Timp, Winston and Zook,
|
||||
Justin M. and Schatz, Michael C. and Eichler, Evan E. and
|
||||
Miga, Karen H. and Phillippy, Adam M.},
|
||||
title = {The complete sequence of a human genome},
|
||||
elocation-id = {2021.05.26.445798},
|
||||
year = 2021,
|
||||
doi = {10.1101/2021.05.26.445798},
|
||||
publisher = {Cold Spring Harbor Laboratory},
|
||||
abstract = {In 2001, Celera Genomics and the International Human Genome
|
||||
Sequencing Consortium published their initial drafts of the
|
||||
human genome, which revolutionized the field of genomics.
|
||||
While these drafts and the updates that followed effectively
|
||||
covered the euchromatic fraction of the genome, the
|
||||
heterochromatin and many other complex regions were left
|
||||
unfinished or erroneous. Addressing this remaining 8\% of the
|
||||
genome, the Telomere-to-Telomere (T2T) Consortium has finished
|
||||
the first truly complete 3.055 billion base pair (bp) sequence
|
||||
of a human genome, representing the largest improvement to the
|
||||
human reference genome since its initial release. The new
|
||||
T2T-CHM13 reference includes gapless assemblies for all 22
|
||||
autosomes plus Chromosome X, corrects numerous errors, and
|
||||
introduces nearly 200 million bp of novel sequence containing
|
||||
2,226 paralogous gene copies, 115 of which are predicted to be
|
||||
protein coding. The newly completed regions include all
|
||||
centromeric satellite arrays and the short arms of all five
|
||||
acrocentric chromosomes, unlocking these complex regions of
|
||||
the genome to variational and functional studies for the first
|
||||
time.Competing Interest StatementAF and CSC are employees of
|
||||
DNAnexus; IS, JK, MWH, PP, and AW are employees of Pacific
|
||||
Biosciences; FJS has received travel funds to speak at events
|
||||
hosted by Pacific Biosciences; SK and FJS have received travel
|
||||
funds to speak at events hosted by Oxford Nanopore
|
||||
Technologies. WT has licensed two patents to Oxford Nanopore
|
||||
Technologies (US 8748091 and 8394584).},
|
||||
URL = {https://www.biorxiv.org/content/early/2021/05/27/2021.05.26.445798},
|
||||
eprint = {https://www.biorxiv.org/content/early/2021/05/27/2021.05.26.445798.full.pdf},
|
||||
journal = {bioRxiv}
|
||||
}
|
||||
|
||||
@ARTICLE{10.3389/fgene.2020.00900,
|
||||
AUTHOR = {Wang, Luotong and Qu, Li and Yang, Longshu and Wang, Yiying
|
||||
and Zhu, Huaiqiu},
|
||||
TITLE = {NanoReviser: An Error-Correction Tool for Nanopore
|
||||
Sequencing Based on a Deep Learning Algorithm},
|
||||
JOURNAL = {Frontiers in Genetics},
|
||||
VOLUME = 11,
|
||||
PAGES = 900,
|
||||
YEAR = 2020,
|
||||
URL = {https://www.frontiersin.org/article/10.3389/fgene.2020.00900},
|
||||
DOI = {10.3389/fgene.2020.00900},
|
||||
ISSN = {1664-8021},
|
||||
ABSTRACT = {Nanopore sequencing is regarded as one of the most
|
||||
promising third-generation sequencing (TGS) technologies.
|
||||
Since 2014, Oxford Nanopore Technologies (ONT) has developed a
|
||||
series of devices based on nanopore sequencing to produce very
|
||||
long reads, with an expected impact on genomics. However, the
|
||||
nanopore sequencing reads are susceptible to a fairly high
|
||||
error rate owing to the difficulty in identifying the DNA
|
||||
bases from the complex electrical signals. Although several
|
||||
basecalling tools have been developed for nanopore sequencing
|
||||
over the past years, it is still challenging to correct the
|
||||
sequences after applying the basecalling procedure. In this
|
||||
study, we developed an open-source DNA basecalling reviser,
|
||||
NanoReviser, based on a deep learning algorithm to correct the
|
||||
basecalling errors introduced by current basecallers provided
|
||||
by default. In our module, we re-segmented the raw electrical
|
||||
signals based on the basecalled sequences provided by the
|
||||
default basecallers. By employing convolution neural networks
|
||||
(CNNs) and bidirectional long short-term memory (Bi-LSTM)
|
||||
networks, we took advantage of the information from the raw
|
||||
electrical signals and the basecalled sequences from the
|
||||
basecallers. Our results showed NanoReviser, as a
|
||||
post-basecalling reviser, significantly improving the
|
||||
basecalling quality. After being trained on standard ONT
|
||||
sequencing reads from public E. coli and human NA12878
|
||||
datasets, NanoReviser reduced the sequencing error rate by
|
||||
over 5% for both the E. coli dataset and the human dataset.
|
||||
The performance of NanoReviser was found to be better than
|
||||
those of all current basecalling tools. Furthermore, we
|
||||
analyzed the modified bases of the E. coli dataset and added
|
||||
the methylation information to train our module. With the
|
||||
methylation annotation, NanoReviser reduced the error rate by
|
||||
7% for the E. coli dataset and specifically reduced the error
|
||||
rate by over 10% for the regions of the sequence rich in
|
||||
methylated bases. To the best of our knowledge, NanoReviser is
|
||||
the first post-processing tool after basecalling to accurately
|
||||
correct the nanopore sequences without the time-consuming
|
||||
procedure of building the consensus sequence. The NanoReviser
|
||||
package is freely available at <ext-link ext-link-type="uri"
|
||||
xlink:href="https://github.com/pkubioinformatics/NanoReviser"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">https://github.com/pkubioinformatics/NanoReviser</ext-link>.}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Article{Davis2021,
|
||||
author = {Davis, Eric M. and Sun, Yu and Liu, Yanling and Kolekar,
|
||||
Pandurang and Shao, Ying and Szlachta, Karol and Mulder,
|
||||
Heather L. and Ren, Dongren and Rice, Stephen V. and Wang,
|
||||
Zhaoming and Nakitandwe, Joy and Gout, Alexander M. and
|
||||
Shaner, Bridget and Hall, Salina and Robison, Leslie L. and
|
||||
Pounds, Stanley and Klco, Jeffery M. and Easton, John and Ma,
|
||||
Xiaotu},
|
||||
title = {SequencErr: measuring and suppressing sequencer errors in
|
||||
next-generation sequencing data},
|
||||
journal = {Genome Biology},
|
||||
year = 2021,
|
||||
month = {Jan},
|
||||
day = 25,
|
||||
volume = 22,
|
||||
number = 1,
|
||||
pages = 37,
|
||||
abstract = {There is currently no method to precisely measure the
|
||||
errors that occur in the sequencing instrument/sequencer,
|
||||
which is critical for next-generation sequencing applications
|
||||
aimed at discovering the genetic makeup of heterogeneous
|
||||
cellular populations.},
|
||||
issn = {1474-760X},
|
||||
doi = {10.1186/s13059-020-02254-2},
|
||||
url = {https://doi.org/10.1186/s13059-020-02254-2}
|
||||
}
|
||||
|
||||
@article{HEATHER20161,
|
||||
title = {The sequence of sequencers: The history of sequencing DNA},
|
||||
journal = {Genomics},
|
||||
volume = 107,
|
||||
number = 1,
|
||||
pages = {1-8},
|
||||
year = 2016,
|
||||
issn = {0888-7543},
|
||||
doi = {https://doi.org/10.1016/j.ygeno.2015.11.003},
|
||||
url = {https://www.sciencedirect.com/science/article/pii/S0888754315300410},
|
||||
author = {James M. Heather and Benjamin Chain},
|
||||
keywords = {DNA, RNA, Sequencing, Sequencer, History},
|
||||
abstract = {Determining the order of nucleic acid residues in
|
||||
biological samples is an integral component of a wide variety
|
||||
of research applications. Over the last fifty years large
|
||||
numbers of researchers have applied themselves to the
|
||||
production of techniques and technologies to facilitate this
|
||||
feat, sequencing DNA and RNA molecules. This time-scale has
|
||||
witnessed tremendous changes, moving from sequencing short
|
||||
oligonucleotides to millions of bases, from struggling towards
|
||||
the deduction of the coding sequence of a single gene to rapid
|
||||
and widely available whole genome sequencing. This article
|
||||
traverses those years, iterating through the different
|
||||
generations of sequencing technology, highlighting some of the
|
||||
key discoveries, researchers, and sequences along the way.}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Article{vanDijk2014,
|
||||
author = {van Dijk, Erwin L. and Auger, H{\'e}l{\`e}ne and
|
||||
Jaszczyszyn, Yan and Thermes, Claude},
|
||||
title = {Ten years of next-generation sequencing technology},
|
||||
journal = {Trends in Genetics},
|
||||
year = 2014,
|
||||
month = {Sep},
|
||||
day = 01,
|
||||
publisher = {Elsevier},
|
||||
volume = 30,
|
||||
number = 9,
|
||||
pages = {418-426},
|
||||
issn = {0168-9525},
|
||||
doi = {10.1016/j.tig.2014.07.001},
|
||||
url = {https://doi.org/10.1016/j.tig.2014.07.001}
|
||||
}
|
||||
|
||||
@article {Sanger5463,
|
||||
author = {Sanger, F. and Nicklen, S. and Coulson, A. R.},
|
||||
title = {DNA sequencing with chain-terminating inhibitors},
|
||||
volume = 74,
|
||||
number = 12,
|
||||
pages = {5463--5467},
|
||||
year = 1977,
|
||||
doi = {10.1073/pnas.74.12.5463},
|
||||
publisher = {National Academy of Sciences},
|
||||
abstract = {A new method for determining nucleotide sequences in DNA is
|
||||
described. It is similar to the {\textquotedblleft}plus and
|
||||
minus{\textquotedblright} method [Sanger, F. \& Coulson,
|
||||
A. R. (1975) J. Mol. Biol. 94, 441-448] but makes use of the
|
||||
2',3'-dideoxy and arabinonucleoside analogues of the normal
|
||||
deoxynucleoside triphosphates, which act as specific
|
||||
chain-terminating inhibitors of DNA polymerase. The technique
|
||||
has been applied to the DNA of bacteriophage ϕX174 and is more
|
||||
rapid and more accurate than either the plus or the minus
|
||||
method.},
|
||||
issn = {0027-8424},
|
||||
URL = {https://www.pnas.org/content/74/12/5463},
|
||||
eprint = {https://www.pnas.org/content/74/12/5463.full.pdf},
|
||||
journal = {Proceedings of the National Academy of Sciences}
|
||||
}
|
||||
457
assets/ieee.csl
Normal file
457
assets/ieee.csl
Normal file
@@ -0,0 +1,457 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only">
|
||||
<info>
|
||||
<title>IEEE</title>
|
||||
<id>http://www.zotero.org/styles/ieee</id>
|
||||
<link href="http://www.zotero.org/styles/ieee" rel="self"/>
|
||||
<!-- <link href="https://ieeeauthorcenter.ieee.org/wp-content/uploads/IEEE-Reference-Guide.pdf" rel="documentation"/> - 2018 guidelines -->
|
||||
<link href="http://journals.ieeeauthorcenter.ieee.org/wp-content/uploads/sites/7/IEEE_Reference_Guide.pdf" rel="documentation"/>
|
||||
<link href="https://journals.ieeeauthorcenter.ieee.org/your-role-in-article-production/ieee-editorial-style-manual/" rel="documentation"/>
|
||||
<author>
|
||||
<name>Michael Berkowitz</name>
|
||||
<email>mberkowi@gmu.edu</email>
|
||||
</author>
|
||||
<contributor>
|
||||
<name>Julian Onions</name>
|
||||
<email>julian.onions@gmail.com</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rintze Zelle</name>
|
||||
<uri>http://twitter.com/rintzezelle</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephen Frank</name>
|
||||
<uri>http://www.zotero.org/sfrank</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sebastian Karcher</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Giuseppe Silano</name>
|
||||
<email>g.silano89@gmail.com</email>
|
||||
<uri>http://giuseppesilano.net</uri>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick O'Brien</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brenton M. Wiernik</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Oliver Couch</name>
|
||||
<email>oliver.couch@gmail.com</email>
|
||||
</contributor>
|
||||
<category citation-format="numeric"/>
|
||||
<category field="engineering"/>
|
||||
<category field="generic-base"/>
|
||||
<summary>IEEE style as per the 2021 guidelines, V 01.29.2021.</summary>
|
||||
<updated>2021-05-10T02:49:01+00:00</updated>
|
||||
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
||||
</info>
|
||||
<locale xml:lang="en">
|
||||
<terms>
|
||||
<term name="chapter" form="short">ch.</term>
|
||||
<term name="presented at">presented at the</term>
|
||||
<term name="available at">available</term>
|
||||
</terms>
|
||||
</locale>
|
||||
<!-- Macros -->
|
||||
<macro name="status">
|
||||
<choose>
|
||||
<if variable="page issue volume" match="none">
|
||||
<text variable="status" text-case="capitalize-first" suffix="" font-weight="bold"/>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="edition">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
|
||||
<choose>
|
||||
<if is-numeric="edition">
|
||||
<group delimiter=" ">
|
||||
<number variable="edition" form="ordinal"/>
|
||||
<text term="edition" form="short"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="edition" text-case="capitalize-first" suffix="."/>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="issued">
|
||||
<choose>
|
||||
<if type="article-journal report" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="year" form="long"/>
|
||||
</date>
|
||||
</if>
|
||||
<else-if type="bill book chapter graphic legal_case legislation song thesis" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="year" form="long"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else-if type="paper-conference" match="any">
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short"/>
|
||||
<date-part name="year" prefix=" "/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else-if type="motion_picture" match="any">
|
||||
<date variable="issued" prefix="(" suffix=")">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else-if>
|
||||
<else>
|
||||
<date variable="issued">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="author">
|
||||
<names variable="author">
|
||||
<name and="text" et-al-min="7" et-al-use-first="1" initialize-with=". "/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first"/>
|
||||
<et-al font-style="italic"/>
|
||||
<substitute>
|
||||
<names variable="editor"/>
|
||||
<names variable="translator"/>
|
||||
</substitute>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="editor">
|
||||
<names variable="editor">
|
||||
<name initialize-with=". " delimiter=", " and="text"/>
|
||||
<label form="short" prefix=", " text-case="capitalize-first"/>
|
||||
</names>
|
||||
</macro>
|
||||
<macro name="locators">
|
||||
<group delimiter=", ">
|
||||
<text macro="edition"/>
|
||||
<group delimiter=" ">
|
||||
<text term="volume" form="short"/>
|
||||
<number variable="volume" form="numeric"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<number variable="number-of-volumes" form="numeric"/>
|
||||
<text term="volume" form="short" plural="true"/>
|
||||
</group>
|
||||
<group delimiter=" ">
|
||||
<text term="issue" form="short"/>
|
||||
<number variable="issue" form="numeric"/>
|
||||
</group>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="title">
|
||||
<choose>
|
||||
<if type="bill book graphic legal_case legislation motion_picture song" match="any">
|
||||
<text variable="title" font-style="italic"/>
|
||||
</if>
|
||||
<else>
|
||||
<text variable="title" quotes="true"/>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="publisher">
|
||||
<choose>
|
||||
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference song" match="any">
|
||||
<group delimiter=": ">
|
||||
<text variable="publisher-place"/>
|
||||
<text variable="publisher"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<text variable="publisher"/>
|
||||
<text variable="publisher-place"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="event">
|
||||
<choose>
|
||||
<if type="paper-conference speech" match="any">
|
||||
<choose>
|
||||
<!-- Published Conference Paper -->
|
||||
<if variable="collection-editor editor editorial-director issue page volume" match="any">
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text term="in"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</if>
|
||||
<!-- Unpublished Conference Paper -->
|
||||
<else>
|
||||
<group delimiter=", ">
|
||||
<group delimiter=" ">
|
||||
<text term="presented at"/>
|
||||
<text variable="event"/>
|
||||
</group>
|
||||
<text variable="event-place"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="access">
|
||||
<choose>
|
||||
<if type="webpage post post-weblog" match="any">
|
||||
<!-- https://url.com/ (accessed Mon. DD, YYYY). -->
|
||||
<choose>
|
||||
<if variable="URL">
|
||||
<group prefix=" " delimiter=" ">
|
||||
<text variable="URL"/>
|
||||
<group delimiter=" " prefix="(" suffix=").">
|
||||
<text term="accessed"/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" form="short"/>
|
||||
<date-part name="day" form="numeric-leading-zeros" prefix=" " suffix=", "/>
|
||||
<date-part name="year" form="long"/>
|
||||
</date>
|
||||
</group>
|
||||
</group>
|
||||
</if>
|
||||
</choose>
|
||||
</if>
|
||||
<else-if match="any" variable="DOI">
|
||||
<!-- doi: 10.1000/xyz123. -->
|
||||
<text variable="DOI" prefix=" doi: " suffix="."/>
|
||||
</else-if>
|
||||
<else-if variable="URL">
|
||||
<!-- Accessed: Mon. DD, YYYY. [Medium]. Available: https://URL.com/ -->
|
||||
<group delimiter=". " prefix=" " suffix=". ">
|
||||
<!-- Accessed: Mon. DD, YYYY. -->
|
||||
<group delimiter=": ">
|
||||
<text term="accessed" text-case="capitalize-first"/>
|
||||
<date variable="accessed">
|
||||
<date-part name="month" form="short" suffix=" "/>
|
||||
<date-part name="day" form="numeric-leading-zeros" suffix=", "/>
|
||||
<date-part name="year"/>
|
||||
</date>
|
||||
</group>
|
||||
<!-- [Online Video]. -->
|
||||
<group prefix="[" suffix="]" delimiter=" ">
|
||||
<text term="online" text-case="capitalize-first"/>
|
||||
<choose>
|
||||
<if type="motion_picture">
|
||||
<text value="video" text-case="capitalize-first"/>
|
||||
</if>
|
||||
</choose>
|
||||
</group>
|
||||
</group>
|
||||
<!-- Available: https://URL.com/ -->
|
||||
<group delimiter=": ">
|
||||
<text term="available at" text-case="capitalize-first"/>
|
||||
<text variable="URL"/>
|
||||
</group>
|
||||
</else-if>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="page">
|
||||
<choose>
|
||||
<if type="article-journal" variable="number" match="all">
|
||||
<group delimiter=" ">
|
||||
<text value="Art."/>
|
||||
<text term="issue" form="short"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
</if>
|
||||
<else>
|
||||
<group delimiter=" ">
|
||||
<label variable="page" form="short"/>
|
||||
<text variable="page"/>
|
||||
</group>
|
||||
</else>
|
||||
</choose>
|
||||
</macro>
|
||||
<macro name="citation-locator">
|
||||
<group delimiter=" ">
|
||||
<choose>
|
||||
<if locator="page">
|
||||
<label variable="locator" form="short"/>
|
||||
</if>
|
||||
<else>
|
||||
<label variable="locator" form="short" text-case="capitalize-first"/>
|
||||
</else>
|
||||
</choose>
|
||||
<text variable="locator"/>
|
||||
</group>
|
||||
</macro>
|
||||
<macro name="geographic-location">
|
||||
<group delimiter=", " suffix=".">
|
||||
<choose>
|
||||
<if variable="publisher-place">
|
||||
<text variable="publisher-place" text-case="title"/>
|
||||
</if>
|
||||
<else-if variable="event-place">
|
||||
<text variable="event-place" text-case="title"/>
|
||||
</else-if>
|
||||
</choose>
|
||||
</group>
|
||||
</macro>
|
||||
<!-- Citation -->
|
||||
<citation collapse="citation-number">
|
||||
<sort>
|
||||
<key variable="citation-number"/>
|
||||
</sort>
|
||||
<layout delimiter=", ">
|
||||
<group prefix="[" suffix="]" delimiter=", ">
|
||||
<text variable="citation-number"/>
|
||||
<text macro="citation-locator"/>
|
||||
</group>
|
||||
</layout>
|
||||
</citation>
|
||||
<!-- Bibliography -->
|
||||
<bibliography entry-spacing="0" second-field-align="flush">
|
||||
<layout>
|
||||
<!-- Citation Number -->
|
||||
<text variable="citation-number" prefix="[" suffix="]"/>
|
||||
<!-- Author(s) -->
|
||||
<text macro="author" suffix=", "/>
|
||||
<!-- Rest of Citation -->
|
||||
<choose>
|
||||
<!-- Specific Formats -->
|
||||
<if type="article-journal">
|
||||
<group delimiter=", " >
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic" form="short"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="status"/>
|
||||
</group>
|
||||
<choose>
|
||||
<if variable="URL DOI" match="none">
|
||||
<text value="." />
|
||||
</if>
|
||||
<else>
|
||||
<text value="," />
|
||||
</else>
|
||||
</choose>
|
||||
<text macro="access"/>
|
||||
</if>
|
||||
<else-if type="paper-conference speech" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="event"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="page"/>
|
||||
<text macro="status"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="report">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="publisher"/>
|
||||
<group delimiter=" ">
|
||||
<text variable="genre"/>
|
||||
<text variable="number"/>
|
||||
</group>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="thesis">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="genre"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="webpage post-weblog post" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="patent">
|
||||
<group delimiter=", ">
|
||||
<text macro="title"/>
|
||||
<text variable="number"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<!-- Online Video -->
|
||||
<else-if type="motion_picture">
|
||||
<text macro="geographic-location" suffix=". "/>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<!-- Generic/Fallback Formats -->
|
||||
<else-if type="bill book graphic legal_case legislation report song" match="any">
|
||||
<group delimiter=", " suffix=". ">
|
||||
<text macro="title"/>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="page"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="article-magazine article-newspaper broadcast interview manuscript map patent personal_communication song speech thesis webpage" match="any">
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="locators"/>
|
||||
<text macro="publisher"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else-if type="chapter paper-conference" match="any">
|
||||
<group delimiter=", " suffix=", ">
|
||||
<text macro="title"/>
|
||||
<group delimiter=" ">
|
||||
<text term="in"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
</group>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<text macro="editor" suffix=" "/>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="issued"/>
|
||||
<text macro="page"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else-if>
|
||||
<else>
|
||||
<group delimiter=", " suffix=". ">
|
||||
<text macro="title"/>
|
||||
<text variable="container-title" font-style="italic"/>
|
||||
<text macro="locators"/>
|
||||
</group>
|
||||
<group delimiter=", " suffix=".">
|
||||
<text macro="publisher"/>
|
||||
<text macro="page"/>
|
||||
<text macro="issued"/>
|
||||
</group>
|
||||
<text macro="access"/>
|
||||
</else>
|
||||
</choose>
|
||||
</layout>
|
||||
</bibliography>
|
||||
</style>
|
||||
BIN
assets/logo-ceuta.jpg
Normal file
BIN
assets/logo-ceuta.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
838
assets/logo_ugr.pdf
Normal file
838
assets/logo_ugr.pdf
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user