I want to know how can I add some text in the bottom margin of a document like the following picture?
I tried to do it, but it is appearing on all the pages. I want this to appear only in the first page. Thanks.
In plain TeX, there is \footline tokens list used for the footer. You can do something like this:
\newtoks\footlinebak
\footlinebak=\footline
\footline={\hss This acrticle is accepted...\hss \global\footline=\footlinebak}
%test:
first page
\vfil\break
second page
\bye
footer. For example, have a look at the packagefancyhdr(https://tex.stackexchange.com/questions/tagged/fancyhdr). For more specific help, it would be beneficial if you provide an MWE, see https://tex.meta.stackexchange.com/questions/228. – Dr. Manuel Kuehner Feb 27 '22 at 03:31