在表格单元格中插入参考书目

在表格单元格中插入参考书目

有没有办法将参考书目从refsection右侧插入到表格单元格中?或者也许有一种变通方法可以使其看起来像表格单元格。

需要注意的是,表格中还有其他单元格,并且表格中有几列已知宽度的列。

解决方案

最终版本似乎是

\begin{tabular}{c p{5cm} p{11cm}}
42 & Bibliography & \nocite{*} {\printbibliography[heading=none]} \\
\end{tabular}

请注意 周围的括号\printbibliography[heading=none]

答案1

您可以使用小页面来包装子参考书目。M(ish)WE,包含五个随机参考sample.bib

\documentclass{article}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{sample.bib}
\begin{document}
\section{First part}
\begin{refsection}
See the following: \cite{a,b,c}

\begin{tabular}{|l|l|l|}
\hline
a & b & c\\
\hline
\begin{minipage}{8cm}\vspace{2mm}\printbibliography[heading=subbibliography]\end{minipage} & d & e\\
\hline
\end{tabular}
\end{refsection}

\begin{refsection}
\section{Second part}
See also: \cite{d,e}
\printbibliography[heading=subbibliography]
\end{refsection}

\end{document}

结果:

在此处输入图片描述

相关内容