-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
71 lines (56 loc) · 1.6 KB
/
main.tex
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
\documentclass{article}
%
% Packages
%
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[hidelinks]{hyperref}
\usepackage{csquotes}
\usepackage{breqn} % dmath: parentheses over multiple lines
% Bibliography
\usepackage[backend=biber, style=numeric, sorting=nyt, backref=true, hyperref=true, defernumbers=true]{biblatex}
% capitalize titles
\usepackage{mfirstuc-english} % for \capitalisewords
\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished]{title}{\capitalisewords{#1}}
\addbibresource{bibliography.bib}
\addbibresource{ISASPublikationen.bib}
%\addbibresource{paperlocal.bib}
% Mark own publications by keyword
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\step[fieldsource=author, match=Frisch, final]
\step[fieldset=keywords, fieldvalue=own]
}
}
}
%
% User-Defined Files
%
\input{abbreviations1}
\input{acronyms}
\begin{document}
%
% Content
%
test
% \usepackage{breqn}
\begin{dmath}
a\paren{\int_0^1 \\ x^2}
\end{dmath}
% Print ALL references in bib files
\nocite{*} % too much if ISASPublications.bib is enabled!
\cite{Kalman1960_ANewApproachToLinearFilteringAndPredictionProblems, Daum2008_ParticleFlowForNonlinearFiltersWithLogHomotopy}
\cite{Frisch2021_DeterministicSamplingOnTheCircleUsingProjectedCumulativeDistributions}
\cite{JAIF23_Frisch}
%
% Own Publications
%
\newrefcontext[labelprefix=O]
\printbibliography[keyword=own, heading=bibintoc, resetnumbers=true]
%
% Bibliography
%
%\newrefcontext[labelprefix={}]
%\printbibliography[notkeyword=own, resetnumbers=true, heading=subbibintoc, title={Bibliography}]
\end{document}