选择围兜款式

选择围兜款式

哪种围兜样式最适合满足以下要求?

abbrv或者另一个?)

我知道最后可以进行手动修改,但也许这项作业的 bibstyle(会议的 tex 模板)是可用的。

要求:

\item {\bf References:} Must be numbered in the order cited in the manuscript
and indicated in the text by a number in square brackets ({\it e.g.}, [1]).\newline
\newline
The required format for references is:
    \begin{itemize}
    \item {\bf Papers:}
    Author, paper title, {\em journal name (in italics)}, volume and issue
    numbers, year, inclusive pages. {\it e.g.}: \smallskip \newline
    [1] T.C. Hsia, Simple robust schemes for space control
    of robot manipulators, {\it Int. J. of Robotics and Automation}, 9(4),
    1994, 167-174.
    \item {\bf Books:} Author, {\em title (in italics)} (location of
    publisher, publisher, year). {\it e.g.}:\smallskip \newline
    [2] M. Kayston and W.R. Fried, {\it Avionic Navigation
    Systems} (New York: John Wiley and Sons Inc., 1969).
    \item {\bf Chapters in Books:} Chapter Author, Chapter Title, in
    Editor (Ed.), {\em title (in italics)}  (location of publisher,
    publisher, year) inclusive pages. {\it e.g.}: \smallskip \newline
    [3] P.O. Biship, Neurophysiology of binocular vision,
    in J. Housman (Ed.) {\em Handbook of physiology}, 4 (New York:
    Springer-Verlag, 1970) 342-366.
    \item {\bf Proceedings Papers:} Author, paper title, {\em proceedings
    title (in italics)}, City, Country, year, inclusive pages. {\it e.g.}:
    \smallskip \newline
    [4] W.J. Book, Modelling design and control of
    flexible manipulator arms: A tutorial review, {\it Proc. 29th IEEE Conf. on
    Decision and Control}, San Francisco, USA, 1990, 500-506.
    \end{itemize}

答案1

makebst允许你创建自己的bibtex风格。只需打开一个终端窗口(命令行界面),输入

latex makebst

并回答提示中的问题。最后它会生成符合您要求的样式。

答案2

也许您想考虑使用以下解决方案biblatex

\begin{filecontents}{mwe.bib}
    @article{Test1,
    author = {An Author},
    title = {Nice title},
    journaltitle = {The Journal of Nonsense},
    date = {2012},
    volume = {1},
    number = {13},
    pages = {13-23},
    }

    @book{Test2,
    author = {Big Bethor},
    title = {Some random Book},
    date = {1999},
    publisher = {Oneandonly Publishing},
    location = {Earth},
    pages = {18-22},
    }

    @inbook{Test3,
    author = {Crazy Cethor and Dumb Dethor},
    title = {Any weird title},
    booktitle = {The book of stuff},
    date = {1857},
    editor = {Edwin Editor},
    publisher = {Crazy Publishers},
    location = {The Universe},
    pages = {899-947},
    }
    @inproceedings{Test4,
    author = {Frank Fauthor and Gary Gethor},
    editor = {Oscar Odithor},
    title = {My Research},
    booktitle = {The Conference of Research},
    date = {2030},
    venue = {Vaduz, Liechtenstein},
    pages = {255-256},
    }

\end{filecontents}

\documentclass{article}
\usepackage[style=numeric,
    sorting=none,
    firstinits=true,
    backend=bibtex]{biblatex}
\usepackage{blindtext}
\addbibresource{mwe.bib}

\begin{document}
\blindtext \cite{Test2} \blindtext \cite{Test1,Test4} \blindtext \cite{Test3}
\printbibliography
\end{document}

输出

有一些小的格式需要优化

但这些应该很容易做到。据我所知,关键要求(方括号中的引用,按引用顺序编号)已经满足。

相关内容