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?
Asked
Active
Viewed 637 times
1
-
1As 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 Answers
2
You have to put the file
NotesTeX.stywhere 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.You have to load the NotesTeX package, with
\usepackage{NotesTeX}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}
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 notestexfor information andtlmgr install notestexfor installation. Depending on your OS you might have to usesudo. – DG' Jun 10 '18 at 13:04 -
@user157226 Also, if you have problems using
tlmgr, you can always just downloadNotesTeX.styand save it in your working directory, i.e. the place where your.texfile is. – DG' Jun 11 '18 at 07:58 -
1
-
