Text FormattingReferences - One column title in two cols list?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
miceleee
Posts: 7
Joined: Wed Jan 19, 2011 1:50 am

References - One column title in two cols list?

Post by miceleee »

Hi there,

thanks again for hosting me here.

I was trying to have the chapter 'References' spanning the whole page as a normal chapter in the document. However, I want the list of references in two columns.
With my actual configuration, chapter name (references) is printed in only one of the 2 columns.
Thanks for any suggestion.
M


\documentclass[a4paper, twoside,12pt]{memoir}%
\chapterstyle{ell} %
%other packages
\usepackage{multicol}
\begin{document}
\chapter{introduction}
\chapter{Results}
\newpage
\begin{multicols}{2}
\begin{small}
\bibliographystyle{unsrt}
\renewcommand{\bibname}{References}
\bibliography{library}
\end{small}
\end{multicols}

\end{document}
Last edited by miceleee on Mon Jan 24, 2011 6:15 am, edited 1 time in total.

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

References - One column title in two cols list?

Post by frabjous »

Try something like this:

Code: Select all

\documentclass[a4paper, twoside,12pt]{memoir}%
\chapterstyle{ell} %
%other packages
\usepackage{multicol}

\renewcommand{\bibname}{References}
\renewenvironment{thebibliography}[1]{%
    \bibsection
    \begin{multicols}{2}
    \begin{small}
    \begin{bibitemlist}{#1}}%
{\end{bibitemlist}%
    \end{small}
    \end{multicols}\postbibhook}

\begin{document}
\chapter{introduction}
\chapter{Results}
\newpage
\bibliographystyle{unsrt}
\bibliography{library}
\end{document}
miceleee
Posts: 7
Joined: Wed Jan 19, 2011 1:50 am

References - One column title in two cols list?

Post by miceleee »

Brilliant!!! It worked smoothly.

I just empirically added again the string \renewcommand{\bibname}{References}, since references section was named and indexed as 'bibliography', instead of 'references'.
Thanks very much for your help and quick reply.
Best,
M

Working code for me was:

Code: Select all

\documentclass[a4paper, twoside,12pt]{memoir}%
\chapterstyle{ell} %
%other packages
\usepackage{multicol}

\renewcommand{\bibname}{References}
\renewenvironment{thebibliography}[1]{%
    \bibsection
    \begin{multicols}{2}
    \begin{small}
    \begin{bibitemlist}{#1}}%
{\end{bibitemlist}%
    \end{small}
    \end{multicols}\postbibhook}

\begin{document}
\chapter{introduction}
\chapter{Results}
\newpage
\bibliographystyle{unsrt}
\renewcommand{\bibname}{References}
\bibliography{library}
\end{document}
Post Reply