plauthorname undefined when using publist











up vote
0
down vote

favorite












I want to build a publication list for myself using biblatex-publist. I follow the instruction in the doc version 1.11 but I get the error message




Undefined control sequence. l.4 plauthorname
{Frank} The control sequence at the end of the top line of your error message was never def'ed.




My trivial small example is:



documentclass{article}
usepackage[bibstyle=publist]{biblatex}

plauthorname{Frank}
addbibresource{AFcleanarticles.bib}

begin{document}

title{Andrew U. Frank's publications}
date{today}
maketitle


section{Articles}
newrefsection[AFcleanarticles]
nocite{*}
printbibliography[heading=none]

end{document}


the log file - following the suggestion - says:



(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def)
Package biblatex Info: Trying to load biblatex bibstyle data model...
Package biblatex Info: ... file 'publist.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.


and indeed I have no biblatex-dm.cfg and have
/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.cbx
and the correspoinding dbx.



More from the log:



Package biblatex Info: Trying to load bibliography style 'publist'...
Package biblatex Info: ... file 'publist.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.bbx
File: publist.bbx 2016/08/06 v.1.3 biblatex bibliography style (JSP)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
File: authoryear.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
c@bbx:relatedcount=count271
c@bbx:relatedtotal=count272
))
extralabelnumberwidth=skip57
)


The installation is with debian packages on a linux-debian(stretch) system.



what am I doing wrong? Help appreciated!










share|improve this question




















  • 1




    The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
    – moewe
    yesterday










  • Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
    – user855443
    yesterday










  • publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
    – moewe
    yesterday








  • 1




    Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
    – moewe
    yesterday










  • I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
    – user855443
    yesterday















up vote
0
down vote

favorite












I want to build a publication list for myself using biblatex-publist. I follow the instruction in the doc version 1.11 but I get the error message




Undefined control sequence. l.4 plauthorname
{Frank} The control sequence at the end of the top line of your error message was never def'ed.




My trivial small example is:



documentclass{article}
usepackage[bibstyle=publist]{biblatex}

plauthorname{Frank}
addbibresource{AFcleanarticles.bib}

begin{document}

title{Andrew U. Frank's publications}
date{today}
maketitle


section{Articles}
newrefsection[AFcleanarticles]
nocite{*}
printbibliography[heading=none]

end{document}


the log file - following the suggestion - says:



(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def)
Package biblatex Info: Trying to load biblatex bibstyle data model...
Package biblatex Info: ... file 'publist.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.


and indeed I have no biblatex-dm.cfg and have
/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.cbx
and the correspoinding dbx.



More from the log:



Package biblatex Info: Trying to load bibliography style 'publist'...
Package biblatex Info: ... file 'publist.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.bbx
File: publist.bbx 2016/08/06 v.1.3 biblatex bibliography style (JSP)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
File: authoryear.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
c@bbx:relatedcount=count271
c@bbx:relatedtotal=count272
))
extralabelnumberwidth=skip57
)


The installation is with debian packages on a linux-debian(stretch) system.



what am I doing wrong? Help appreciated!










share|improve this question




















  • 1




    The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
    – moewe
    yesterday










  • Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
    – user855443
    yesterday










  • publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
    – moewe
    yesterday








  • 1




    Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
    – moewe
    yesterday










  • I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
    – user855443
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I want to build a publication list for myself using biblatex-publist. I follow the instruction in the doc version 1.11 but I get the error message




Undefined control sequence. l.4 plauthorname
{Frank} The control sequence at the end of the top line of your error message was never def'ed.




My trivial small example is:



documentclass{article}
usepackage[bibstyle=publist]{biblatex}

plauthorname{Frank}
addbibresource{AFcleanarticles.bib}

begin{document}

title{Andrew U. Frank's publications}
date{today}
maketitle


section{Articles}
newrefsection[AFcleanarticles]
nocite{*}
printbibliography[heading=none]

end{document}


the log file - following the suggestion - says:



(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def)
Package biblatex Info: Trying to load biblatex bibstyle data model...
Package biblatex Info: ... file 'publist.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.


and indeed I have no biblatex-dm.cfg and have
/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.cbx
and the correspoinding dbx.



More from the log:



Package biblatex Info: Trying to load bibliography style 'publist'...
Package biblatex Info: ... file 'publist.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.bbx
File: publist.bbx 2016/08/06 v.1.3 biblatex bibliography style (JSP)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
File: authoryear.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
c@bbx:relatedcount=count271
c@bbx:relatedtotal=count272
))
extralabelnumberwidth=skip57
)


The installation is with debian packages on a linux-debian(stretch) system.



what am I doing wrong? Help appreciated!










share|improve this question















I want to build a publication list for myself using biblatex-publist. I follow the instruction in the doc version 1.11 but I get the error message




Undefined control sequence. l.4 plauthorname
{Frank} The control sequence at the end of the top line of your error message was never def'ed.




My trivial small example is:



documentclass{article}
usepackage[bibstyle=publist]{biblatex}

plauthorname{Frank}
addbibresource{AFcleanarticles.bib}

begin{document}

title{Andrew U. Frank's publications}
date{today}
maketitle


section{Articles}
newrefsection[AFcleanarticles]
nocite{*}
printbibliography[heading=none]

end{document}


the log file - following the suggestion - says:



(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def)
Package biblatex Info: Trying to load biblatex bibstyle data model...
Package biblatex Info: ... file 'publist.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.


and indeed I have no biblatex-dm.cfg and have
/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.cbx
and the correspoinding dbx.



More from the log:



Package biblatex Info: Trying to load bibliography style 'publist'...
Package biblatex Info: ... file 'publist.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex-publist/publist.bbx
File: publist.bbx 2016/08/06 v.1.3 biblatex bibliography style (JSP)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
File: authoryear.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2016/12/05 v3.7 biblatex bibliography style (PK/JW/AB)
c@bbx:relatedcount=count271
c@bbx:relatedtotal=count272
))
extralabelnumberwidth=skip57
)


The installation is with debian packages on a linux-debian(stretch) system.



what am I doing wrong? Help appreciated!







biblatex biber






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday

























asked yesterday









user855443

2658




2658








  • 1




    The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
    – moewe
    yesterday










  • Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
    – user855443
    yesterday










  • publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
    – moewe
    yesterday








  • 1




    Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
    – moewe
    yesterday










  • I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
    – user855443
    yesterday














  • 1




    The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
    – moewe
    yesterday










  • Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
    – user855443
    yesterday










  • publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
    – moewe
    yesterday








  • 1




    Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
    – moewe
    yesterday










  • I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
    – user855443
    yesterday








1




1




The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
– moewe
yesterday




The MWE compiles without error for me. Can you double check in the .log that LaTeX really loads the version of biblatex-publist you think it loads.
– moewe
yesterday












Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
– user855443
yesterday




Following the suggestion of #moeve, I have pasted the relevant (?) part of the log file and checked where the requested files are. They seem not to be at the right place. Why? How to fix?
– user855443
yesterday












publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
– moewe
yesterday






publist.bbx 2016/08/06 v.1.3 biblatex bibliography style is definitely not version 1.11. Not sure if the macro was renamed in the meantime or just did not exist back in 2016. You may have better luck following the instructions for your outdated version 1.3. You can get the documentation of your installed version with texdoc biblatex-publist.
– moewe
yesterday






1




1




Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
– moewe
yesterday




Aha! According to github.com/jspitz/biblatex-publist/tree/… plauthorname was called omitname in version 1.3. Try that or consider updating your TeX distribution.
– moewe
yesterday












I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
– user855443
yesterday




I added more from the log file - probably only the first couple of lines are relevent. They seem to indicate that the version loaded is 1.3 from 2016. I cannot find a documentation of this version. How can I load the current version from CTAN? is it enough to download and put into the same place where pbulist.bbx is now?
– user855443
yesterday










1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










The .log snippets show that your TeX distribution has version 1.3 of biblatex-publist, that version dates back to August 2016.



According to https://github.com/jspitz/biblatex-publist/tree/0dae8f681c61524aa6c492d926b1b9062af30d26 the macro that is now called plauthorname was called omitname back then. So you may have more luck when you replace plauthorname with omitname in the above example.



Usually you can access the documentation of the package version installed on your machine by typing texdoc <package> in the command line. In your case texdoc biblatex-publist should bring up the documentation of version 1.3. It is generally safer to consult the documentation of the version you have installed rather than the documentation of the newest version on CTAN (though I will admit that I am so used to googling everything that reading the documentation on CTAN happens more naturally than going to a command line and calling texdoc, but I'm trying to get better).



If you want to update your TeX system, have a look at How do I update my TeX distribution?. If you are running a TeX live that was installed via the package repositories of your Linux distribution, chances are you can not update. In that case you have to install a vanilla TeX live from TUG if you want to live on the bleeding edge of development (see How to install "vanilla" TeXLive on Debian or Ubuntu?). It is usually a very, very bad idea to manually update packages from CTAN. Especially with biblatex and Biber you can easily run into incompatibilities.






share|improve this answer



















  • 1




    You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
    – gusbrs
    20 hours ago








  • 1




    @gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
    – moewe
    20 hours ago










  • hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
    – gusbrs
    20 hours ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461334%2fplauthorname-undefined-when-using-publist%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote



accepted










The .log snippets show that your TeX distribution has version 1.3 of biblatex-publist, that version dates back to August 2016.



According to https://github.com/jspitz/biblatex-publist/tree/0dae8f681c61524aa6c492d926b1b9062af30d26 the macro that is now called plauthorname was called omitname back then. So you may have more luck when you replace plauthorname with omitname in the above example.



Usually you can access the documentation of the package version installed on your machine by typing texdoc <package> in the command line. In your case texdoc biblatex-publist should bring up the documentation of version 1.3. It is generally safer to consult the documentation of the version you have installed rather than the documentation of the newest version on CTAN (though I will admit that I am so used to googling everything that reading the documentation on CTAN happens more naturally than going to a command line and calling texdoc, but I'm trying to get better).



If you want to update your TeX system, have a look at How do I update my TeX distribution?. If you are running a TeX live that was installed via the package repositories of your Linux distribution, chances are you can not update. In that case you have to install a vanilla TeX live from TUG if you want to live on the bleeding edge of development (see How to install "vanilla" TeXLive on Debian or Ubuntu?). It is usually a very, very bad idea to manually update packages from CTAN. Especially with biblatex and Biber you can easily run into incompatibilities.






share|improve this answer



















  • 1




    You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
    – gusbrs
    20 hours ago








  • 1




    @gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
    – moewe
    20 hours ago










  • hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
    – gusbrs
    20 hours ago















up vote
2
down vote



accepted










The .log snippets show that your TeX distribution has version 1.3 of biblatex-publist, that version dates back to August 2016.



According to https://github.com/jspitz/biblatex-publist/tree/0dae8f681c61524aa6c492d926b1b9062af30d26 the macro that is now called plauthorname was called omitname back then. So you may have more luck when you replace plauthorname with omitname in the above example.



Usually you can access the documentation of the package version installed on your machine by typing texdoc <package> in the command line. In your case texdoc biblatex-publist should bring up the documentation of version 1.3. It is generally safer to consult the documentation of the version you have installed rather than the documentation of the newest version on CTAN (though I will admit that I am so used to googling everything that reading the documentation on CTAN happens more naturally than going to a command line and calling texdoc, but I'm trying to get better).



If you want to update your TeX system, have a look at How do I update my TeX distribution?. If you are running a TeX live that was installed via the package repositories of your Linux distribution, chances are you can not update. In that case you have to install a vanilla TeX live from TUG if you want to live on the bleeding edge of development (see How to install "vanilla" TeXLive on Debian or Ubuntu?). It is usually a very, very bad idea to manually update packages from CTAN. Especially with biblatex and Biber you can easily run into incompatibilities.






share|improve this answer



















  • 1




    You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
    – gusbrs
    20 hours ago








  • 1




    @gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
    – moewe
    20 hours ago










  • hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
    – gusbrs
    20 hours ago













up vote
2
down vote



accepted







up vote
2
down vote



accepted






The .log snippets show that your TeX distribution has version 1.3 of biblatex-publist, that version dates back to August 2016.



According to https://github.com/jspitz/biblatex-publist/tree/0dae8f681c61524aa6c492d926b1b9062af30d26 the macro that is now called plauthorname was called omitname back then. So you may have more luck when you replace plauthorname with omitname in the above example.



Usually you can access the documentation of the package version installed on your machine by typing texdoc <package> in the command line. In your case texdoc biblatex-publist should bring up the documentation of version 1.3. It is generally safer to consult the documentation of the version you have installed rather than the documentation of the newest version on CTAN (though I will admit that I am so used to googling everything that reading the documentation on CTAN happens more naturally than going to a command line and calling texdoc, but I'm trying to get better).



If you want to update your TeX system, have a look at How do I update my TeX distribution?. If you are running a TeX live that was installed via the package repositories of your Linux distribution, chances are you can not update. In that case you have to install a vanilla TeX live from TUG if you want to live on the bleeding edge of development (see How to install "vanilla" TeXLive on Debian or Ubuntu?). It is usually a very, very bad idea to manually update packages from CTAN. Especially with biblatex and Biber you can easily run into incompatibilities.






share|improve this answer














The .log snippets show that your TeX distribution has version 1.3 of biblatex-publist, that version dates back to August 2016.



According to https://github.com/jspitz/biblatex-publist/tree/0dae8f681c61524aa6c492d926b1b9062af30d26 the macro that is now called plauthorname was called omitname back then. So you may have more luck when you replace plauthorname with omitname in the above example.



Usually you can access the documentation of the package version installed on your machine by typing texdoc <package> in the command line. In your case texdoc biblatex-publist should bring up the documentation of version 1.3. It is generally safer to consult the documentation of the version you have installed rather than the documentation of the newest version on CTAN (though I will admit that I am so used to googling everything that reading the documentation on CTAN happens more naturally than going to a command line and calling texdoc, but I'm trying to get better).



If you want to update your TeX system, have a look at How do I update my TeX distribution?. If you are running a TeX live that was installed via the package repositories of your Linux distribution, chances are you can not update. In that case you have to install a vanilla TeX live from TUG if you want to live on the bleeding edge of development (see How to install "vanilla" TeXLive on Debian or Ubuntu?). It is usually a very, very bad idea to manually update packages from CTAN. Especially with biblatex and Biber you can easily run into incompatibilities.







share|improve this answer














share|improve this answer



share|improve this answer








edited 20 hours ago

























answered yesterday









moewe

82.8k8106317




82.8k8106317








  • 1




    You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
    – gusbrs
    20 hours ago








  • 1




    @gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
    – moewe
    20 hours ago










  • hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
    – gusbrs
    20 hours ago














  • 1




    You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
    – gusbrs
    20 hours ago








  • 1




    @gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
    – moewe
    20 hours ago










  • hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
    – gusbrs
    20 hours ago








1




1




You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
– gusbrs
20 hours ago






You're a MSWindows user, I see. ;) Here, "Alt+F2" gives me an execute command prompt in which texdoc fits perfectly.
– gusbrs
20 hours ago






1




1




@gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
– moewe
20 hours ago




@gusbrs My cover is blown! I guess I could use Win+R and type in texdoc --view <package> (MikTeX otherwise sends me to a HTML selection screen, which I hate) and would be about as quick. But old habits ...
– moewe
20 hours ago












hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
– gusbrs
20 hours ago




hahaha Yes it is! Btw, the "Win" key is called "Super" elsewhere. In a Xfce distro I'm playing with, it is even nicer. The menu lets you put a command directly in the search, so "Super + texdoc biblatex + RET" takes you straight to the sweet spot.
– gusbrs
20 hours ago


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461334%2fplauthorname-undefined-when-using-publist%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux