XeTeX ⇒ Customizing footnote markers
Customizing footnote markers
BTW, how to customize markers in LaTeX generally, not specifically for XeTeX?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Customizing footnote markers

Re: Customizing footnote markers
I didn't find anything in this regard in fontspec.pdf. Can you tell me some source where to look and how to hack markers? All I have found out till now is that it can be done by disabling "real" superscript numbers and use "normal" with scaling and shifting, but how it can be done? How to scale the numbers, shift them and use as footnote markers? If there is some doc or link with explanation, I'll be grateful.
Customizing footnote markers
I am sorry but that is way beyond my knowledge. Have you posted to the XeTeX-list yet? They are quite helpful there.meho_r wrote:I didn't find anything in this regard in fontspec.pdf. Can you tell me some source where to look and how to hack markers? All I have found out till now is that it can be done by disabling "real" superscript numbers and use "normal" with scaling and shifting, but how it can be done? How to scale the numbers, shift them and use as footnote markers? If there is some doc or link with explanation, I'll be grateful.

Re: Customizing footnote markers
Customizing footnote markers

Re: Customizing footnote markers
I know, it is too late ! but I found something about the topic and I think it would be useful for other visitors ( just like me)
Thanks to WIKIBOOKS which provides us this answers, I tried it with winedt and it works!
good luck for all!!
Latex will obviously take care of typesetting the footnote at the bottom of the page. Each footnote is numbered sequentially - a process that, as you should have guessed by now, is automatically done for you.
It is possible to customize the footnote marking. By default, they are numbered sequentially (Arabic). However, without going too much into the mechanics of Latex at this point, it is possible to change this using the following command (which needs to be placed at the beginning of the document, or at least before the first footnote command is issued).
\renewcommand{\thefootnote}{\arabic{footnote}} Arabic numerals, e.g., 1, 2, 3...
\renewcommand{\thefootnote}{\roman{footnote}} Roman numerals (lowercase), e.g., i, ii, iii...
\renewcommand{\thefootnote}{\Roman{footnote}} Roman numerals (uppercase), e.g., I, II, III...
\renewcommand{\thefootnote}{\alph{footnote}} Alphabetic (lowercase), e.g., a, b, c...
\renewcommand{\thefootnote}{\Alph{footnote}} Alphabetic (uppercase), e.g., A, B, C...
\renewcommand{\thefootnote}{\fnsymbol{footnote}} A sequence of nine symbols (try it and see!)
[/b]