BibTex, 예인선 및 인용 형식

BibTex, 예인선 및 인용 형식

기사를 마무리하고 있는데 BibTex에 약간의 문제가 있습니다. 올바른 형식의 인용을 얻는 방법을 모르겠습니다. 저는 BibTeX를 사용해본 적이 없습니다. 레이아웃이 끔찍합니다. 글꼴 크기를 어떻게 조정하나요? URL을 조정하는 방법은 무엇입니까?

\documentclass{ltugboat}

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

howpublished내 파일 tug_article.bib ( 보다 나은지 모르겠습니다 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이 잘립니다.

여기에 이미지 설명을 입력하세요

관련 정보