I use TexMaker to write my thesis. I have a Bibliography in the end of my thesis, and inside the text, I also want to show footcite, but if I use \footcite, in footnote it only shows only last name of one author, but I need both authors´ full name. How can I solve this?
And the website link in the citation is too long, how to make line feed before a text end? As the website link goes out of the width of my defined text width.
Thank you
My script:
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[a4paper, text={16.5cm, 25.2cm}, centering]{geometry}
\usepackage[sfdefault]{ClearSans}
\usepackage[utf8]{inputenc}
\setlength{\parskip}{1.2ex}
\setlength{\parindent}{0em}
\usepackage{filecontents}
\usepackage[backend=bibtex,
style=authortitle-comp,
natbib=true,
]{biblatex}
\begin{filecontents}{\jobname.bib}
@Electronic{unintentional,
Title = {Accidents or Unintentional Injuries},
Author = {Altiok,Tayfur; Melamed, Benjamin},
Note = {[Accessed on August 10, 2016]. Available on: \textcolor{blue}{http://www.cdc.gov/nchs/fastats/accidental-injury.htm}}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
here is just a test \cite{unintentional} .
\printbibliography
\end{document}

\footciteand friends), often the full name is only given in the bibliography. Please note thatAuthor = {Altiok,Tayfur; Melamed, Benjamin},is wrong, see How should I type author names in a bib file?. – moewe Dec 14 '16 at 07:58biblatexyou should do what you do with yournotefield (Note = {[Accessed on August 10, 2016]. Available on: \textcolor{blue}{http://www.cdc.gov/nchs/fastats/accidental-injury.htm}}) as follows:urldate = {2016-08-10},url={http://www.cdc.gov/nchs/fastats/accidental-injury.htm}.biblatexwill take care of everything else. – moewe Dec 14 '16 at 07:59