LyXfull citation in footnotes

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
francis73
Posts: 2
Joined: Sat Nov 29, 2014 9:12 pm

full citation in footnotes

Post by francis73 »

Hi,

I am a noob. I want to insert a full citation (author year title) in the footnotes. But I am at a loss on how to go about doing this in LyX.

cheers

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

full citation in footnotes

Post by Johannes_B »

Hi and welcome, I am no LyX user so i can't be of much help. The LyX-wiki article on BibTeX might be a good starting point.
I strongly recommend to use the modern and flexible package biblatex (can also be found on the wiki page).

I am used to using LaTeX directly, and the command should be fullcite.

One of the LyX-developers described LyX to be a tool for advanced LaTeX users.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
francis73
Posts: 2
Joined: Sat Nov 29, 2014 9:12 pm

Re: full citation in footnotes

Post by francis73 »

Thanks for the advice, Johannes_B.

I'm now giving LaTeX a try for my writing projects instead of going the seemingly easier route of LyX. It is a steep learning curve and I have a thousand more questions of how to get things to work.

I haven't figure out how to get \fullcite to work yet. But I will look around.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

full citation in footnotes

Post by Johannes_B »

I guess a good start would be to read some short introductory material, this is much more economical than searching bits of code on the internet.

I recommend to read LaTeX for complete novices.

Code: Select all

\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
	@book{zeilenumbruchBibliographielinks,
		author = {TeXwelt},
		title  = {Zeilenumbrüche in Bibliografielinks},
		url    = {http://texwelt.de/wissen/fragen/7008/},
		urldate = {2012-10-02}
	}
	@book{bibliographieUnterteilen,
		author = {TeXwelt},
		title  = {Wie unterteile ich meine biblatex Bibliografie?},
		url    = {http://texwelt.de/wissen/fragen/7532/}
	}
\end{filecontents}

\documentclass[bibliography=totoc]{scrartcl}
\usepackage{selinput}
\SelectInputMappings{
	udieresis={ü}
}
\usepackage[ngerman]{babel}
\usepackage[backend=biber,
	style=numeric,
]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\tableofcontents

\section{Zusatzinfos}
\citetitle{bibliographieUnterteilen}

Wie kann ich Links besser
trennen?\footcite{zeilenumbruchBibliographielinks}

This will be a full cite: \fullcite{bibliographieUnterteilen}
\printbibliography
\end{document} 
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply