BibTex、拖船和引文格式

BibTex、拖船和引文格式

我快要写完一篇文章了,但是 BibTex 有点问题。我不知道如何获得格式正确的引文。我从来没有用过 BibTeX。布局太糟糕了。我该如何调整字体大小?如何调整网址?

\documentclass{ltugboat}

\begin{document}
  \cite{ctan-elements}
  \cite{ctan-euclide}
  \cite{apollonius}    
  \cite{kissing}
  \cite{weisstein}
\bibliographystyle{tugboat}
\bibliography{tug_article}
\end{document}

我的文件 tug_article.bib (我不知道是否howpublished比 更好url?)

@misc{ctan-elements,
        author = {Alain Matthes},
        title = {tkz-elements},
        howpublished =  "https://www.ctan.org/pkg/tkz-elements",
        year = {2024},
}

@misc{ctan-euclide,
        author = {Alain Matthes},
        title = {tkz-euclide},
        howpublished =  "https://www.ctan.org/pkg/tkz-euclide",
        year = {2023},   
}

@misc{apollonius,
    author   = {Weisstein, Eric W.},
    year = {n.d.},
    title    = {Apollonius Circle. {From MathWorld---A Wolfram Web Resource}},
    howpublished =  "https://mathworld.wolfram.com/ApolloniusCircle.html",
}

@misc{kissing,
    author   = {Weisstein, Eric W.},
    year = {n.d.},
    title    = {Tangent Circles. {From MathWorld---A Wolfram Web Resource}},
    howpublished =  "https://mathworld.wolfram.com/TangentCircles.html",
}

@misc{weisstein,
    author   = {Weisstein, Eric W.},
    title    = {Tree. {From MathWorld---A Wolfram Web Resource}},
    url      = {\url{http://mathworld.wolfram.com/Tree.html}},
    note     = {Last visited on 13/4/2012},
}

问题在于 Underfull \hbox 和延伸到引文第一行的文本。

在此处输入图片描述

答案1

经过几次尝试,我得出了这个结论:

我使用\usepackage{url}并编写了 tug_article.bib,如下所示:

在此处输入图片描述

结果 :

我本来希望在 URL 开头有一个换行符,但如果我按照我的做法继续操作,URL 就会被切断。

在此处输入图片描述

相关内容