I'm trying to make a left-sided margin note.
As per the LaTeX wiki, I tried using \reversemarginpar
but that didn't solve anything—it didn't make a margin note at all. I also tried \marginpar[left text/right text]{%my text}
to no avail. I tried using two other packages, marginnote
and mparhack
, but again, those didn't solve my problem.
Maybe there are some things I've missed (perhaps I have to further define something in the preamble?), but I would appreciate an example of how to use a margin note successfully.
Here's some code I tried:
\documentclass{article}
\usepackage{amssymb}
\usepackage{wasysym}
\usepackage[top=2cm, bottom=1.3cm, left=2.5cm, right=2.5cm]{geometry}
\usepackage{tensor}
\usepackage{enumitem}
\usepackage{outlines}
\usepackage{ulem}
\title{Chapter 13 - Chromosomal Rearrangements and Changes in Chromosome Number}
\author{A. Uthor}
\date{}
\pagestyle{empty}
\begin{document}
\maketitle
\section*{\Large Types:}
\begin{outline}[enumerate]
\1 Duplications
\1 Deletions
\1 Inversions
\1 Translocations
\end{outline}
\textbf{semisterility} $\rightarrow$ diminished fertility of translocation heterozygotes by at least 50\%
\reversemarginpar{Why does Mendel's 2$\mathrm{^{nd}}$ require viability of offspring?}
\end{document}
%
in the%my text
part, do you? It would make TeX ignore the text and cause an error because of the missing}
.\reversemarginpar
is a command that, when issued, forces all\marginpar
s created after to be put on the opposite side of normal (that is, on the left instead of right for single sided documents, and on the inside edge as opposed to the outside edge for double sided documents). But it sounds like you want to dynamically switch sides as you go along? Like having some margin notes on the left and others on the right? (Lastly, a comment on asking questions: it helps to make your question title more descriptive.)