On 08/13/2009 12:39 PM, Antonio Díaz wrote:
I'm writing and designing a text. The style is *Book Koma-script*
First question: the text have a lot of footnotes, and I want it to appear on
the side of the body of the text, as same as the margin notes. Is it
possible?
Yes, but I don't really know how. It's possible there's a package on
ctan to do this. If so, then use it.
If not, then you could try defining some LaTeX command that looks like a
footnote, but acts like a margin note. Very roughly:
\newcounter{footmarg}
\newcommand{\margfoot}[1]{\refstepcounter{footmarg}\marginpar{\arabic{footmarg}.
#1}}
Then, if you don't want footnotes at all:
\let\footnote=\margfoot
This will not always work, I expect, but it ought to get you started.
Second question: Is possible to change the position of the page numbers?
How? My text is 20 cm. high x 30 cm. width, horizontal format. The margins
are 3 cm. inside an 7 cm. outside. Is possible to make that the footnotes
and the page numbers appears out of this margins? (with a margin of 3 cm.
outside for both of them).
Use the fancyhdr package, for which LyX has some support.
rh