Is there any way to refer the references cited (and only those cited, not just any old entry in the .bib) in a another file with the same labels (probably numeric) as in that file?
Currently, I am preparing my presentation in beamer for one lecture. For that, I have a lecture notes in an article class.
T I am using biblatex for my reference.
I am having around 100 entries in my database bib file but only 20 are cited in the lecture notes.
Now I want to give the reference in my presentation(at the last frame) which I have cited in my lecture notes.
Can I link my lecture notes to provide the reference here?
Details:
The codes I have to used in my lecture notes to give separate reference is,
\printbibliography [title=Works cited,category=cited]
Like this if any command is there in beamer to give the reference?
I am expecting a code like,
\linkforbibliography{mylecturenotes.tex}
\printbibliography [title=Works cited,category=citedinthelink]
For the convinience, I am giving this mwe. I am using xelatex to compile this since I am using fontspec.
MWE:
\documentclass[12 pt]{beamer}
\usetheme[
bullet=circle, % Other option: square
bigpagenumber, % circled page number on lower right
topline=true, % colored bar at the top of the frame
shadow=false, % Shading for beamer blocks
watermark=BG_lower, % png file for the watermark
]{Flip}
\newcommand{\titleimage}{title} % Custom title
\newcommand{\tanedo}{tanedolight} % Custom author name
\newcommand{\CMSSMDM}{CMSSMDMlight.png} % light background plot
\graphicspath{{images/}}
\usefonttheme{professionalfonts} % using non standard fonts for beamer
\usefonttheme{serif} % default family is serif
\usepackage{fontspec}
\setmainfont{Liberation Serif}
\setbeamerfont{frametitle}{series=\bfseries} % Frame titles should be bold
\usepackage[backend=bibtex,sorting=none,defernumbers=true]{biblatex}
\bibliography{mybib}
\DeclareBibliographyCategory{cited}
\AtEveryCitekey{\addtocategory{cited}{\thefield{entrykey}}}
\nocite{*}
\AtEveryBibitem{%
\ifentrytype{book}{
\clearfield{url}%
\clearfield{urlyear}%
}{}
\ifentrytype{collection}{
\clearfield{url}%
\clearfield{urlyear}%
}{}
\ifentrytype{incollection}{
\clearfield{url}%
\clearfield{urlyear}%
}{}
}
\setbeamertemplate{bibliography item}[text]
\begin{document}
\section{Title page}
\begin{frame}
This is my title page..
\end{frame}
\begin{frame}
Here my presentation contents are there...
Note that, nowhere in my presentation I am citing.
But, I need to give the reference at the last frame and that must be from some lecture notes(which has its own citations). The reference must the same as that of the lecture notes.
\end{frame}
\section{References}
\begin{frame}[c,allowframebreaks]
\frametitle{References}
% \setbeamertemplate{bibliography item}{\checkmark}
% \bibliographystyle{amsalpha}
% {\scriptsize \bibliography{mybib.bib}}
\renewcommand*{\bibfont}{\scriptsize}
\printbibliography
\end{frame}
\end{document}
The flipbeamer template can be found here.
Alternate version of this question as suggested by moewe:
Can I have a separate reference list which gives the reference given in the another file?
The following is my original file which is created recently.
\documentclass[11pt,twoside]{article}
\usepackage[backend=bibtex,sorting=anyt,defernumbers=true]{biblatex}
\documentclass[11pt,twoside]{article}
\bibliography{mybib}
\DeclareBibliographyCategory{cited}
\begin{document}
First reference is \cite{berman1974inverses}.. And the second reference is this \cite{lang2002algebra}. etc...
But I want the reference list for this file as well as from the another file.
\printbibliography[category=cited]
\end{document}
Now, I want to give a reference list at the end in this file(say file1.tex), in which that is the reference list in my another file(say file2.tex).
\printbibliography [title=Works cited,category=cited]you only get actually cited sources in the bibliography (assuming that the rest is set up correctly). Have a look at Biblatex equivalent to labeled multibib with working hyperref and Changing “Bibliography” title with biblatex - within the document for examples on how to make all sources from a.bibfile get onekeyword. – moewe Feb 01 '16 at 12:05.bib) in a another file with the same labels (probably numeric) as in that file? I don't think there is abiblatexsolution out there for that at the moment, I think we had a question about this before. – moewe Feb 02 '16 at 15:14biblatexsolution Use bibliography numbers and citation from other file, I'm not sure this is going to be easier withbiblatex. – moewe Feb 02 '16 at 18:18beamer, just two short files would suffice. Though one could argue that the question doesn't require an MWE since the abstract idea is quite straightforward, I would urge you though to make the objective a bit more clear in the question. For me (I'm not a native speaker admittedly) it was quite hard to decipher what you want. For the question it doesn't really matter that you have a presentation and lecture notes, it is only important that you have two separate files. – moewe Feb 02 '16 at 18:34.bibfor yourlecture-noteit createlecture-note.bblthat will be included tolecture-note.texwith\printbibliographyyou can use this file in your beamer – touhami Feb 02 '16 at 20:19