IEEE 格式的单独参考部分

IEEE 格式的单独参考部分

IEEE 论文格式可以查看这里。在最后一页中,参考以致谢结尾开始。我可以这样做,\balance以前用过\printbibliography[title=References]。现在我想添加一些调整,如下所示:这

我想要表达的主要思想是:直到参考文献为止,所有文本都是平衡的。然后在同一页上重新开始参考文献部分。

平均能量损失:不知何故文档不平衡(lipsum以前从未使用过)。示例取自这里

\documentclass[conference]{IEEEtran}

\hyphenation{op-tical net-works semi-conduc-tor}

\usepackage{tikz}
\usepackage{balance}

\usepackage[backend=biber,
    natbib=true,
    style=ieee,
    citestyle=numeric-comp,
    sorting=none,
    doi=false,
    isbn=false,
    url=true,
    mincitenames=1,
    maxcitenames=1,
    urldate=long,
]{biblatex}
\usepackage{lipsum}

\usepackage{filecontents}
\begin{filecontents*}{test.bib}

@inproceedings{zhu1,
  author =        {Benjamin Zhu and Kai Li and Hugo Patterson},
  booktitle =     {USENIX Conference on File and Storage Technologies
                   (FAST'08)},
  month =         {Feb},
  title =         {Avoiding the Disk Bottleneck in the {D}ata {D}omain
                   Deduplication File System},
  year =          {2008},
}
@article{zhu2,
  author =        {Benjamin Zhu and Kai Li and Hugo Patterson},
  booktitle =     {USENIX Conference on File and Storage Technologies
                   (FAST'08)},
  month =         {Feb},
  title =         {Avoiding the Disk Bottleneck in the {D}ata {D}omain
                   Deduplication File System},
  year =          {2008},
}
\end{filecontents*}


\addbibresource{test.bib}

\begin{document}

\title{Bare Demo of IEEEtran.cls\\ for IEEE Conferences}

\author{\IEEEauthorblockN{Michael Shell}}

\maketitle

\begin{abstract}
The abstract goes here.
\end{abstract}

\IEEEpeerreviewmaketitle

\section{Introduction}

This demo file is intended to serve as a ``starter file''
for IEEE conference papers produced under \LaTeX\ using
IEEEtran.cls version 1.8b and later.

\lipsum[2]

I wish you the best of success.

\subsection{Subsection Heading Here}
Subsection text here. Citations here \cite{zhu1}.
\lipsum[2]

\subsubsection{Subsubsection Heading Here}
Subsubsection text here \cite{zhu2}.
\lipsum[1]

\section{Conclusion}
The conclusion goes here.
\lipsum[1]

\section*{Acknowledgment}
The authors would like to thank...
\lipsum[1]

\balance
\printbibliography[title=References]

\end{document}

答案1

使用stripcuted包我设法得到了类似的结果。不过,我必须手动添加两列环境。

\documentclass[conference]{IEEEtran}

\hyphenation{op-tical net-works semi-conduc-tor}

\usepackage{tikz}
\usepackage{cuted}
\usepackage{multicol}
\usepackage{balance}

\usepackage[backend=biber,
natbib=true,
style=ieee,
citestyle=numeric-comp,
sorting=none,
doi=false,
isbn=false,
url=true,
mincitenames=1,
maxcitenames=1,
urldate=long,
]{biblatex}
\usepackage{lipsum}

\usepackage{filecontents}
\begin{filecontents*}{test.bib}

@inproceedings{zhu1,
  author =        {Benjamin Zhu and Kai Li and Hugo Patterson},
  booktitle =     {USENIX Conference on File and Storage Technologies
               (FAST'08)},
  month =         {Feb},
  title =         {Avoiding the Disk Bottleneck in the {D}ata {D}omain
               Deduplication File System},
  year =          {2008},
}
@article{zhu2,
  author =        {Benjamin Zhu and Kai Li and Hugo Patterson},
  booktitle =     {USENIX Conference on File and Storage Technologies
               (FAST'08)},
  month =         {Feb},
  title =         {Avoiding the Disk Bottleneck in the {D}ata {D}omain
               Deduplication File System},
  year =          {2008},
}
\end{filecontents*}


\addbibresource{test.bib}

\begin{document}

\title{Bare Demo of IEEEtran.cls\\ for IEEE Conferences}

\author{\IEEEauthorblockN{Michael Shell}}

\maketitle

\begin{abstract}
The abstract goes here.
\end{abstract}

\IEEEpeerreviewmaketitle

\section{Introduction}

This demo file is intended to serve as a ``starter file''
for IEEE conference papers produced under \LaTeX\ using
IEEEtran.cls version 1.8b and later.

\lipsum[2]

I wish you the best of success.

\subsection{Subsection Heading Here}
Subsection text here. Citations here \cite{zhu1}.
\lipsum[2]

\subsubsection{Subsubsection Heading Here}
Subsubsection text here \cite{zhu2}.
\lipsum[1]

\section{Conclusion}
The conclusion goes here.
\lipsum[1]

\section*{Acknowledgment}
The authors would like to thank...
\lipsum[1]


\begin{strip}\leavevmode\kern15pt
\begin{multicols}{2}
    \printbibliography[title=References]
\end{multicols}
\end{strip}

\end{document}

相关内容