如何删除脚注中的缩进?

如何删除脚注中的缩进?

在第一页,我在脚注中加入了“通讯作者”。但是,前面有一个不必要的缩进*(见下图)。

在此处输入图片描述

我试过了\noindent,但是没有用。MWE 在下面。谢谢!

\documentclass[twocolumn, twoside]{article}

\usepackage{authblk}    
\usepackage{multicol}
\usepackage{fancyhdr}   

\begin{document}

\begin{multicols}{1} 
\title{\fontsize{24pt}{10pt}\selectfont\textbf{The Title Here\\}\vspace{1ex}} 

    \author[1,*]{Author One}
    \affil[1]{\small University of California;}     

\date{}

\end{multicols}

\twocolumn[ 
  \maketitle
  \thispagestyle{fancy} 
        \begin{abstract}
         {\fontfamily{pnc}\selectfont 

         \textbf{} Following the first case series of Hodgkin lymphomas  \\
}
    \end{abstract}
]

\renewcommand{\thefootnote}{*}
    \footnotetext{\noindent  Correspondence: John Doe, 1234 Main Street, City Name, CA 00000. Tel: 123-456-6666; Fax: 123-456-4545; Email: [email protected]}

\section{Introduction}
Although Pathology is as ancient as 17th century BC Egyptian medicine, Hematopathology can only be historically traced back to 1832 AD when Thomas 

\end{document}

答案1

cfr 的解决方案显然有效。对于像我这样没有太多经验的人,我找到了一个更简单的解决方案堆栈溢出并想在这里分享:

使用脚杂包裹:

\usepackage[hang,flushmargin]{footmisc}

答案2

切勿在命令中使用手动标记,例如\title。我建议使用类似标题这里。我不确定你是否真的想要你看起来想要的东西——这看起来很奇怪。但你无疑可以适应:

\documentclass[twocolumn, twoside]{article}
\usepackage{fancyhdr}
\usepackage{titling}
\pretitle{\begin{center}\fontsize{24pt}{10pt}\selectfont\bfseries}
\posttitle{\par\end{center}\vskip 1ex}
\preauthor{\begin{center}
    \large \lineskip 0.5em}
\postauthor{\par\end{center}}
\thanksheadextra{1,}{}
\setlength\thanksmarkwidth{.5em}
\setlength\thanksmargin{-\thanksmarkwidth}
\begin{document}
\title{The Title Here}
\author{Author One \thanks{Correspondence: John Doe, 1234 Main Street, City Name, CA 00000. Tel: 123-456-6666; Fax: 123-456-4545; Email: [email protected]}}
\date{}
\renewcommand\maketitlehookd{%
  \begin{abstract}
    \fontfamily{pnc}\selectfont% This seems most unwise.
    \textbf{} Following the first case series of Hodgkin lymphomas
  \end{abstract}}
\renewcommand\maketitlehookc{%
  \begin{center}
    \textsuperscript{1}{\small University of California;}
  \end{center}}
\maketitle
\thispagestyle{fancy}% really? Are you sure you want this?

\section{Introduction}
Although Pathology is as ancient as 17th century BC Egyptian medicine, Hematopathology can only be historically traced back to 1832 AD when Thomas

\end{document}

请注意,如果您希望更改默认字体,通常应该通过加载相关包来为整个文档选择字体。例如,使用不同字体的摘要是不明智的。...

样本

答案3

meho_rLatex.org/论坛

\documentclass{book}

\makeatletter

\renewcommand\@makefntext[1]{%
\setlength\parindent{1em}%
\noindent
\mbox{\@thefnmark.~}{#1}}

\makeatother

\usepackage{lipsum}% just to generate dummy text

\begin{document}
Test\footnote{\lipsum[1]}.
\end{document}

重新定义makefnttext、设置paraindent长度并用 删除缩进\noindent

相关内容