1

I would like to write a document using NotesTex. However, after downloading it, I don’t know how to write a document using that template, i.e. do I have to use any command in a new file or do I have to use the files inside the downloadable folder?

DG'
  • 21,727
  • 1
    As a starter, the NotesTeX reader on github provides a simple example https://github.com/Adhumunt/NotesTeX/blob/master/README.md – Daniel May 24 '18 at 23:29

1 Answers1

2
  1. You have to put the file NotesTeX.sty where TeX can find it. Your working directory is a good place. If you have a recent installation of MiKTeX or TeXLive, you don't have to do anything at all, it is already there.

  2. You have to load the NotesTeX package, with \usepackage{NotesTeX}

  3. You can go ahead now and use everything detailed in the NotesTeX documentation

You could start with this snippet:

\documentclass{article}
\usepackage{NotesTeX}
\usepackage{kantlipsum}
\usepackage{libertine}

\title{Title\\Subtitle}
\author{Author}
\affiliation{Affiliation}
\emailAdd{author@affiliation.edu}


\begin{document}
    \maketitle

    \section{Not Kant}
    A sidenote.\sn{Hello, here!}

    \section{Kant}
    \kant[1]

    \section{Again: not Kant}
    A marginnote.\mn{Hi, there!}

\end{document}

enter image description here

DG'
  • 21,727
  • Thanks. However, despite having a recent version of TeXLive, the package is not included and I can't still use the package. – user157226 Jun 10 '18 at 11:42
  • Do you have a full installation of TL2018? Try: tlmgr info notestex for information and tlmgr install notestex for installation. Depending on your OS you might have to use sudo. – DG' Jun 10 '18 at 13:04
  • @user157226 Also, if you have problems using tlmgr, you can always just download NotesTeX.sty and save it in your working directory, i.e. the place where your .tex file is. – DG' Jun 11 '18 at 07:58
  • 1
    Hello @DG', thank you for helping with this issue! – Dhuality Sep 30 '18 at 13:19
  • @Aditya Glad to help. Btw: Nice package you have there (sorry). – DG' Sep 30 '18 at 22:24