Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Fri Jun 24, 2016 3:36 pm
Hi everyone
I'd like to have my references appear as a footnote in the frame I use them . However,
1) My images are moving away when I use \footnote
2) I've no idea how to make the complete reference appear (Author, Book name, year, school, etc.) as I don't want to have a separate slide with the references.
Here are the files you need. Perhaps I'm using the wrong packages. I'm using biblatex.
Have a nice weekend
Coline
Attachments
b2.jpg (4.09 KiB) Viewed 16736 times
ref.bib
(1.28 KiB) Downloaded 488 times
l3.tex
(1.26 KiB) Downloaded 529 times
Last edited by
cgnieder on Wed Jun 29, 2016 1:51 pm, edited 1 time in total.
Johannes_B
Site Moderator
Posts: 4182 Joined: Thu Nov 01, 2012 4:08 pm
Post
by Johannes_B » Sat Jun 25, 2016 1:55 am
Not looking at the actual files, it is late. Do you know \footcite{}
and \footfullcite{}
?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Mon Jun 27, 2016 11:27 am
Hi Johannes_B
\footcite
or
\footfullcite
does not completely work in my example. It does give me the entire reference at the foot of my frame but my images still move. Also, how can I write the references in smaller letters ? Could you help me ?
Here's my latex code :
Code: Select all
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{array}
\usepackage{multirow}
\usepackage{capt-of}
\usepackage{tabu}
\usepackage{xcolor}
\usepackage[backend=biber,style=numeric-comp,sorting=none]{biblatex}
\addbibresource{ref.bib}
\renewcommand{\thefootnote}{\roman{footnote}}
\begin{document}
\title{Simple Beamer Class}
\author{Sascha Frank}
\date{\today}
\frame{\titlepage}
%\frame{\frametitle{Table of contents}\tableofcontents}
\section{Subsection no.1.1 }
\frame{
\begin{columns}
\begin{column}{0.7\textwidth}
\begin{block}{Introducing the project "Explodrone"}
\begin{itemize}
\item xdgfhdfh
\item dfwhdwjwdj
\item dhgwdfhd<j
\item wdjwftjwyri
\end{itemize}
\end{block}
\end{column}
\begin{column}{0.6\textwidth}
\begin{figure}[h!]
\begin{minipage}[h!]{.5\linewidth}
\begin{center}
\includegraphics[scale=0.1]{b2.jpg}\\
{\footnotesize \emph{Explodrone during an experiment}}
\end{center}
\end{minipage} \hfill
\begin{minipage}[h!]{.5\linewidth}
\begin{center}
\includegraphics[scale=0.1]{b1.jpg}\\
{\footnotesize \emph{Simplified version {\footnotesize \footfullcite{2}}}}
\end{center}
\end{minipage}
\end{figure}
\end{column}
\end{columns}
}
\end{document}
The bib file is the same.
Coline
Attachments
b2.jpg (4.09 KiB) Viewed 16736 times
b1.jpg (4.09 KiB) Viewed 16736 times
Last edited by
cgnieder on Wed Jun 29, 2016 1:54 pm, edited 1 time in total.
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Wed Jun 29, 2016 9:20 am
Anyone ? T_T
Johannes_B
Site Moderator
Posts: 4182 Joined: Thu Nov 01, 2012 4:08 pm
Post
by Johannes_B » Fri Jul 01, 2016 12:52 pm
Use a hack. That is ok for a presentation, but not for a report paper.
Code: Select all
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{array}
\usepackage{multirow}
\usepackage{capt-of}
\usepackage{tabu}
\usepackage{xcolor}
\usepackage[backend=biber,style=authoryear,sorting=none]{biblatex}
\addbibresource{colinBibStuff.bib}
\renewcommand{\thefootnote}{\roman{footnote}}
\begin{document}
\title{Simple Beamer Class}
\author{Sascha Frank}
\date{\today}
\frame{\titlepage}
%\frame{\frametitle{Table of contents}\tableofcontents}
\section{Subsection no.1.1 }
\begin{frame}
\begin{columns}
\begin{column}{0.7\textwidth}
\begin{block}{Introducing the project "Explodrone"}
\begin{itemize}
\item xdgfhdfh
\item dfwhdwjwdj
\item dhgwdfhd<j
\item wdjwftjwyri
\end{itemize}
\end{block}
\end{column}
\begin{column}{0.3\textwidth}
\centering
\includegraphics[scale=0.1]{example-image-a}\\
{\footnotesize \emph{Explodrone during an experiment}\par}\bigbreak
\includegraphics[scale=0.1]{example-image-b}\\
{\footnotesize \emph{Simplified version\textsuperscript{1} }}\\
\end{column}
\end{columns}
\vspace{.1\textheight}
\scriptsize\textsuperscript{1}
\fullcite{2}
\end{frame}
\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.
Colin93
Posts: 57 Joined: Mon Apr 04, 2016 2:55 pm
Post
by Colin93 » Fri Jul 01, 2016 1:37 pm
Didn'it know about that. Thanks ^^