I've been searching for this topic quite a while in the internet (including here) but could not find a solution to my specific problem.
Nevertheless, this is my problem: I am currently writing my thesis and need to have a specific literature citation style in my bibliography at the end, which has to look like this:
Tsikalas, F., Faleide, J.I., Eldholm, O., Wilson, J., 2005. Late Mesozoic–Cenozoic structural and stratigraphic correlations between the conjugate mid-Norway and NE Greenland continental margins, geological development of the northeast Greenland shelf. In: Dore, A.G., Vining, B.A. (Eds.), Petroleum Geology: North-West Europe and Global Perspectives –– Proceedings of the 6th Petroleum Geology Conference, vol. 2. Geological Society, London, pp. 785-801.
Meaning:
Last Name, First Name, year, title, journal with volume (no comma in between!), pages
I am especially having problems telling LaTeX to implement book chapters as seen in the last example with "In: Dore, A.G., Vining, B.A. etc.". I am using JabRef. Do you have any ideas on that or code examples, so that LaTeX takes the field of JabRef proposed as the @incollection field?
Another problem is that I need to write "LASTNAME et al." in the text as soon as it says three or more authors.
Do you have any ideas?
This is my code so far (neglecting anything else that doesn't take citations into account):
%--------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%--------------------------------------------------------------------------
\documentclass[
12pt, % The default document font size, options: 10pt, 11pt, 12pt
oneside, % Two side (alternating margins) for binding by default, uncomment to switch to one side
english,ngerman % ngerman for German
onehalfspacing, % Single line spacing, alternatives: onehalfspacing or doublespacing
%draft, % Uncomment to enable draft mode (no pictures, no links, overfull hboxes indicated)
nolistspacing, % If the document is onehalfspacing or doublespacing, uncomment this to set spacing in lists to single
liststotoc, % Uncomment to add the list of figures/tables/etc to the table of contents
toctotoc, % Uncomment to add the main table of contents to the table of contents
%parskip, % Uncomment to add space between paragraphs
nohyperref, % Uncomment to not load the hyperref package
headsepline, % Uncomment to get a line under the header
%chapterinoneline, % Uncomment to place the chapter title next to the number on one line
%consistentlayout, % Uncomment to change the layout of the declaration, abstract and acknowledgements pages to match the default layout
]{MastersDoctoralThesis} % The class file specifying the document structure
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage{datetime}
\usepackage{float}
\usepackage{palatino} % Use the Palatino font by default
%\renewcommand*\rmdefault{ppl}
\usepackage{siunitx}
\usepackage{newunicodechar}
\newunicodechar{°}{\degree}
\usepackage{graphicx,wrapfig}
\usepackage[backend=bibtex,style=authoryear,firstinits=true,
doi=false,isbn=false,url=false,maxbibnames=3,natbib=true]%
{biblatex} % Use the bibtex backend with the authoryear citation style (which resembles APA)
\usepackage[nottoc]{tocbibind}
\DeclareNameAlias{sortname}{last-first}
\newrobustcmd*{\parentexttrack}[1]{%
\begingroup
\blx@blxinit
\blx@setsfcodes
\blx@bibopenparen#1\blx@bibcloseparen
\endgroup}
\AtEveryCite{%
\let\parentext=\parentexttrack%
\let\bibopenparen=\bibopenbracket%
\let\bibcloseparen=\bibclosebracket}
\newdateformat{monthyeardate}{\monthname[\THEMONTH], \THEYEAR}
\addbibresource{jabref.bib} % The filename of the bibliography
\usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography
\DeclareFieldFormat[inbook,inproceedings,article,misc]{citetitle}{#1}
\DeclareFieldFormat[inbook,inproceedings,article,misc]{title}{#1}
Thank you very much for your help!
All the best,
Max


maxbibnames=3. Additionally, please turen your code fragment into a minimal working example with bibliography (MWEB). – leandriis Apr 15 '18 at 12:39authorblocks is not uniform across the three examples you provided. In the first, there's space between the first-name initials, and there's anandimmediately before the name of the final author. In contrast, in examples 2 and 3, there's no space between the initials, and there's no "and" between the penultimate and the final author. Is this difference deliberate? – Mico Apr 15 '18 at 13:32biblatexonly show one name and et al. in citations', or 'how can I get theeditorin@incollectionbefore thebooktitle'. You are essentially asking people to write an entire style for you: People may do this, but don't count on it.natbibcitation management and the bibliography style calledelsarticle-harv(optionally modified). – Mico Apr 17 '18 at 15:57MastersDoctoralThesis" is not considered the pinnacle of creation when it comes to LaTeX document classes. In fact some people, amongst which I definitely count myself, would advise others not to use this class. For a bit of background read https://github.com/johannesbottcher/templateConfusion and (in German, sorry, maybe you can read German, you loadngermanafter all) https://komascript.de/latexvorlage. For an example why the class is bad, see https://tex.stackexchange.com/q/383150/35864 (could be about an older version). – moewe Apr 17 '18 at 19:26\ProvidesClassdon't match in the LaTeXtemplates version. Other things are just my personal opinion (does it really need\graphicspath{{Figures/}{./}}?) The license of the template and its parts could be stated more clearly: As I see it now the.clsis LPPL while the.texis CC, that makes sense, but should made clearer in a README or LICENSE file - and the reasoning could be explained. Normally LPPL license notices look different and list the status (maintained, author-maintained) ... – moewe Apr 20 '18 at 05:56