So I have been trying to learn latex in my uses, but I need to modify the biblatex referencing and citation styles to match those required by my institution. I found many questions on texsx and tried a few things but didn't work at all.
Here are some things I would like to change using authoryear style:
- remove quotation marks from references in the bibliography
- remove parenthesis from year on references in the bibliography
- use ampersand "&" instead of "and" on citations
I tried to follow this reply (Guidelines for customizing biblatex styles) but none of the changes worked.
Need step by step help here please.
Here is a sample of something similar I might be doing:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\usepackage{lipsum}
\usepackage{filecontents}
\begin{filecontents}{ref.bib}
@article{merdith_full-plate_2017,
Author = {Merdith, Andrew S. and Collins, Alan S. and Williams, Simon E. and Pisarevsky, Sergei and Foden, John D. and Archibald, Donnelly B. and Blades, Morgan L. and Alessio, Brandon L. and Armistead, Sheree and Plavsa, Diana and Clark, Chris and M{\"u}ller, R. Dietmar},
Date = {2017},
Title = {A full-plate global reconstruction of the Neoproterozoic}}
@article{england_active_1997,
Author = {England, Philip and Molnar, Peter},
Date = {1997},
Number = {5338},
Pages = {647--650},
Title = {Active deformation of Asia: from kinematics to dynamics},
Volume = {278}}
}
\end{filecontents}
\addbibresource{ref.bib}
\begin{document}
\lipsum[1-2]
\cite{merdith_full-plate_2017} and \cite{england_active_1997}
\printbibliography
\end{document}

\textcite? Would you want an&then? What about\fullcite? Etc, etc, – cfr Aug 16 '17 at 22:35\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished]{title}{#1\isdot}– moewe Aug 17 '17 at 17:50I tried the "apa" style but latex throws some error and doesn't compile with apa.
– Rodrigues Aug 21 '17 at 13:22biblatex-chicagocan be really hard to modify. – moewe Aug 21 '17 at 18:00