Text Formattingedited footnote mark

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
ge0rge04
Posts: 10
Joined: Sun Mar 28, 2010 12:23 am

edited footnote mark

Post by ge0rge04 »

Hi all.

I need to edit a footmark to look like this

Code: Select all

Title
Author (*

text...


_____
*) Author's adress
What i was able to write is something like this, but it doesn't look too logical

Code: Select all

\documentclass[12pt]{article}

\renewcommand{\footnotemark{(*}}
\title{Title}
\author{Author\footnote
{*)author's adress}}
\date{}

\begin{document}
\maketitle
\end{document}
Can you suggest an alternative?

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

edited footnote mark

Post by localghost »

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\title{Title}
\author{Author\thanks{Author's adress}}
\date{}

\begin{document}
  \maketitle
\end{document}

Best regards
Thorsten
ge0rge04
Posts: 10
Joined: Sun Mar 28, 2010 12:23 am

Re: edited footnote mark

Post by ge0rge04 »

i tested your example
it's not like in the example, but it's still close.
it should be a '(' before the * in the title and a ')' after the * in the footnote.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

edited footnote mark

Post by localghost »

Oh, missed one part during copy & paste process.

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\makeatletter
% Original definition in »latex.ltx«
\def\thanks#1{\space(\footnotemark
    \protected@xdef\@thanks{\@thanks
        \protect\footnotetext[\the\c@footnote]{)\space #1}}%
}
\makeatother

\title{Title}
\author{Author\thanks{Author's adress}}
\date{}

\begin{document}
  \maketitle
\end{document}
ge0rge04
Posts: 10
Joined: Sun Mar 28, 2010 12:23 am

Re: edited footnote mark

Post by ge0rge04 »

thanks :)
Post Reply