Как разбалансировать столбцы библиографии в латексе?

Я хотел бы, чтобы два столбца ссылок были неравномерными, например, чтобы ссылки появлялись в левом столбце до тех пор, пока не останется места, а затем в правом столбце. Заранее спасибо!

Вот что я пробовал:

\documentclass[jou]{apa7}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber, natbib = true]{biblatex} 
\addbibresource{output.bib} 

\title{Paper title}
\author{Author}

\begin{document}
\maketitle 
\cite{author1}
\cite{author2}
\cite{author3}
\printbibliography

\end{document}

Код библиографии:

@article{author1,
  title={The title of the Article is this},
  author={Author and Author and Author and Author and Author},
  journal={Journal where article was published},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

@article{author2,
  title={Article Title},
  author={Author and Author},
  journal={Journal},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

@article{author3,
  title={Article Title},
  author={Author and Author},
  journal={Journal},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

Вывод:
https://i.stack.imgur.com/85KzW.png< /а>


person Marie    schedule 07.07.2020    source источник


Ответы (1)


Использование пакета flushend:

\documentclass[jou]{apa7}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber, natbib = true]{biblatex} 

\usepackage{flushend}



\begin{filecontents*}[overwrite]{\jobname.bib}
@article{author1,
  title={The title of the Article is this},
  author={Author and Author and Author and Author and Author},
  journal={Journal where article was published},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

@article{author2,
  title={Article Title},
  author={Author and Author},
  journal={Journal},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

@article{author3,
  title={Article Title},
  author={Author and Author},
  journal={Journal},
  volume={7},
  number={6},
  pages={259--270},
  year={2015},
  publisher={publisher}
}

\end{filecontents*}

\addbibresource{\jobname.bib} 

\title{Paper title}
\author{Author}

\begin{document}
\maketitle 
\cite{author1}
\cite{author2}
\cite{author3}

\raggedend
\printbibliography

\end{document}

введите здесь описание изображения

person samcarter_is_at_topanswers.xyz    schedule 08.07.2020