奇怪的参考书目部分

奇怪的参考书目部分

我正在使用一个会议模板,但得到的布局很奇怪。文本类型是文章,有双列。可从此页面下载该模板:http://www.aimi-musica.org/?page_id=3208

假设普通文本为 10pt,而 \section{} 标题为 12pt。

当我到达末尾时,我输入 \bibliography{some bibliography}。这将在列中央创建一个空白部分(仅带有星号 12pt 的部分编号),然后在列左侧创建单词“参考文献”,并带有文本字体大小。

我附上了该问题的图片。

在此处输入图片描述


通过写作:

\section*{Reference}

\bibliography{cim2018template}

我遇到了两次这个问题!:D

在此处输入图片描述


这段代码重现了这个问题:

% -----------------------------------------------
% Template for CIM 2018
% adapted from the template for CIM 2016
% which was adapted itself from the template for SMC 2010
% -----------------------------------------------

\documentclass{article}
\usepackage{amsmath}
\usepackage{cim2018}
\usepackage{times}
\usepackage{ifpdf}
\usepackage[T1]{fontenc}
\usepackage[italian,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[square, numbers]{natbib}
%user defined variables
%\def\papertitle{Punti di discontinuità e cadenze spaziali: due concetti sperimentali per lo sviluppo di nuove teorie musicali}
\def\papertitle{Points of discontinuity and spatial cadences: two experimental concepts for the development of musical theory}
\def\author{Luca Danieli}

% adds the automatic
% Saves a lot of ouptut space in PDF... after conversion with the distiller
% Delete if you cannot get PS fonts working on your system.

% pdf-tex settings: detect automatically if run by latex or pdflatex
\newif\ifpdf
\ifx\pdfoutput\relax
\else
   \ifcase\pdfoutput
      \pdffalse
   \else
      \pdftrue
\fi
\fi

\ifpdf % compiling with pdflatex
  %\pdfcompresslevel=9
  \usepackage[pdftex]{graphicx}
  \usepackage[labelfont=bf]{caption}
  \usepackage{subcaption}
  \usepackage[pdftex,
    pdftitle={\papertitle},
    pdfauthor={\firstauthor},
    bookmarksnumbered, % use section numbers with bookmarks
    pdfstartview=XYZ % start with zoom=100% instead of full screen; especially useful if working with a big screen :-)
   ]{hyperref}
  %\usepackage[figure,table]{hypcap}

  % put here are the names of the the PDF figures for the PDFlatex
  \global \def\fig1{figure.pdf}

\else % compiling with latex
  \usepackage[dvips]{epsfig,graphicx}
  %define the EPS figures here as PDFlatex does not accept them
  \usepackage[dvips,
    bookmarksnumbered, % use section numbers with bookmarks
    pdfstartview=XYZ % start with zoom=100% instead of full screen
  ]{hyperref}
  % hyperrefs are active in the pdf file after conversion
  %\usepackage[figure,table]{hypcap}

  \global \def\fig1{figure.eps}

\fi

%setup the hyperref package - make the links black without a surrounding frame
\hypersetup{
    colorlinks,%
    citecolor=black,%
    filecolor=black,%
    linkcolor=black,%
    urlcolor=black
}


% Title.
% ------
\title{\papertitle}

% Single address
% To use with only one author or several with the same address
% ---------------
%\oneauthor
% {\firstauthor} {Affiliation1 \\ {\tt \href{mailto:[email protected]}{[email protected]}}}
% 
%
%Two addresses
%--------------
% \twoauthors
%  {\firstauthor} {Affiliation1 \\ {\tt \href{mailto:[email protected]}{[email protected]}}}
%  {\secondauthor} {Affiliation2 \\ {\tt \href{mailto:[email protected]}{[email protected]}}}

% Three addresses
% --------------
 \oneauthor
   {\author} {University of Birmingham \\ Dep. of Electroacoustic Music \\ Birmingham (UK) \\ {\tt \href{mailto:[email protected]}{[email protected]}} \\ {\tt \href{mailto:[email protected]}{[email protected]}}}


% ***************************************** the document starts here ***************
\begin{document}
%
\section*{Reference}

\bibliography{cim2018template}

\end{document}

我确信这可能与使用的软件包有关

相关内容