BibTeX, biblatex and biberA question probably about bibtex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Funny_w
Posts: 5
Joined: Fri Jan 13, 2017 10:24 am

A question probably about bibtex

Post by Funny_w »

Hello guys,
I received an error in bbl file when I used the revtex+texlive+texstudio in both windows and ubuntu environment. I think it is about bibtex or the bib file and tried for the whole day but still have no results. Error was below and files were attached.

many thanks!!
_______________________error like this:

Undefined control sequence {Kang}},\ }\href@noop
Undefined control sequence {Sendra}},\ }\href@noop
Undefined control sequence ...nt {Y.}~\bibnamefont {Ando}},\ }\href@noop
Undefined control sequence {Galindo}},\ }\href@noop

No Society specified, using default society aps.
No journal specified, using default pra.
Underfull \hbox (badness 10000) in paragraph
Underfull \hbox (badness 10000) in paragraph
Underfull \hbox (badness 10000) in paragraph

__________________________________here are the smallest tex file below

Code: Select all

\documentclass[twocolumn, amssymb, preprint, showpacs,superscriptaddress]{revtex4-1}				  % use default format 



\begin{document}

\begin{space}      	% {2.0}

\title[Running Short Title]{title}      % don't need 2 lines, example to show linebreak \\

 \section{\label{sec:1} Introduction}
 
 one~\cite{kang1996acoustics}
 two\cite{sendra1999computational}
three\cite{soeta2012effects}
four\cite{zamarreno2007acoustic}


\bibliographystyle{aipnum4-1}
\bibliography{smallest}
	


 
\end{space}

\end{document}
————————————————————————————————here are part of the bbl file

Code: Select all

\bibitem [{\citenamefont {Kang}(1996)}]{kang1996acoustics}%
  \BibitemOpen
  \bibfield  {author} {\bibinfo {author} {\bibfnamefont {J.}~\bibnamefont
  {Kang}},\ }\href@noop {} {\bibfield  {journal} {\bibinfo  {journal} {The
  Journal of the Acoustical Society of America}\ }\textbf {\bibinfo {volume}
  {99}},\ \bibinfo {pages} {985} (\bibinfo {year} {1996})}\BibitemShut
  {NoStop}%
\bibitem [{\citenamefont {Sendra}(1999)}]{sendra1999computational}%
  \BibitemOpen
  \bibfield  {author} {\bibinfo {author} {\bibfnamefont {J.~J.}\ \bibnamefont
  {Sendra}},\ }\href@noop {} {\  (\bibinfo {year} {1999})}\BibitemShut
  {NoStop}%
________________________________here are part of the bib file(from google scholar)

Code: Select all

@article{kang1996acoustics,
  title={Acoustics in long enclosures with multiple sources},
  author={Kang, Jian},
  journal={The Journal of the Acoustical Society of America},
  volume={99},
  number={2},
  pages={985--989},
  year={1996},
  publisher={Acoustical Society of America}
}



@article{sendra1999computational,
  title={Computational acoustics in architecture},
  author={Sendra, Juan J},
  year={1999},
  publisher={Wit Press}
  pages={192}
}
Attachments
smallest.tex
(513 Bytes) Downloaded 313 times
smallest.bbl
(4.04 KiB) Downloaded 294 times
smallest.bib
(1.36 KiB) Downloaded 309 times
Last edited by Stefan Kottwitz on Fri Jan 13, 2017 11:02 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10326
Joined: Mon Mar 10, 2008 9:44 pm

A question probably about bibtex

Post by Stefan Kottwitz »

Welcome to the forum!

Remove the two lines

\begin{space}
\end{space}


\space is a command (for a blank / white space), not an environment. Without that, the error message doesn't come but it compiles fine and prints the bibliography.

Stefan
LaTeX.org admin
Funny_w
Posts: 5
Joined: Fri Jan 13, 2017 10:24 am

A question probably about bibtex

Post by Funny_w »

Jesus!
It works!
Thank you for your warm and quick answer. I am very grateful to you.

Funny_w
Post Reply