Skip to content
Snippets Groups Projects
Verified Commit 40a3ca01 authored by John Swinbank's avatar John Swinbank
Browse files

Merge branch 'u/swinbank/bib'

parents 759dd317 e3b41fc3
No related branches found
No related tags found
1 merge request!7Bibliography support
......@@ -11,6 +11,8 @@ endif
$(DOCNAME).pdf: $(DOCNAME).tex meta.tex
xelatex $(DOCNAME)
makeglossaries $(DOCNAME)
biber $(DOCNAME)
xelatex $(DOCNAME)
xelatex $(DOCNAME)
.FORCE:
......
......@@ -11,6 +11,7 @@
\setDocChangeRecord{
\addChangeRecord{1.0}{2020-11-15}{Initial release}
\addChangeRecord{2.0}{2020-11-18}{Add list of abbreviations}
\addChangeRecord{3.0}{2020-11-18}{Add list of references}
}
\setDocAuthors{
......@@ -40,9 +41,13 @@
\setglossarystyle{altlist}
\printglossary[title=List of abbreviations]
\clearpage
\printbibliography
\clearpage
Check that abbreviations are working properly: \gls{SDC}, \gls{SKA}.
Check that citations are working properly: \autocite{SDC-001}, \autocite{SDC-002}.
\section{First section}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
......
% General ASTRON documents
@TechReport{2020-Kruithof-Vision,
author = "Gert {Kruithof}",
title = "Vision on {LOFAR} and the {SDC}",
institution = "ASTRON",
year = 2020,
month = "jan",
day = 30,
version = 1,
url = {https://edu.nl/afu73},
}
% LOFAR and LOFAR2.0 documents
@TechReport{2020-Gunst-SDC-L2-Architecture,
author = "A.W. {Gunst} and H. {Holties} and R. {Pizzo} and J.D. {Mol}",
title = "Architectural Design of {SDC} and {LOFAR2.0} Interaction",
institution = "ASTRON",
year = 2020,
month = sep,
day = 16,
version = 1.2,
url = {https://edu.nl/xfa7k},
}
% SDC-series documents
@TechReport{SDC-001,
author = "John D. {Swinbank} and Jasper {Annyas}",
title = "{SDC} Software Maintenance in an Agile Environment",
institution = "ASTRON",
year = 2020,
version = draft,
url = {https://git.astron.nl/swinbank/doc-sdc-001}
}
@TechReport{SDC-002,
author = "John D. {Swinbank}",
title = "{ASTRON Science Data Centre} Program Management Plan",
institution = "ASTRON",
year = 2020,
version = draft,
url = {https://git.astron.nl/swinbank/doc-sdc-002}
}
@TechReport{SDC-003,
author = "John D. {Swinbank}",
title = "{FuSE} Project Management Plan",
institution = "ASTRON",
year = 2020,
version = draft,
url = {https://git.astron.nl/swinbank/doc-sdc-003}
}
@TechReport{SDC-004,
author = "John D. {Swinbank}",
title = "{ASTRON Science Data Centre} Vision",
institution = "ASTRON",
year = 2020,
version = draft,
url = {https://git.astron.nl/swinbank/doc-sdc-004}
}
% ls-R -- filename database for kpathsea; do not change this line.
./:
.:
bibtex
ls-R
tex
./bibtex:
bib
./bibtex/bib:
astron.bib
lofar.bib
sdc.bib
./tex:
latex
......@@ -12,6 +21,6 @@ latex
astron
./tex/latex/astron:
astron-acronyms.tex
astron-abbreviations.tex
astron-logo.pdf
astron.cls
......@@ -15,6 +15,7 @@
\setlength{\sideMargin}{2cm}
\RequirePackage[absolute]{textpos}
\RequirePackage{biblatex}
\RequirePackage{fancyhdr}
\RequirePackage{geometry}
\RequirePackage[pdfborder={0 0 0}]{hyperref}
......@@ -26,6 +27,14 @@
\RequirePackage{parskip}
\RequirePackage{tabularx}
% Standard bibliography files included in this package
\addbibresource{astron.bib}
\addbibresource{lofar.bib}
\addbibresource{sdc.bib}
% No need for a fancy font for the URL
\urlstyle{same}
\geometry{tmargin=\topMargin,
bmargin=\bottomMargin,
lmargin=\sideMargin,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment