To do notes in Latex
I am too lazy to write my own post. But I will write it soon...
Till then, here's the link
To Do notes in Latex
Here's my version of notes in Latex.
One can make good side notes, using '\marginpar{}'. Look up for the syntax... I haven't given much thought to it. Here's a simple code you can use to understand the usage:
Till then, here's the link
To Do notes in Latex
Here's my version of notes in Latex.
One can make good side notes, using '\marginpar{}'. Look up for the syntax... I haven't given much thought to it. Here's a simple code you can use to understand the usage:
And here's what you will get:\documentclass[twoside]{article}
\setlength{\marginparwidth}{1.2in}
\let\oldmarginpar\marginpar
\renewcommand\marginpar[1]{\-\oldmarginpar[\raggedleft\footnotesize #1]%
{\raggedright\footnotesize #1}}
\begin{document}
\begin{flushright}
This is some text.\oldmarginpar{This is the old marginpar command.
This is the old marginpar command.}
\vspace{2cm}
This is some other text.\marginpar{This is the new marginpar command.
This is the new marginpar command.}
\end{flushright}
\end{document}
Comments