General ⇒ Tufte - I need sidenote and footnote
Tufte - I need sidenote and footnote
The template replace all footnotes to sidenotes.
I need sidenotes to make small notes (for example, references a book). The sidenotes are numbered 1, 2, 3...
But in some cases I have a big note, and I want to put it in a footnote, for spaces reasons. The footnotes are numbered a, b, c, d...
I don't know how to do it. How can I redefine the \footnote command in latex?
Thanks a lot.
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Tufte - I need sidenote and footnote
Tufte - I need sidenote and footnote
Code: Select all
\documentclass[a4paper,14pt,twoside]{tufte-book}
\begin{document}
First paragraph \sidenote{This is the first paragraph, numbered 1}
Second paragraph \footnote{The second paragraph is numbered a. This is a long note, and I want to do a footer note. shsdjgshd ghg kjhgskjoewiotwiopjgwiojhg wgsdkhgçsdjg sdklghsdklgsdjg hsdjgsdhgskd ghsdlgosdgjs dlgshbdkgsdlg shdskldhg sdlghsd gsjdhg}
\end{document}
Tufte - I need sidenote and footnote
Code: Select all
%% % Transform existing \footnotes into \sidenotes % Sidenote: ``Where God meant footnotes to go.'' ---Tufte
Tufte - I need sidenote and footnote
Can you suggest me a template with marginnotes AND footnotes?
Regards.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Tufte - I need sidenote and footnote
Code: Select all
\documentclass[%fontsize=14pt
]{scrbook}
\usepackage{geometry}
\geometry{a4paper,twoside,marginparwidth=5cm,outer=6cm}
\usepackage{blindtext}
\usepackage{marginnote}
\begin{document}
First paragraph \marginnote{This is the first paragraph, numbered 1}
Second paragraph \blindtext\footnote{\blindtext}
\end{document}
Tufte - I need sidenote and footnote
Can I use the Article template?
Regards.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Tufte - I need sidenote and footnote
Tufte - I need sidenote and footnote
I've just tested the Memoir Template and I works.
Thanks a lot.