Guest User

Untitled

a guest
May 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. Text with first footnotefootnote{label{note1}This is the labeled footnote}
  2. and more text with a second footnotefootnote{here}.
  3.  
  4. In this a paragraph we have a reference to the first
  5. footnotefootnotemark[ref{note1}].
  6.  
  7. makeatletter
  8. newcommandfootnoteref[1]{protected@xdef@thefnmark{ref{#1}}@footnotemark}
  9. makeatother
  10.  
  11. Text with first footnotefootnote{label{note1}This is the labeled footnote}
  12. and more text with a second footnotefootnote{here}.
  13.  
  14. In this a paragraph we have a reference to the first footnotefootnoteref{note1}.
  15.  
  16. documentclass{scrartcl}
  17. begin{document}
  18.  
  19. Company SplishSplashfootnote{This is a registered trade name.
  20. All rights are reserved.label{refnote}}
  21. produces not only SplishPlumpfootref{refnote}
  22. but also SplishPlashfootref{refnote}.
  23.  
  24. end{document}
  25.  
  26. documentclass{article}
  27. usepackage{scrextend}
  28. begin{document}
  29.  
  30. Company SplishSplashfootnote{This is a registered trade name.
  31. All rights are reserved.label{refnote}}
  32. produces not only SplishPlumpfootref{refnote}
  33. but also SplishPlashfootref{refnote}.
  34.  
  35. end{document}
  36.  
  37. documentclass{memoir}
  38. begin{document}
  39.  
  40. Company SplishSplashfootnote{This is a registered trade name.
  41. All rights are reserved.label{refnote}}
  42. produces not only SplishPlumpfootref{refnote}
  43. but also SplishPlashfootref{refnote}.
  44.  
  45. end{document}
  46.  
  47. documentclass{article}
  48. usepackage{footmisc}
  49. begin{document}
  50.  
  51. Company SplishSplashfootnote{This is a registered trade name.
  52. All rights are reserved.label{refnote}}
  53. produces not only SplishPlumpfootref{refnote}
  54. but also SplishPlashfootref{refnote}.
  55.  
  56. end{document}
  57.  
  58. Text that has a footnotefootnote{This is the footnote} looks like this.
  59. Later text referring to same footnotefootnotemark[value{footnote}] uses
  60. the other command.
  61.  
  62. Text that has a footnotefootnote{This is the footnote}
  63. addtocounter{footnote}{-1}addtocounter{Hfootnote}{-1} looks like this.
  64. Later text referring to same footnotefootnotemark uses the other command.
  65.  
  66. line1 footnote{text bla bla label{xx}}
  67. line2 textsuperscript{ref{xx}}
  68.  
  69. documentclass{article}
  70. usepackage[a5paper,paperheight=3.5cm]{geometry}
  71. usepackage{fixfoot}
  72. usepackage[colorlinks]{hyperref}
  73. DeclareFixedFootnote{repnote}{ This is a repated footnote}
  74. begin{document}
  75. Text with first footnoterepnote and more text with a
  76. second normal footnote.footnote{ This is a single footnote}
  77. Now again the first footnote.repnote
  78. newpage
  79. Again the first note repnote and another footnotefootnote{
  80. This is a another footnote}, and finally the fixed footnoterepnote.
  81. end{document}
  82.  
  83. Text with first footnotefootnote{label{note1}This is the labeled footnote}
  84. and more text with a second footnotefootnote{here}.
  85.  
  86. In this a paragraph we have a reference to the first
  87. footnotetextsuperscript{ref{note1}}.
  88.  
  89. author{First Authorinst{1} and Second Authorinst{1} and Another Authorinst{2}}
  90.  
  91. institute{
  92. Some university
  93. and
  94. Some company
  95. }
  96.  
  97. documentclass{article}
  98.  
  99. usepackage{authblk}
  100.  
  101. begin{document}
  102.  
  103. author[1,2]{First Last}
  104. author[2,3]{Name Surname}
  105. affil[1]{Institute}
  106. affil[2]{University}
  107. affil[3]{Organization}
  108.  
  109. end{document}
  110.  
  111. newcommand{footnoteref}[1]{textsuperscript{ref{#1}}}
  112.  
  113. begin{document}
  114.  
  115. dummy text with footnotefootnote{Hello worldlabel{note1}}
  116. then more dummy text with same footnote numberfootnoteref{note1}
  117.  
  118. end{document}
Add Comment
Please, Sign In to add comment