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.
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
- 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.