4

I am kindly requesting for assistance on how to change the default ISBN when using the ean13isbn package. If I change the numbers on 978-80-85955-35-4 I get an error. Let's say I want to change 978-80-85955-35-4 to 026-37-74794-59-8, is it possible? Below is my MWE:

\documentclass{book}
\usepackage[ISBN=978-80-85955-35-4,SC0]{ean13isbn}
\begin{document}
    \EANisbn[SC3]
\end{document}
itc
  • 657

1 Answers1

5

You can print any valid ISBN-13, not just the one specified in the package options.

\documentclass{book}
\usepackage[SC3]{ean13isbn}

\AddToHook{cmd/EANbox/before}{\leavevmode}

\begin{document}

Start a paragraph

\EANisbn[ISBN=978-020-1558-02-9] is not flush left, but aligned with the indentation above

\begin{center} \EANisbn[ISBN=978-020-113448-3] \end{center}

\end{document}

enter image description here

egreg
  • 1,121,712