Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@string macros are not recognized in a second bib-file #204

Closed
u-fischer opened this issue Dec 8, 2017 · 2 comments
Closed

@string macros are not recognized in a second bib-file #204

u-fischer opened this issue Dec 8, 2017 · 2 comments

Comments

@u-fischer
Copy link

The example is from tex.SX (https://tex.stackexchange.com/questions/405124/string-issues-with-current-biblatex-biber-how-can-i-stop-my-authors-undergoing).

The issue looks related to issue #199 but biber 3.10 doesn't resolve it -- I tested with a version downloaded today. It still gives:

 WARN - BibTeX subsystem: C:\Users\XXX\AppData\Local\Temp\oAqJw_xMfm\test-utf8.bib_2832.utf8, line 6, warning: undefined macro "name-some"  

Exchanging the order of the bib files changes the warning messages like in #199

Example

\RequirePackage{filecontents}
\begin{filecontents}{abbrv2.bib}
%:punctuation - but use Biblatex macros where possible!
@string{/                               =   {\addslash }}
@string{name-some   = {Name, Some}}
\end{filecontents}
\begin{filecontents}{abbrv3.bib}
@string{great-stuff = {Great } # / # { Stuff}}
\end{filecontents}


\begin{filecontents}{\jobname.bib}
@article{name-fascinate,
  author  = name-some,
  journal = great-stuff,
  pages   = {34--67},
  year    = 1765,
  volume  = 3,
  number  = 2,
  title   = {Fascinating Finds}}
\end{filecontents}


\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber]{biblatex}
\bibliography{abbrv2, abbrv3, \jobname}
\begin{document}

\autocite{name-fascinate}

\printbibliography

\end{document}
plk added a commit that referenced this issue Dec 8, 2017
@plk
Copy link
Owner

plk commented Dec 8, 2017

Should be fixed in the 2.10 version just uploaded.

@u-fischer
Copy link
Author

Looks ok. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants