Text Formattinghow use endnote!

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
33coder
Posts: 1
Joined: Thu Jun 25, 2015 2:08 am

how use endnote!

Post by 33coder »

hello everyone !

I'm looking for how to use endnotes package !
I add

Code: Select all

\usepackage {endnotes}
but if I typing

Code: Select all

\documentclass[11pt]{article}
\usepackage{endnotes}

\begin{document}
cool \endnote{bla}
\end{document}
I have the index, but nothing at the end. The bla does not appear

an idea?

Recommended reading 2024:

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

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

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

how use endnote!

Post by cgnieder »

You need to put \theendnotes where you want the list to appear:

Code: Select all

\documentclass[11pt]{article}
\usepackage{endnotes}

\begin{document}
cool \endnote{bla}

\theendnotes
\end{document}
Regards
site moderator & package author
Post Reply