我们如何才能在一些空格后水平放置两个 bibitem(即图标形式)?
[1] 文本1 [2] 文本2
事实上我需要它beamer
。
\begin{thebibliography}{9}
\setbeamertemplate{bibliography item}[article]
\bibitem{} (Jungck and Rhoades [72],
\bibitem{} Padaliya and Pant [88], Pant [92,94], Pant and Pant [100], Sastry and Murthy [119], and Singh and Kumar [128])
\end{thebibliography}
\end{frame}
答案1
那这个呢
\documentclass{beamer}
\begin{document}
\begin{frame}
Here's some text
\begin{minipage}{.5\linewidth}
\begin{thebibliography}{}
\bibitem{key1}%
Author J., 2014
\newblock Some great title
\newblock {\em Journal of Universal Rejection}
\end{thebibliography}
\end{minipage}% <- important to suppress whitespace between "columns"
\begin{minipage}{.5\linewidth}
\begin{thebibliography}{}
\bibitem{key2}%
Doe J., 2011
\newblock Another great title
\newblock {\em Journal of Universal Rejection}
\end{thebibliography}
\end{minipage}
\end{frame}
\end{document}