GeneralTufte - I need sidenote and footnote

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
boitata
Posts: 8
Joined: Tue Nov 15, 2016 3:05 am

Tufte - I need sidenote and footnote

Post by boitata »

I'm using the Tufte Template.
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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Post by Johannes_B »

What template? Can you give us a link?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
boitata
Posts: 8
Joined: Tue Nov 15, 2016 3:05 am

Tufte - I need sidenote and footnote

Post by boitata »

I'm using the Tutte Template with Lyx.

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}
Last edited by cgnieder on Sat Apr 22, 2017 7:24 pm, edited 1 time in total.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Tufte - I need sidenote and footnote

Post by cgnieder »

This won't be easy because the tufte classes go to some lengths redefining footnotes. Quote the source:

Code: Select all

%%
% Transform existing \footnotes into \sidenotes
% Sidenote: ``Where God meant footnotes to go.'' ---Tufte
site moderator & package author
boitata
Posts: 8
Joined: Tue Nov 15, 2016 3:05 am

Tufte - I need sidenote and footnote

Post by boitata »

Yes, that is the problem.
Can you suggest me a template with marginnotes AND footnotes?
Regards.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Tufte - I need sidenote and footnote

Post by Johannes_B »

That would be the default for all standard classes as well as KOMA and memoir.

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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
boitata
Posts: 8
Joined: Tue Nov 15, 2016 3:05 am

Tufte - I need sidenote and footnote

Post by boitata »

Thanks a lot.
Can I use the Article template?
Regards.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Tufte - I need sidenote and footnote

Post by Johannes_B »

What do you mean?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
boitata
Posts: 8
Joined: Tue Nov 15, 2016 3:05 am

Tufte - I need sidenote and footnote

Post by boitata »

I will re-do the Tufte template with footnotes and sidenotes from other template, of course!
I've just tested the Memoir Template and I works.
Thanks a lot.
Post Reply