右对齐脚注文本

右对齐脚注文本

我想将双列文章中的脚注从左侧位置移到右侧位置而不进行编号,因此我重写了部分代码,但是我的脚注始终在左侧,如何才能将行和文本的位置更改为右列页面的底部,如下图所示。

麦码

\documentclass[fleqn,twocolumn]{article}

\usepackage{blindtext}
\usepackage[bottom]{footmisc}
\title{The Triangulation of Titling Data in Non-Linear Gaussian Fashion via 
 $\rho$ Series\thanks{No procrastination}}
\date{2017\\ December}
\author{John Doe  }

\newcommand\blfootnote[1]{%

  \begingroup
  \renewcommand\thefootnote{}\footnotetext{#1}%
  \addtocounter{footnote}{-1}%
  \endgroup
}
\begin{document}
\maketitle
\blfootnote{author information}



\begin{abstract}
abstract.....
\end{abstract}
\section{Introduction}
 ....
 ....
     ....

\end{document}

我想要一个像这张图片一样的脚注 在此处输入图片描述

答案1

您可以使用\afterpage强制\footnotetext进入下一列。

\documentclass[fleqn,twocolumn]{article}
\usepackage{lipsum}
\usepackage[bottom]{footmisc}
\usepackage{afterpage}

\title{The Triangulation of Titling Data in Non-Linear Gaussian Fashion via 
 $\rho$ Series\thanks{No procrastination}}
\date{2017\\ December}
\author{John Doe  }

\newcommand\blfootnote[1]{%
  \begingroup
  \renewcommand\thefootnote{}\footnotetext{#1}%
  %\addtocounter{footnote}{-1}% not needed
  \endgroup
}
\begin{document}
\maketitle
\afterpage{\blfootnote{author information}}

\begin{abstract}
\lipsum[1]
\end{abstract}
\section{Introduction}
\lipsum[2-5]\footnote{Number test.}
\end{document}

相关内容