Text FormattingNeed a given format for the footnote

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Need a given format for the footnote

Post by NELLLY »

Hi
I need to get the following format for the footnote (at end of the first page of the paper)

Address correspondence to .....

If I use\footnote{Address correspondence to....) there will be a number before the author name and at the beginning of the text of the footnote (I didn't need it). Also the footnote will be underlined. What can I do

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Need a given format for the footnote

Post by frabjous »

It would help greatly to know what document class you were using, but if something like article, you could use \thanks (which goes inside \author), and gets put in when you use \maketitle.

\author{Roy G. Biv\thanks{Address correspondence to ...}}
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Need a given format for the footnote

Post by NELLLY »

Hi This is the preambule of my document

Code: Select all

\documentclass[12pt]{article}
\setlength{\topmargin} {-3cm} \setlength{\headheight} {1.5cm}
\setlength{\headsep} {1cm} \setlength{\oddsidemargin} {1cm}
\setlength{\textheight} {21cm} \setlength{\textwidth} {15cm}
\usepackage{natbib}
\linespread{2}
 \bibpunct[, ]{(}{)}{,}{a}{}{,}%
 \def\bibfont{\small}%
 \def\bibsep{\smallskipamount}%
 \def\bibhang{24pt}%
 \def\newblock{\ }%
 \def\BIBand{and}%

\hyphenpenalty 10000
\date{}
\usepackage{amsmath}
\usepackage{tabularx}
\usepackage{rotating,caption2}
\usepackage{graphicx, float}
\usepackage[bf]{titlesec}
\usepackage{titletoc}
\makeatletter \if@titlepage
  \renewenvironment{abstract}{%
      \titlepage
      \null\vfil
      \@beginparpenalty\@lowpenalty
      \begin{center}%
        \bfseries \abstractname
        \@endparpenalty\@M
      \end{center}}%
     {\par\vfil\null\endtitlepage}
\else
  \renewenvironment{abstract}{%
      \if@twocolumn
        \section*{\abstractname}%
      \else
        \small
        \list{}{%
          \settowidth{\labelwidth}{\textbf{\abstractname:}}
          \setlength{\leftmargin}{0pt}
          \setlength{\itemindent}{\labelwidth}
          \addtolength{\itemindent}{\labelsep}
        }
        \item[\textbf{\abstractname:}]

      \fi}
      {\if@twocolumn\else\endlist\fi}
\fi \makeatother

%\begin{document}
%%%% debut macro %%%%
\makeatletter
\renewcommand{\fnum@figure}{\textbf{\textit{\figurename~\thefigure}}}
\renewcommand{\fnum@table}{\textbf{\tablename~\thetable}}
\renewcommand{\captionlabeldelim}{.}
\makeatother
\renewcommand{\refname}{REFERENCES}
\renewcommand*\abstractname{Abstract\hfill}

%%%% fin macro %%%%

%\titleformat*{\section}{\scshape}
\titleformat{\section}{\normalfont\bfseries}{\thesection.}{0.2em}{\uppercase}
%\titlelabel{\thesection.\quad}
\makeatletter
\newif\if@borderstar
   \def\bordermatrix{\@ifnextchar*{%
       \@borderstartrue\@bordermatrix@i}{\@borderstarfalse\@bordermatrix@i*}%
   }
   \def\@bordermatrix@i*{\@ifnextchar[{\@bordermatrix@ii}{\@bordermatrix@ii[()]}}
   \def\@bordermatrix@ii[#1]#2{%
   \begingroup
     \m@th\@tempdima8.75\p@\setbox\z@\vbox{%
       \def\cr{\crcr\noalign{\kern 2\p@\global\let\cr\endline }}%
       \ialign {$##$\hfil\kern 2\p@\kern\@tempdima & \thinspace %
       \hfil $##$\hfil && \quad\hfil $##$\hfil\crcr\omit\strut %
       \hfil\crcr\noalign{\kern -\baselineskip}#2\crcr\omit %
       \strut\cr}}%
     \setbox\tw@\vbox{\unvcopy\z@\global\setbox\@ne\lastbox}%
     \setbox\tw@\hbox{\unhbox\@ne\unskip\global\setbox\@ne\lastbox}%
     \setbox\tw@\hbox{%
       $\kern\wd\@ne\kern -\@tempdima\left\@firstoftwo#1%
         \if@borderstar\kern2pt\else\kern -\wd\@ne\fi%
       \global\setbox\@ne\vbox{\box\@ne\if@borderstar\else\kern 2\p@\fi}%
       \vcenter{\if@borderstar\else\kern -\ht\@ne\fi%
         \unvbox\z@\kern-\if@borderstar2\fi\baselineskip}%
         \if@borderstar\kern-2\@tempdima\kern2\p@\else\,\fi\right\@secondoftwo#1 $%
     }\null \;\vbox{\kern\ht\@ne\box\tw@}%
   \endgroup
   }
\makeatother
\begin{document}
\title{XXXXXXXXXX}
\maketitle \vspace*{-2cm}
\author{NAME&NAME\footnote{Address correspondence to}}


User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Need a given format for the footnote

Post by frabjous »

\thanks{...} should work if you put it inside \author{...}, so long as the \author{...} command comes before the maketitle command. (I can't understand why you have \theauthor after \maketitle or how that is supposed to work.)

\thanks will use an asterisk rather than a number.

If you really need no number or asterisk or anything, you could put in:

{\renewcommand{\thefootnote}{}\footnotetext{Address correspondence to ...}}

(Keep the renewcommand inside the brakcets or else it'll effect all footnotes.)
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Need a given format for the footnote

Post by NELLLY »

Hi

Code: Select all


\documentclass{article}

\begin{document}
\title{TITLE OF THE PAPER}
\author{AUTHOR NAME{\renewcommand{\thefootnote}{}\footnotetext{Address correspondence to ...}}}


\maketitle




\end{document}

I didn't get the footnote.
For my case, I need the following
TITLE OF THE PAPER
AUTHOR NAME


Abstract:texte.................................................................................................................................................








Address correspondence to:
without any line above the footnote
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Need a given format for the footnote

Post by frabjous »

Code: Select all

\documentclass{article}

\begin{document}
\title{TITLE OF THE PAPER}
\author{AUTHOR NAME}
\renewcommand{\footnoterule}{}
{\renewcommand{\thefootnote}{}\footnotetext{Address correspondence to ...}}

\maketitle

Then a bunch of stuff here.

When you want a line again, use something like:

\renewcommand{\footnoterule}{\noindent\rule[0.3ex]{1.9in}{1pt}}

\end{document}

Alternatively, if the only things on your title page are the title, the abstract and this note:

Code: Select all

\documentclass{article}

\begin{document}
\title{TITLE OF THE PAPER}
\author{AUTHOR NAME}

\maketitle

\begin{abstract}
    This is the abstract here.
\end{abstract}

\vfill

\begin{footnotesize}
\noindent Address correspondence to:
\end{footnotesize}

\clearpage
Then more stuff.

\end{document}

Post Reply