Graphics, Figures & Tables\bibliography inside tabularx

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
nipj
Posts: 17
Joined: Thu May 10, 2018 6:15 am

\bibliography inside tabularx

Post by nipj »

Is it possible to use

Code: Select all

\bibliography{mybib.bib}
inside

Code: Select all

\begin{tabularx}{\linewidth}{|X|} ... \end{tabularx}
?

I tried using

Code: Select all

\begin{minipage} \bibliography{mybib.bib} \end{minipage}
inside tabularx, but the bibliography doesnt break across pages, rather, it overfill bottom margin.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

\bibliography inside tabularx

Post by Stefan Kottwitz »

Hi!

tabularx is for tables without page break. For tables spanning several pages, better use longtable. (there's ltablex and ltxtable but I did not check if they are maintained).

Stefan
LaTeX.org admin
nipj
Posts: 17
Joined: Thu May 10, 2018 6:15 am

\bibliography inside tabularx

Post by nipj »

Hello!

Is it possible to add a framework around the references?
nipj
Posts: 17
Joined: Thu May 10, 2018 6:15 am

\bibliography inside tabularx

Post by nipj »

Hello!

Code: Select all

mdframed
Helped.
Post Reply