lualatex using vebatim package











up vote
1
down vote

favorite












This was working and I don't see what has changed, but the code below is now throwing a "Missing endcsname inserted" error.



If I just press Return, lualatex continues, reads the text file myfile.lua, and prints it perfectly verbatim. Doesn't seem to matter whether the file is UTF-8 or ASCII encoded (I usually use the former). Windows 10 machine if that matters.



MWE



documentclass{article}

RequirePackage{verbatim}%

RequirePackage{luacode}%

begin{luacode*}
function buildPath(...)
-- get the system path separator
local pathseparator = package.config:sub(1,1)

-- get the arguments
local elements = {...}

-- return the elements with the path separator
return table.concat(elements, pathseparator)
end

-- Get the current path.
function getPath(filename)
-- Print the current path. According to the documentation, if -2 is used,
-- then the strings are read as if the result of detokenize: all characters
-- have catcode 12 except space, which has catcode 10.

tex.print(-2, buildPath(lfs.currentdir(), filename))
end
end{luacode*}

DeclareRobustCommandgetPath[1]{luadirect{getPath(luastring{#1})}}

begin{document}

verbatiminput{getPath{myfile.lua}}

end{document}









share|improve this question






















  • What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
    – Ulrike Fischer
    Dec 4 at 9:59










  • @Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
    – DLyons
    Dec 4 at 10:03















up vote
1
down vote

favorite












This was working and I don't see what has changed, but the code below is now throwing a "Missing endcsname inserted" error.



If I just press Return, lualatex continues, reads the text file myfile.lua, and prints it perfectly verbatim. Doesn't seem to matter whether the file is UTF-8 or ASCII encoded (I usually use the former). Windows 10 machine if that matters.



MWE



documentclass{article}

RequirePackage{verbatim}%

RequirePackage{luacode}%

begin{luacode*}
function buildPath(...)
-- get the system path separator
local pathseparator = package.config:sub(1,1)

-- get the arguments
local elements = {...}

-- return the elements with the path separator
return table.concat(elements, pathseparator)
end

-- Get the current path.
function getPath(filename)
-- Print the current path. According to the documentation, if -2 is used,
-- then the strings are read as if the result of detokenize: all characters
-- have catcode 12 except space, which has catcode 10.

tex.print(-2, buildPath(lfs.currentdir(), filename))
end
end{luacode*}

DeclareRobustCommandgetPath[1]{luadirect{getPath(luastring{#1})}}

begin{document}

verbatiminput{getPath{myfile.lua}}

end{document}









share|improve this question






















  • What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
    – Ulrike Fischer
    Dec 4 at 9:59










  • @Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
    – DLyons
    Dec 4 at 10:03













up vote
1
down vote

favorite









up vote
1
down vote

favorite











This was working and I don't see what has changed, but the code below is now throwing a "Missing endcsname inserted" error.



If I just press Return, lualatex continues, reads the text file myfile.lua, and prints it perfectly verbatim. Doesn't seem to matter whether the file is UTF-8 or ASCII encoded (I usually use the former). Windows 10 machine if that matters.



MWE



documentclass{article}

RequirePackage{verbatim}%

RequirePackage{luacode}%

begin{luacode*}
function buildPath(...)
-- get the system path separator
local pathseparator = package.config:sub(1,1)

-- get the arguments
local elements = {...}

-- return the elements with the path separator
return table.concat(elements, pathseparator)
end

-- Get the current path.
function getPath(filename)
-- Print the current path. According to the documentation, if -2 is used,
-- then the strings are read as if the result of detokenize: all characters
-- have catcode 12 except space, which has catcode 10.

tex.print(-2, buildPath(lfs.currentdir(), filename))
end
end{luacode*}

DeclareRobustCommandgetPath[1]{luadirect{getPath(luastring{#1})}}

begin{document}

verbatiminput{getPath{myfile.lua}}

end{document}









share|improve this question













This was working and I don't see what has changed, but the code below is now throwing a "Missing endcsname inserted" error.



If I just press Return, lualatex continues, reads the text file myfile.lua, and prints it perfectly verbatim. Doesn't seem to matter whether the file is UTF-8 or ASCII encoded (I usually use the former). Windows 10 machine if that matters.



MWE



documentclass{article}

RequirePackage{verbatim}%

RequirePackage{luacode}%

begin{luacode*}
function buildPath(...)
-- get the system path separator
local pathseparator = package.config:sub(1,1)

-- get the arguments
local elements = {...}

-- return the elements with the path separator
return table.concat(elements, pathseparator)
end

-- Get the current path.
function getPath(filename)
-- Print the current path. According to the documentation, if -2 is used,
-- then the strings are read as if the result of detokenize: all characters
-- have catcode 12 except space, which has catcode 10.

tex.print(-2, buildPath(lfs.currentdir(), filename))
end
end{luacode*}

DeclareRobustCommandgetPath[1]{luadirect{getPath(luastring{#1})}}

begin{document}

verbatiminput{getPath{myfile.lua}}

end{document}






luatex verbatim






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 4 at 9:53









DLyons

1616




1616












  • What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
    – Ulrike Fischer
    Dec 4 at 9:59










  • @Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
    – DLyons
    Dec 4 at 10:03


















  • What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
    – Ulrike Fischer
    Dec 4 at 9:59










  • @Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
    – DLyons
    Dec 4 at 10:03
















What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
– Ulrike Fischer
Dec 4 at 9:59




What is the sense of getPath? verbatiminput will find files in the current directory anyway. (I doubt that this every worked, use newcommand instead of DeclareRobustCommand).
– Ulrike Fischer
Dec 4 at 9:59












@Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
– DLyons
Dec 4 at 10:03




@Ulrike That's what changed!!! I was replacing newcommand in various source files and got too enthusiastic.
– DLyons
Dec 4 at 10:03










1 Answer
1






active

oldest

votes

















up vote
3
down vote



accepted










This never worked. Don't use a robust command inside verbatiminput. So define your getPath as



newcommandgetPath[1]{luadirect{getPath(luastring{#1})}}





share|improve this answer





















    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%2f463113%2flualatex-using-vebatim-package%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
    3
    down vote



    accepted










    This never worked. Don't use a robust command inside verbatiminput. So define your getPath as



    newcommandgetPath[1]{luadirect{getPath(luastring{#1})}}





    share|improve this answer

























      up vote
      3
      down vote



      accepted










      This never worked. Don't use a robust command inside verbatiminput. So define your getPath as



      newcommandgetPath[1]{luadirect{getPath(luastring{#1})}}





      share|improve this answer























        up vote
        3
        down vote



        accepted







        up vote
        3
        down vote



        accepted






        This never worked. Don't use a robust command inside verbatiminput. So define your getPath as



        newcommandgetPath[1]{luadirect{getPath(luastring{#1})}}





        share|improve this answer












        This never worked. Don't use a robust command inside verbatiminput. So define your getPath as



        newcommandgetPath[1]{luadirect{getPath(luastring{#1})}}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 4 at 10:55









        Ulrike Fischer

        184k7289665




        184k7289665






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f463113%2flualatex-using-vebatim-package%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

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?