[XeTeX] Thanks

Ulrike Fischer news2 at nililand.de
Tue Mar 25 14:07:54 CET 2008


Am Tue, 25 Mar 2008 13:06:39 +0100 schrieb Hans van Maanen:

> Hi --
> 
> This is probably more LaTex than XeTex, but I have no one else to turn  
> to... 

Try the newsgroup comp.text.tex


> I've redefined my footnotes like so:
> 
> \makeatletter
> \renewcommand\@makefntext[1]{\noindent{\@thefnmark.~~}#1}
> \makeatother
> 
> That is, just a normalsize number, a period and two spaces. Now I want  
> my \thanks to be formatted similarly. Is there a quick way to do this,  
> too? 

classes redefines footnote-related things in the \maketitle command.
Some more (like article), some less like scrartcl:

\documentclass{scrartcl}
\makeatletter
\renewcommand\@makefntext[1]{\noindent{\@thefnmark.~~}#1}
\makeatother

\title{title}
\author{Me\thanks{and you}}
\begin{document}

\maketitle

text\footnote{a footnote}
\end{document}


So if you want to use \maketitle you will probably have to redefine it.

-- 
Ulrike Fischer 



More information about the XeTeX mailing list