我想将我的引文放在列外(因为它需要更多空间)。我发现,这\footnotemark
可能\footcitetext
是解决方案,但遗憾的\footcitetext
是不起作用。它无法识别(在 TeXstudio 中以红色突出显示)并且不会产生所需的输出。
我的代码:
% !TeX spellcheck = en_GB
\documentclass[aspectratio=169]{beamer}
\mode<presentation>
{
\usetheme{Boadilla} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{default} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber, sorting=none, style=ieee, doi=false, isbn=false, url=false]{biblatex}
\bibliography{mybib}
\title[Beamer]{Beamer}
\author{name}
\date{date}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
\begin{columns}
\begin{column}{.5\textwidth}
Col1
\end{column}
\begin{column}{.5\textwidth}
\begin{figure}[!htbp]
\centering
\includegraphics[width=0.6\linewidth]{fig1.png}
\caption{Case 2.1. \footnotemark}
\end{figure}
\end{column}
\footcitetext{andrada_switched_2003}
\end{columns}
\vskip 1cm
\end{frame}
\begin{frame}
\printbibliography
\end{frame}
\end{document}
mybib.bib:
@article{andrada_switched_2003,
title = {Switched Reluctance Drives for Electric Vehicle Applications},
volume = {1},
issn = {2172038X},
url = {http://www.icrepq.com/pdfs/ANDR.373.pdf},
doi = {10.24084/repqj01.373},
abstract = {Electric vehicles are the only alternative for a clean, efficient and environmentally friendly urban transport system. With the increasing interest in electric vehicles, a great effort is required in order to develop electric drives for electric vehicle propulsion. This paper first tries to explain why the switched reluctance drive is a strong candidate for electric vehicle applications. It then gives switched reluctance drive design guidelines for battery or fuel cell operated electric vehicles. Finally, it presents the design and simulation of a switched reluctance motor power train.},
pages = {311--317},
number = {1},
journaltitle = {Renewable Energy and Power Quality Journal},
shortjournal = {{REPQJ}},
author = {Andrada, Pere and Blanqué, Baldui and Torret, M. and Perat, J.I.},
urldate = {2020-03-26},
date = {2003-04},
langid = {english},
}
答案1
这里有一种方法:
\documentclass[aspectratio=169]{beamer}
\usepackage{filecontents}
\begin{filecontents}{mybib.bib}
@article{andrada_switched_2003,
title = {Switched Reluctance Drives for Electric Vehicle Applications},
volume = {1},
issn = {2172038X},
url = {http://www.icrepq.com/pdfs/ANDR.373.pdf},
doi = {10.24084/repqj01.373},
abstract = {Electric vehicles are the only alternative for a clean, efficient and environmentally friendly urban transport system. With the increasing interest in electric vehicles, a great effort is required in order to develop electric drives for electric vehicle propulsion. This paper first tries to explain why the switched reluctance drive is a strong candidate for electric vehicle applications. It then gives switched reluctance drive design guidelines for battery or fuel cell operated electric vehicles. Finally, it presents the design and simulation of a switched reluctance motor power train.},
pages = {311--317},
number = {1},
journaltitle = {Renewable Energy and Power Quality Journal},
shortjournal = {{REPQJ}},
author = {Andrada, Pere and Blanqué, Baldui and Torret, M. and Perat, J.I.},
urldate = {2020-03-26},
date = {2003-04},
langid = {english},
}
\end{filecontents}
\mode<presentation>
{
\usetheme{Boadilla} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{default} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber, sorting=none, style=verbose, doi=false, isbn=false, url=false]{biblatex}
\bibliography{mybib}
\title[Beamer]{Beamer}
\author{name}
\date{date}
\renewcommand\thefootnote{[\arabic{footnote}]}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
\begin{columns}
\begin{column}{.5\textwidth}
Col1
\end{column}
\begin{column}{.5\textwidth}
\begin{figure}[!htbp]
\centering
%\includegraphics[width=0.6\linewidth]{fig1.png}
\caption{Case 2.1. \footnotemark}
\end{figure}
\end{column}
\footcitetext{andrada_switched_2003}
\end{columns}
\vskip 1cm
\end{frame}
\begin{frame}
\printbibliography
\end{frame}
\end{document}
输出:
编辑:
\documentclass[aspectratio=169]{beamer}
\usepackage{filecontents}
\begin{filecontents}{mybib.bib}
@article{andrada_switched_2003,
title = {Switched Reluctance Drives for Electric Vehicle Applications},
volume = {1},
issn = {2172038X},
url = {http://www.icrepq.com/pdfs/ANDR.373.pdf},
doi = {10.24084/repqj01.373},
abstract = {Electric vehicles are the only alternative for a clean, efficient and environmentally friendly urban transport system. With the increasing interest in electric vehicles, a great effort is required in order to develop electric drives for electric vehicle propulsion. This paper first tries to explain why the switched reluctance drive is a strong candidate for electric vehicle applications. It then gives switched reluctance drive design guidelines for battery or fuel cell operated electric vehicles. Finally, it presents the design and simulation of a switched reluctance motor power train.},
pages = {311--317},
number = {1},
journaltitle = {Renewable Energy and Power Quality Journal},
shortjournal = {{REPQJ}},
author = {Andrada, Pere and Blanqué, Baldui and Torret, M. and Perat, J.I.},
urldate = {2020-03-26},
date = {2003-04},
langid = {english},
}
\end{filecontents}
\mode<presentation>
{
\usetheme{Boadilla} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{default} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=biber, sorting=none, style=verbose, doi=false, isbn=false, url=false]{biblatex}
\bibliography{mybib}
\title[Beamer]{Beamer}
\author{name}
\date{date}
%From Werner: https://tex.stackexchange.com/a/333024/120578
\makeatletter
% Default:
% \def\@makefnmark{\hbox{\@textsuperscript{\normalfont\@thefnmark}}}
\renewcommand{\@makefnmark}{\makebox{\normalfont[\@thefnmark]}}
\makeatother
%\renewcommand\thefootnote{[\arabic{footnote}]}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
\begin{columns}
\begin{column}{.5\textwidth}
Col1
\end{column}
\begin{column}{.5\textwidth}
\begin{figure}[!htbp]
\centering
%\includegraphics[width=0.6\linewidth]{fig1.png}
\caption{Case 2.1. \footnotemark}
\end{figure}
\end{column}
\footcitetext{andrada_switched_2003}
\end{columns}
\vskip 1cm
\end{frame}
\begin{frame}
\printbibliography
\end{frame}
\end{document}