1

我希望引用的两列不均匀,例如引用出现在左列直到没有更多空间,然后在右列。提前致谢!

这是我尝试过的:

\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

4

1 回答 1

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}

在此处输入图像描述

于 2020-07-08T07:46:10.960 回答