底部边缘上方的注释

底部边缘上方的注释

我正在用乳胶写一篇论文,其中有一个部分我找不到如何解决,我需要在页面底部、底部边距之前添加一些注释。

  • 它们实际上不是脚注,而是一种行注释,会占几行。它们应该出现在页边距之前的页面底部,看起来像纯文本,而不是列表,字体大小略小。下图中有一个例子。格式如下:[lineno] remark

这是我到目前为止完成的代码(文本是随机的)

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\renewcommand{\sfdefault}{lmss}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{lineno, marginnote, amsmath}
\usepackage[top=1.5cm, bottom=1.5cm, outer=4cm, inner=2cm, heightrounded, marginparwidth=2.5cm, marginparsep=0.4cm]{geometry}
\usepackage[francais]{babel}
\usepackage{xparse}

\begin{document}
\linenumbers
\def\linenumberfont{\normalfont\small\sffamily}
\modulolinenumbers[5]
\noindent Wikipedia
\newline
Wikipedia (Listeni/ˌwɪkɨˈpiːdiə/ or Listeni/ˌwɪkiˈpiːdiə/ wik-i-pee-dee-ə) is a free-access, free content Internet encyclopedia, supported and hosted by the non-profit Wikimedia Foundation. Those who can access the site and follow its rules can edit most of its articles.[6] Wikipedia is ranked among the ten most popular websites[5] and\underline{ constitutes the} Internet's largest and most popular general reference work.Jimmy Wales and Larry Sanger launched Wikipedia on January 15, 2001. Sanger[10] coined its name,[11] a portmanteau of wiki[notes 2] and encyclopedia. Initially only in English, Wikipedia quickly became multilingual as it developed similar versions in other languages, which differ in content and in editing practices. The English Wikipedia is now one of \underline {more than 200 Wikipedias} and is the largest with over 4.8 million articles. There is a grand total, including all Wikipedias, of nearly 35 million articles in 288 different languages.[13] As of February 2014, it had 18 billion page views and nearly 500 million unique \textbar\space\marginnote{1} visitors each month.[14] Globally, Wikipedia had more than 19 million accounts,[15] out of which there were about 69,000 active editors as of November 2014.
Supporters of Wikipedia cite a \textbar\space\marginnote{6} 2005 survey of Wikipedia published in Nature based on a comparison of 42 science articles with Encyclopædia Britannica, which found that Wikipedia's level of accuracy approached Encyclopdia Britannics.[16] Critics argue Wikipedia exhibits systemic bias. Wikipedia has been criticized for being a mixture of "truths, half truths, and some falsehoods",[17] and subject to manipulation and spin.
\end{document}

例子

答案1

我认为您想要“段落样式的脚注”。您可以通过加载带有footmisc选项的包在任何文档类中获取这些para。您也可以使用该类memoir并发出命令paragraphfootnotes

\documentclass{article}
\usepackage[para]{footmisc}

    % OR:
    % \documentclass{memoir}
    % \paragraphfootnotes

\begin{document}
This is an ancient\footnote{Possibly first-century Roman.} palindrome:
Sator\footnote{``The sower''.} Arepo\footnote{Apparently a proper name.} Tenet\footnote{``Holds''.} Opera\footnote{``Works''.} Rotas.\footnote{``Broken''.}
Its meaning is unclear but you can make a magic square with it.
\end{document}

在此处输入图片描述 在此处输入图片描述

答案2

这样的事情对你有用吗?

\documentclass{article}
\begin{document}
\Huge

Regular Text

\vfill

Bottom Notes

\newpage

\end{document}

在此处输入图片描述

相关内容