Estou trabalhando em uma publicação para um pequeno periódico regional para o qual não consigo encontrar um estilo de bibliografia natbib pré-existente que atenda às suas diretrizes. Não sou um usuário especialista em LaTeX; na verdade, estou me atrapalhando com isso. Tentei usar o makebst
comando no terminal, mas em algumas questões de múltipla escolha nenhuma das respostas fornecidas correspondia ao formato que a revista desejava. Devo chegar o mais perto possível makebst
e depois entrar e fazer as edições necessárias? Ou existe uma opção melhor para alguém que não é particularmente bom com LaTeX?
Responder1
Podes tentarhttps://github.com/nzhagen/bibulous.
Acho que a sintaxe é mais simples que bst.
main.tex
\documentclass{article}
\begin{document}
\cite{Baumann23}
\cite{RungsirisilpCTM23}
\cite{BernalC23}
\bibliographystyle{mybst}
\bibliography{ref}
\end{document}
ref.bib
@book{Baumann23,
author = {Franziska Baumann},
title = {Embodied Human-Computer Interaction in Vocal Music Performance},
publisher = {Springer},
year = {2023}
}
@article{RungsirisilpCTM23,
author = {Nuttawat Rungsirisilp and Pakaratee Chaiyawat and Sakaowrat Techataweesub and Aungsunee Meesrisuk and Yodchanan Wongsawat},
title = {Applying Action Observation During a Brain-Computer Interface on Upper Limb Recovery in Chronic Stroke Patients},
journal = {{IEEE} Access},
volume = {11},
pages = {4931--4943},
year = {2023}
}
@inproceedings{BernalC23,
author = {Arturo Miguel Russell Bernal and Jane Cleland{-}Huang},
title = {Hierarchically Organized Computer Vision in Support of Multi-Faceted Search for Missing Persons},
booktitle = {{FG}},
pages = {1--7},
publisher = {{IEEE}},
year = {2023}
}
mybst.bst
TEMPLATES:
article = <au>. <title>. <journal>, <year>[, <volume>(<issue>):<startpage>--<endpage>|, <volume>:<startpage>--<endpage>|, <startpage>--<endpage>].
book = <au>. <title>. <publisher>, <year>[, <volume>(<issue>):<startpage>--<endpage>|, <volume>:<startpage>--<endpage>|, <startpage>--<endpage>].
inproceedings = <au>. <title>. <booktitle>, <year>[, <volume>:<startpage>--<endpage>|, <startpage>--<endpage>].
SPECIAL-TEMPLATES:
authorlist = <author.to_namelist()>
authorname.n = [<authorlist.n.first> ]<authorlist.n.last>
au = <authorname.0>, ..., <authorname.N>
E baixe bibulous.py
dehttps://raw.githubusercontent.com/nzhagen/bibulous/master/bibulous.py
Coloque bibulous.py
, main.tex
, mybst.bst
e ref.bib
na mesma pasta.
Execute estes comandos abaixo:
pdflatex -synctex=-1 main.tex
python bibulous.py main.aux
pdflatex -synctex=-1 main.tex
pdflatex -synctex=-1 main.tex