在 SWP 中使用 bibtex 自定义 apacite 样式

在 SWP 中使用 bibtex 自定义 apacite 样式

抱歉,我问的问题比较基础,但我在完成论文时遇到了困难。我使用的是 Scientific Workplace 5.5(LaTeX 语言非常基础),我需要进行自定义apacite以满足学院的要求。

我需要:

  1. 能够自定义 .bbl 文件并处理大写问题,

  2. 创建一个“编号”参考列表,

  3. 修改行距。

即使我.bbl使用 Notepad++ 编辑文件,我的输出 PDF 文件也没有任何变化。

由于我使用的是 SWP,所以我不确定在哪里添加必要的代码来引入编号。

.bbl这是我的文件的示例:

\begin{thebibliography}{}


\bibitem[\protect\citeauthoryear{%
  C. Capps}{%
  C. Capps}{%
  2010}]{%
  Capp10b}%
  \APACinsertmetastar{%
    Capp10b}%
  Capps, C. \newblock{}\BBOP{}2010, June\BBCP{}. \newblock{}\BBOQ{}Buyer power in health plan mergers.\BBCQ{} \newblock{}\Bem{Journal of Competition Law and Economics}, \Bem{6}(2), 375-391.

\bibitem[\protect\citeauthoryear{%
  C. Capps \BBA{} Dranove}{%
  C. Capps \BBA{} Dranove}{%
  2004}]{%
  Capp04}%
  \APACinsertmetastar{%
    Capp04}%
  Capps, C.\BCBT{} \BBA{} Dranove, D. \newblock{}\BBOP{}2004, March\BBCP{}. \newblock{}\BBOQ{}Hospital consolidation and negotiated ppo prices.\BBCQ{} \newblock{}\Bem{Health Affairs}(2), 175-181.

\end{thebibliography}

以下是我在 SWP 中编写的序言:

\newtheorem{theorem}{Theorem}
\newtheorem{acknowledgement}[theorem]{Acknowledgement}
\newtheorem{algorithm}[theorem]{Algorithm}
\newtheorem{axiom}[theorem]{Axiom}
\newtheorem{case}[theorem]{Case}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{conclusion}[theorem]{Conclusion}
\newtheorem{condition}[theorem]{Condition}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{corollary}{Corollary}
\newtheorem{criterion}[theorem]{Criterion}
\newtheorem{definition}{Definition} \newtheorem{assumption}{Assumption}
\newtheorem{example}[theorem]{Example}
\newtheorem{exercise}[theorem]{Exercise}
\newtheorem{lemma}{Lemma}
\newtheorem{notation}[theorem]{Notation}
\newtheorem{problem}[theorem]{Problem}
\newtheorem{proposition}{Proposition}
\newtheorem{remark}{Remark}
\newtheorem{solution}[theorem]{Solution}
\newtheorem{summary}[theorem]{Summary}
\newenvironment{proof}[1][Proof]{\noindent\textbf{#1.} }{\ \rule{0.5em}{0.5em}}
\geometry{left=1.378in,right=0.984in,top=0.984in,bottom=0.984in}
\setlength{\parindent}{0.25in}
\setlength{\parskip}{8pt plus 1pt minus 1pt}
\widowpenalty=50000000
\clubpenalty=50000000
\titleformat*{\section}{\normalsize\bfseries}
\titleformat*{\subsection}{\normalsize\bfseries}
\titleformat*{\subsubsection}{\normalsize\bfseries}

答案1

我了解到使用在线 tex 编辑器可以解决所有这些问题。我更喜欢 writelatex,因为它同时提供预览,因此不可能使代码变得混乱。由于它是一项在线服务,因此无需查找和下载每个附加包,因此我可以使用 Bernard 和 mvkorpel 上面建议的替代方案。

相关内容