Footnote without a marker











up vote
99
down vote

favorite
29












I would like to have a footnote about the funding source of my work in the first page without marker.



I tried below approaches:




  1. footnotetext{text goes here}
    This creates a footnote but with '0' as marker. However, the marker reference does not
    appear within the normal text where I placed this command.



  2. Used defblfootnote{xdef@thefnmark{}@footnotetext} definition provided at http://help-csli.stanford.edu/tex/latex-footnotes.shtml#unnumber. I placed this definition in the main tex file just after package declaration.
    But, this gives the below error.



       ! Use of @ doesn't match its definition.
    blfootnote ->xdef @thefnmark{}@f
    ootnotetext











share|improve this question




























    up vote
    99
    down vote

    favorite
    29












    I would like to have a footnote about the funding source of my work in the first page without marker.



    I tried below approaches:




    1. footnotetext{text goes here}
      This creates a footnote but with '0' as marker. However, the marker reference does not
      appear within the normal text where I placed this command.



    2. Used defblfootnote{xdef@thefnmark{}@footnotetext} definition provided at http://help-csli.stanford.edu/tex/latex-footnotes.shtml#unnumber. I placed this definition in the main tex file just after package declaration.
      But, this gives the below error.



         ! Use of @ doesn't match its definition.
      blfootnote ->xdef @thefnmark{}@f
      ootnotetext











    share|improve this question


























      up vote
      99
      down vote

      favorite
      29









      up vote
      99
      down vote

      favorite
      29






      29





      I would like to have a footnote about the funding source of my work in the first page without marker.



      I tried below approaches:




      1. footnotetext{text goes here}
        This creates a footnote but with '0' as marker. However, the marker reference does not
        appear within the normal text where I placed this command.



      2. Used defblfootnote{xdef@thefnmark{}@footnotetext} definition provided at http://help-csli.stanford.edu/tex/latex-footnotes.shtml#unnumber. I placed this definition in the main tex file just after package declaration.
        But, this gives the below error.



           ! Use of @ doesn't match its definition.
        blfootnote ->xdef @thefnmark{}@f
        ootnotetext











      share|improve this question















      I would like to have a footnote about the funding source of my work in the first page without marker.



      I tried below approaches:




      1. footnotetext{text goes here}
        This creates a footnote but with '0' as marker. However, the marker reference does not
        appear within the normal text where I placed this command.



      2. Used defblfootnote{xdef@thefnmark{}@footnotetext} definition provided at http://help-csli.stanford.edu/tex/latex-footnotes.shtml#unnumber. I placed this definition in the main tex file just after package declaration.
        But, this gives the below error.



           ! Use of @ doesn't match its definition.
        blfootnote ->xdef @thefnmark{}@f
        ootnotetext








      formatting footnotes






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 21 '17 at 19:22









      Carlos Alegría

      32




      32










      asked Oct 6 '11 at 18:52









      Rajesh

      496153




      496153






















          5 Answers
          5






          active

          oldest

          votes

















          up vote
          117
          down vote













          As Stephen mentioned in his answer, if you're using your definition in your .tex file, you need to enclose it inside makeatletter, makeatother. Another option not involving the use of the special character @ (thus not requiring makeatletter, makeatother) would be to locally redefine thefootnote (taking care of correcting the footnote counter):



          documentclass{article}
          usepackage{lipsum}

          newcommandblfootnote[1]{%
          begingroup
          renewcommandthefootnote{}footnote{#1}%
          addtocounter{footnote}{-1}%
          endgroup
          }

          begin{document}

          Some textblfootnote{A footnote without marker} and some more textfootnote{A standard footnote}

          end{document}


          enter image description here






          share|improve this answer























          • Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
            – Rajesh
            Oct 6 '11 at 19:18










          • @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
            – Gonzalo Medina
            Oct 6 '11 at 19:21






          • 2




            What does "bl" in "blfootnote" stand for?
            – David Doria
            Oct 24 '12 at 15:14






          • 1




            @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
            – Matthew Leingang
            Dec 4 '14 at 16:36










          • @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
            – Mattia
            May 24 '16 at 9:33


















          up vote
          29
          down vote













          @ is a special character in (La)TeX. Enclose your code with makeatletter, makeatother:



          makeatletter
          defblfootnote{gdef@thefnmark{}@footnotetext}
          makeatother




          Edit (from my former comments):



          Internal commands with @ can be used without makeatletter and makeatother in the class file (as you found out) as well as in style files, too. Only in the .tex file the "envelope" is needed. That said, I would prefer Gonzalo Medina's answer over my own (or your placement of the redefinition in the class file) because it only locally redefines footnote (respectively give a new command for unnumbered footnotes).



          When you are using the hyperref package, you would probably want to add addtocounter{Hfootnote}{-1}% to the code of GM, otherwise it will work but error messages about (hyper)footnotes will become tricky, because e.g. Hfootnote 42 then is footnote 41 - use addtocounter{footnote}{-1} without addtocounter{Hfootnote}{-1} for several cases, and the difference between footnote and Hfootnote makes debugging harder than necessary.



          Edit (again):



          As suggested by egreg, I changed xdef (=globaledef) to gdef (=globaldef), because there is no need to *e*xpand the *def*inition's content here (as it is just empty).






          share|improve this answer























          • xdef should be gdef; it doesn't make any difference here, it could in other situations.
            – egreg
            Oct 30 '11 at 18:53










          • +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
            – Kevin
            Oct 29 '14 at 10:23




















          up vote
          15
          down vote













          In some cases, you might want to suppress the number on a footnote. I looked around the web, and a few suggestions were out there, but the simplest one I could find was the following:



          letthefootnoterelaxfootnotetext{Put your text here}





          share|improve this answer























          • This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
            – jknappen
            Sep 1 '15 at 12:56










          • Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
            – Philipp Imhof
            Sep 1 '15 at 12:56


















          up vote
          3
          down vote













          There’s also an old package, titlefoot, which has no documentation except a few comments in the .sty file. It provides a command, unmarkedfntext{...}, which has never caused problems in my documents. A little example:



          documentclass{article}
          usepackage{blindtext,titlefoot}
          title{My Brilliant Article}
          author{Me}
          usepackage{hyperref}
          begin{document}
          maketitleunmarkedfntext{Originally published by Oxford.}

          blindtextfootnote{It seems to play well with hyperref.}
          end{document}





          share|improve this answer





















          • This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
            – xuhdev
            Sep 20 '16 at 3:20






          • 1




            I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
            – Joe Corneli
            Jun 19 '17 at 22:30










          • I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
            – loved.by.Jesus
            Mar 13 at 12:53


















          up vote
          0
          down vote













          You could use the footnotemarker[0] and footnotetext[0]{Footnote text} pair. The [0] will suppress the label.






          share|improve this answer





















          • This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
            – Werner
            1 hour 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%2f30720%2ffootnote-without-a-marker%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          5 Answers
          5






          active

          oldest

          votes








          5 Answers
          5






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          117
          down vote













          As Stephen mentioned in his answer, if you're using your definition in your .tex file, you need to enclose it inside makeatletter, makeatother. Another option not involving the use of the special character @ (thus not requiring makeatletter, makeatother) would be to locally redefine thefootnote (taking care of correcting the footnote counter):



          documentclass{article}
          usepackage{lipsum}

          newcommandblfootnote[1]{%
          begingroup
          renewcommandthefootnote{}footnote{#1}%
          addtocounter{footnote}{-1}%
          endgroup
          }

          begin{document}

          Some textblfootnote{A footnote without marker} and some more textfootnote{A standard footnote}

          end{document}


          enter image description here






          share|improve this answer























          • Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
            – Rajesh
            Oct 6 '11 at 19:18










          • @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
            – Gonzalo Medina
            Oct 6 '11 at 19:21






          • 2




            What does "bl" in "blfootnote" stand for?
            – David Doria
            Oct 24 '12 at 15:14






          • 1




            @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
            – Matthew Leingang
            Dec 4 '14 at 16:36










          • @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
            – Mattia
            May 24 '16 at 9:33















          up vote
          117
          down vote













          As Stephen mentioned in his answer, if you're using your definition in your .tex file, you need to enclose it inside makeatletter, makeatother. Another option not involving the use of the special character @ (thus not requiring makeatletter, makeatother) would be to locally redefine thefootnote (taking care of correcting the footnote counter):



          documentclass{article}
          usepackage{lipsum}

          newcommandblfootnote[1]{%
          begingroup
          renewcommandthefootnote{}footnote{#1}%
          addtocounter{footnote}{-1}%
          endgroup
          }

          begin{document}

          Some textblfootnote{A footnote without marker} and some more textfootnote{A standard footnote}

          end{document}


          enter image description here






          share|improve this answer























          • Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
            – Rajesh
            Oct 6 '11 at 19:18










          • @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
            – Gonzalo Medina
            Oct 6 '11 at 19:21






          • 2




            What does "bl" in "blfootnote" stand for?
            – David Doria
            Oct 24 '12 at 15:14






          • 1




            @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
            – Matthew Leingang
            Dec 4 '14 at 16:36










          • @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
            – Mattia
            May 24 '16 at 9:33













          up vote
          117
          down vote










          up vote
          117
          down vote









          As Stephen mentioned in his answer, if you're using your definition in your .tex file, you need to enclose it inside makeatletter, makeatother. Another option not involving the use of the special character @ (thus not requiring makeatletter, makeatother) would be to locally redefine thefootnote (taking care of correcting the footnote counter):



          documentclass{article}
          usepackage{lipsum}

          newcommandblfootnote[1]{%
          begingroup
          renewcommandthefootnote{}footnote{#1}%
          addtocounter{footnote}{-1}%
          endgroup
          }

          begin{document}

          Some textblfootnote{A footnote without marker} and some more textfootnote{A standard footnote}

          end{document}


          enter image description here






          share|improve this answer














          As Stephen mentioned in his answer, if you're using your definition in your .tex file, you need to enclose it inside makeatletter, makeatother. Another option not involving the use of the special character @ (thus not requiring makeatletter, makeatother) would be to locally redefine thefootnote (taking care of correcting the footnote counter):



          documentclass{article}
          usepackage{lipsum}

          newcommandblfootnote[1]{%
          begingroup
          renewcommandthefootnote{}footnote{#1}%
          addtocounter{footnote}{-1}%
          endgroup
          }

          begin{document}

          Some textblfootnote{A footnote without marker} and some more textfootnote{A standard footnote}

          end{document}


          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 28 '14 at 22:34









          Bernard

          163k769192




          163k769192










          answered Oct 6 '11 at 19:00









          Gonzalo Medina

          393k4012881558




          393k4012881558












          • Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
            – Rajesh
            Oct 6 '11 at 19:18










          • @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
            – Gonzalo Medina
            Oct 6 '11 at 19:21






          • 2




            What does "bl" in "blfootnote" stand for?
            – David Doria
            Oct 24 '12 at 15:14






          • 1




            @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
            – Matthew Leingang
            Dec 4 '14 at 16:36










          • @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
            – Mattia
            May 24 '16 at 9:33


















          • Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
            – Rajesh
            Oct 6 '11 at 19:18










          • @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
            – Gonzalo Medina
            Oct 6 '11 at 19:21






          • 2




            What does "bl" in "blfootnote" stand for?
            – David Doria
            Oct 24 '12 at 15:14






          • 1




            @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
            – Matthew Leingang
            Dec 4 '14 at 16:36










          • @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
            – Mattia
            May 24 '16 at 9:33
















          Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
          – Rajesh
          Oct 6 '11 at 19:18




          Thanks for the responses guys. Just looked at your suggestions, but was able to have the footnote working just sometime ago. The problem was that I had to keep the definition of blfootnote in the class file instead of the tex file.
          – Rajesh
          Oct 6 '11 at 19:18












          @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
          – Gonzalo Medina
          Oct 6 '11 at 19:21




          @Rajesh: as Stephen mentioned in his answer, enclosing your definition with makeatletter, makeatother you can keep the definition in the .tex file. See also my updated answer for another option not involving internal commands.
          – Gonzalo Medina
          Oct 6 '11 at 19:21




          2




          2




          What does "bl" in "blfootnote" stand for?
          – David Doria
          Oct 24 '12 at 15:14




          What does "bl" in "blfootnote" stand for?
          – David Doria
          Oct 24 '12 at 15:14




          1




          1




          @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
          – Matthew Leingang
          Dec 4 '14 at 16:36




          @DavidDoria: Gonazalo is re-implementing a macro that the original poster copied from a resource that is no longer available. So we'll never know what bl stands for. One may guess “blind”, but the important think is that it be different from footnote.
          – Matthew Leingang
          Dec 4 '14 at 16:36












          @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
          – Mattia
          May 24 '16 at 9:33




          @GonzaloMedina with the solution you have proposed hyper-link will provide and empty market were I place blfootnote{}. Is there any way to continue to use hyper-link that provide links for the other footnotes and references but at the same time have just a note for the desired blfootnote?
          – Mattia
          May 24 '16 at 9:33










          up vote
          29
          down vote













          @ is a special character in (La)TeX. Enclose your code with makeatletter, makeatother:



          makeatletter
          defblfootnote{gdef@thefnmark{}@footnotetext}
          makeatother




          Edit (from my former comments):



          Internal commands with @ can be used without makeatletter and makeatother in the class file (as you found out) as well as in style files, too. Only in the .tex file the "envelope" is needed. That said, I would prefer Gonzalo Medina's answer over my own (or your placement of the redefinition in the class file) because it only locally redefines footnote (respectively give a new command for unnumbered footnotes).



          When you are using the hyperref package, you would probably want to add addtocounter{Hfootnote}{-1}% to the code of GM, otherwise it will work but error messages about (hyper)footnotes will become tricky, because e.g. Hfootnote 42 then is footnote 41 - use addtocounter{footnote}{-1} without addtocounter{Hfootnote}{-1} for several cases, and the difference between footnote and Hfootnote makes debugging harder than necessary.



          Edit (again):



          As suggested by egreg, I changed xdef (=globaledef) to gdef (=globaldef), because there is no need to *e*xpand the *def*inition's content here (as it is just empty).






          share|improve this answer























          • xdef should be gdef; it doesn't make any difference here, it could in other situations.
            – egreg
            Oct 30 '11 at 18:53










          • +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
            – Kevin
            Oct 29 '14 at 10:23

















          up vote
          29
          down vote













          @ is a special character in (La)TeX. Enclose your code with makeatletter, makeatother:



          makeatletter
          defblfootnote{gdef@thefnmark{}@footnotetext}
          makeatother




          Edit (from my former comments):



          Internal commands with @ can be used without makeatletter and makeatother in the class file (as you found out) as well as in style files, too. Only in the .tex file the "envelope" is needed. That said, I would prefer Gonzalo Medina's answer over my own (or your placement of the redefinition in the class file) because it only locally redefines footnote (respectively give a new command for unnumbered footnotes).



          When you are using the hyperref package, you would probably want to add addtocounter{Hfootnote}{-1}% to the code of GM, otherwise it will work but error messages about (hyper)footnotes will become tricky, because e.g. Hfootnote 42 then is footnote 41 - use addtocounter{footnote}{-1} without addtocounter{Hfootnote}{-1} for several cases, and the difference between footnote and Hfootnote makes debugging harder than necessary.



          Edit (again):



          As suggested by egreg, I changed xdef (=globaledef) to gdef (=globaldef), because there is no need to *e*xpand the *def*inition's content here (as it is just empty).






          share|improve this answer























          • xdef should be gdef; it doesn't make any difference here, it could in other situations.
            – egreg
            Oct 30 '11 at 18:53










          • +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
            – Kevin
            Oct 29 '14 at 10:23















          up vote
          29
          down vote










          up vote
          29
          down vote









          @ is a special character in (La)TeX. Enclose your code with makeatletter, makeatother:



          makeatletter
          defblfootnote{gdef@thefnmark{}@footnotetext}
          makeatother




          Edit (from my former comments):



          Internal commands with @ can be used without makeatletter and makeatother in the class file (as you found out) as well as in style files, too. Only in the .tex file the "envelope" is needed. That said, I would prefer Gonzalo Medina's answer over my own (or your placement of the redefinition in the class file) because it only locally redefines footnote (respectively give a new command for unnumbered footnotes).



          When you are using the hyperref package, you would probably want to add addtocounter{Hfootnote}{-1}% to the code of GM, otherwise it will work but error messages about (hyper)footnotes will become tricky, because e.g. Hfootnote 42 then is footnote 41 - use addtocounter{footnote}{-1} without addtocounter{Hfootnote}{-1} for several cases, and the difference between footnote and Hfootnote makes debugging harder than necessary.



          Edit (again):



          As suggested by egreg, I changed xdef (=globaledef) to gdef (=globaldef), because there is no need to *e*xpand the *def*inition's content here (as it is just empty).






          share|improve this answer














          @ is a special character in (La)TeX. Enclose your code with makeatletter, makeatother:



          makeatletter
          defblfootnote{gdef@thefnmark{}@footnotetext}
          makeatother




          Edit (from my former comments):



          Internal commands with @ can be used without makeatletter and makeatother in the class file (as you found out) as well as in style files, too. Only in the .tex file the "envelope" is needed. That said, I would prefer Gonzalo Medina's answer over my own (or your placement of the redefinition in the class file) because it only locally redefines footnote (respectively give a new command for unnumbered footnotes).



          When you are using the hyperref package, you would probably want to add addtocounter{Hfootnote}{-1}% to the code of GM, otherwise it will work but error messages about (hyper)footnotes will become tricky, because e.g. Hfootnote 42 then is footnote 41 - use addtocounter{footnote}{-1} without addtocounter{Hfootnote}{-1} for several cases, and the difference between footnote and Hfootnote makes debugging harder than necessary.



          Edit (again):



          As suggested by egreg, I changed xdef (=globaledef) to gdef (=globaldef), because there is no need to *e*xpand the *def*inition's content here (as it is just empty).







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Oct 31 '11 at 12:19

























          answered Oct 6 '11 at 18:58









          Stephen

          10.3k34577




          10.3k34577












          • xdef should be gdef; it doesn't make any difference here, it could in other situations.
            – egreg
            Oct 30 '11 at 18:53










          • +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
            – Kevin
            Oct 29 '14 at 10:23




















          • xdef should be gdef; it doesn't make any difference here, it could in other situations.
            – egreg
            Oct 30 '11 at 18:53










          • +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
            – Kevin
            Oct 29 '14 at 10:23


















          xdef should be gdef; it doesn't make any difference here, it could in other situations.
          – egreg
          Oct 30 '11 at 18:53




          xdef should be gdef; it doesn't make any difference here, it could in other situations.
          – egreg
          Oct 30 '11 at 18:53












          +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
          – Kevin
          Oct 29 '14 at 10:23






          +1, @Gonzalo Medina solution doesn't work 'well' with hyperref package, it lets an empty link box to the footnote!
          – Kevin
          Oct 29 '14 at 10:23












          up vote
          15
          down vote













          In some cases, you might want to suppress the number on a footnote. I looked around the web, and a few suggestions were out there, but the simplest one I could find was the following:



          letthefootnoterelaxfootnotetext{Put your text here}





          share|improve this answer























          • This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
            – jknappen
            Sep 1 '15 at 12:56










          • Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
            – Philipp Imhof
            Sep 1 '15 at 12:56















          up vote
          15
          down vote













          In some cases, you might want to suppress the number on a footnote. I looked around the web, and a few suggestions were out there, but the simplest one I could find was the following:



          letthefootnoterelaxfootnotetext{Put your text here}





          share|improve this answer























          • This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
            – jknappen
            Sep 1 '15 at 12:56










          • Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
            – Philipp Imhof
            Sep 1 '15 at 12:56













          up vote
          15
          down vote










          up vote
          15
          down vote









          In some cases, you might want to suppress the number on a footnote. I looked around the web, and a few suggestions were out there, but the simplest one I could find was the following:



          letthefootnoterelaxfootnotetext{Put your text here}





          share|improve this answer














          In some cases, you might want to suppress the number on a footnote. I looked around the web, and a few suggestions were out there, but the simplest one I could find was the following:



          letthefootnoterelaxfootnotetext{Put your text here}






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Oct 2 '15 at 7:59







          user11232

















          answered Sep 1 '15 at 12:14









          A. Shukla

          15112




          15112












          • This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
            – jknappen
            Sep 1 '15 at 12:56










          • Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
            – Philipp Imhof
            Sep 1 '15 at 12:56


















          • This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
            – jknappen
            Sep 1 '15 at 12:56










          • Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
            – Philipp Imhof
            Sep 1 '15 at 12:56
















          This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
          – jknappen
          Sep 1 '15 at 12:56




          This may work, but it is not really LaTeX style and may have serious side-effects, e.g., when switching back to normal footnotes.
          – jknappen
          Sep 1 '15 at 12:56












          Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
          – Philipp Imhof
          Sep 1 '15 at 12:56




          Welcome to TeX.SX! A tip: You can use backticks ` to mark your inline code. I did not edit your answer just for this detail, you might want to change it yourself.
          – Philipp Imhof
          Sep 1 '15 at 12:56










          up vote
          3
          down vote













          There’s also an old package, titlefoot, which has no documentation except a few comments in the .sty file. It provides a command, unmarkedfntext{...}, which has never caused problems in my documents. A little example:



          documentclass{article}
          usepackage{blindtext,titlefoot}
          title{My Brilliant Article}
          author{Me}
          usepackage{hyperref}
          begin{document}
          maketitleunmarkedfntext{Originally published by Oxford.}

          blindtextfootnote{It seems to play well with hyperref.}
          end{document}





          share|improve this answer





















          • This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
            – xuhdev
            Sep 20 '16 at 3:20






          • 1




            I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
            – Joe Corneli
            Jun 19 '17 at 22:30










          • I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
            – loved.by.Jesus
            Mar 13 at 12:53















          up vote
          3
          down vote













          There’s also an old package, titlefoot, which has no documentation except a few comments in the .sty file. It provides a command, unmarkedfntext{...}, which has never caused problems in my documents. A little example:



          documentclass{article}
          usepackage{blindtext,titlefoot}
          title{My Brilliant Article}
          author{Me}
          usepackage{hyperref}
          begin{document}
          maketitleunmarkedfntext{Originally published by Oxford.}

          blindtextfootnote{It seems to play well with hyperref.}
          end{document}





          share|improve this answer





















          • This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
            – xuhdev
            Sep 20 '16 at 3:20






          • 1




            I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
            – Joe Corneli
            Jun 19 '17 at 22:30










          • I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
            – loved.by.Jesus
            Mar 13 at 12:53













          up vote
          3
          down vote










          up vote
          3
          down vote









          There’s also an old package, titlefoot, which has no documentation except a few comments in the .sty file. It provides a command, unmarkedfntext{...}, which has never caused problems in my documents. A little example:



          documentclass{article}
          usepackage{blindtext,titlefoot}
          title{My Brilliant Article}
          author{Me}
          usepackage{hyperref}
          begin{document}
          maketitleunmarkedfntext{Originally published by Oxford.}

          blindtextfootnote{It seems to play well with hyperref.}
          end{document}





          share|improve this answer












          There’s also an old package, titlefoot, which has no documentation except a few comments in the .sty file. It provides a command, unmarkedfntext{...}, which has never caused problems in my documents. A little example:



          documentclass{article}
          usepackage{blindtext,titlefoot}
          title{My Brilliant Article}
          author{Me}
          usepackage{hyperref}
          begin{document}
          maketitleunmarkedfntext{Originally published by Oxford.}

          blindtextfootnote{It seems to play well with hyperref.}
          end{document}






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 2 '15 at 14:51









          Thérèse

          9,27232240




          9,27232240












          • This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
            – xuhdev
            Sep 20 '16 at 3:20






          • 1




            I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
            – Joe Corneli
            Jun 19 '17 at 22:30










          • I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
            – loved.by.Jesus
            Mar 13 at 12:53


















          • This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
            – xuhdev
            Sep 20 '16 at 3:20






          • 1




            I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
            – Joe Corneli
            Jun 19 '17 at 22:30










          • I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
            – loved.by.Jesus
            Mar 13 at 12:53
















          This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
          – xuhdev
          Sep 20 '16 at 3:20




          This seems causing some issues for me. All the figures are moved to the end of the document after adding unmarkedfntext. A regular footnote would not cause so.
          – xuhdev
          Sep 20 '16 at 3:20




          1




          1




          I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
          – Joe Corneli
          Jun 19 '17 at 22:30




          I like this answer the best, because, as you said, it plays well with hyperref. Other "markerless footnote" solutions I tried left a little blank box in the text (i.e., a link attached to the blank marker).
          – Joe Corneli
          Jun 19 '17 at 22:30












          I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
          – loved.by.Jesus
          Mar 13 at 12:53




          I had only one problem with the definition the command keywords, apparently the command is already defined in the package, so I had to change the name. However, I find this "package"-solution more elegant that own defined functions. ;)
          – loved.by.Jesus
          Mar 13 at 12:53










          up vote
          0
          down vote













          You could use the footnotemarker[0] and footnotetext[0]{Footnote text} pair. The [0] will suppress the label.






          share|improve this answer





















          • This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
            – Werner
            1 hour ago















          up vote
          0
          down vote













          You could use the footnotemarker[0] and footnotetext[0]{Footnote text} pair. The [0] will suppress the label.






          share|improve this answer





















          • This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
            – Werner
            1 hour ago













          up vote
          0
          down vote










          up vote
          0
          down vote









          You could use the footnotemarker[0] and footnotetext[0]{Footnote text} pair. The [0] will suppress the label.






          share|improve this answer












          You could use the footnotemarker[0] and footnotetext[0]{Footnote text} pair. The [0] will suppress the label.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 1 hour ago









          nac001

          628




          628












          • This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
            – Werner
            1 hour ago


















          • This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
            – Werner
            1 hour ago
















          This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
          – Werner
          1 hour ago




          This is only true if thefootnote is set to roman{footnote} or Roman{footnote}.
          – Werner
          1 hour ago


















          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%2f30720%2ffootnote-without-a-marker%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

          Lallio

          Unable to find Lightning Node

          Futebolista