\documentclass[a4paper,11pt]{book}
\usepackage[left=1.5cm,right=1cm,top=3cm,bottom=1.5cm,marginparwidth=5.5cm,marginparsep=1cm,outer=8cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[svgnames]{xcolor}
\usepackage{amssymb}
\usepackage[fulladjust]{marginnote}
\usepackage{ifoddpage}
\usepackage{showframe}
\newcommand{\arrow}[1]{%
\checkoddpage
\ifoddpage
\marginnote{\hspace*{-.5\marginparsep}\makebox[0pt]{\textcolor{red}{$\blacktriangleleft$}}\hspace{.5\marginparsep}#1}
\else
\marginnote{\makebox[0pt][l]{\makebox[\dimexpr\marginparwidth+0.6\marginparsep\relax][r]%
{\textcolor{red}{$\blacktriangleright$}}}\hfill#1}
\fi
}
\begin{document}
TEXT\arrow{\textbf High \textbf Frequency\newline \textbf Very \textbf High \textbf Frequency \newline \textbf Ultra \textbf High \textbf Frequency\newline \textbf Super \textbf High \textbf Frequency}
\newpage
TEXT\arrow{\textbf High \textbf Frequency\newline \textbf Very \textbf High \textbf Frequency \newline \textbf Ultra \textbf High \textbf Frequency\newline \textbf Super \textbf High \textbf Frequency}
\end{document}
mostrando
.
No hay problema en páginas impares. Solo las páginas pares y \newline
el comando agregar tienen espacios en blanco. Entonces, ¿alguien sabe cómo solucionarlo?
Relacionado con:Marca de color en notas al margen en el medio del \marginparsep
Respuesta1
Tienes que usar \\
en lugar de \newline
, junto con \raggedright
o \raggedleft
.
También simplifiqué el código.
\documentclass[a4paper,11pt]{book}
\usepackage[
left=1.5cm,
right=1cm,
top=3cm,
bottom=1.5cm,
marginparwidth=5.5cm,
marginparsep=1cm,
outer=8cm,
]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[svgnames]{xcolor}
\usepackage{amssymb}
\usepackage[fulladjust]{marginnote}
\usepackage{ifoddpage}
\usepackage{showframe}
\newcommand{\printarrow}[2]{%
\makebox[0pt][#1]{\makebox[\marginparsep]{\color{red}$#2$}}%
}
\newcommand{\arrow}[1]{%
\checkoddpage
\ifoddpage
\marginnote{%
\printarrow{r}{\blacktriangleleft}%
\parbox[t]{\marginparwidth}{\raggedright #1}%
}%
\else
\marginnote{%
\parbox[t]{\marginparwidth}{\raggedleft #1}%
\printarrow{l}{\blacktriangleright}%
}
\fi
}
\begin{document}
TEXT\arrow{\textbf{H}igh \textbf{F}requency\\
\textbf{V}ery \textbf{H}igh \textbf{F}requency \\
\textbf{U}ltra \textbf{H}igh \textbf{F}requency\\
\textbf{S}uper \textbf{H}igh \textbf{F}requency}
\newpage
TEXT\arrow{\textbf{H}igh \textbf{F}requency\\
\textbf{V}ery \textbf{H}igh \textbf{F}requency\\
\textbf{U}ltra \textbf{H}igh \textbf{F}requency\\
\textbf{S}uper \textbf{H}igh \textbf{F}requency}
\end{document}
Nota.El ejemplo se preparó paperheight=8cm
sólo para mostrar ambas páginas en una sola imagen.
Respuesta2
Realmente no recomiendo esto ya que implica el uso de 2 notas al margen, lo que parece potencialmente complicado, pero esto funciona:
\documentclass[a4paper,11pt]{book}
\usepackage[showframe,left=1.5cm,right=1cm,top=3cm,bottom=1.5cm,marginparwidth=5.5cm,marginparsep=1cm,outer=8cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[svgnames]{xcolor}
\usepackage{amssymb}
\usepackage[fulladjust]{marginnote}
\usepackage{ifoddpage}
\newcommand{\arrow}[1]{%
\checkoddpage
\ifoddpage
\marginnote{\hspace*{-.5\marginparsep}\makebox[0pt]{\textcolor{red}{$\blacktriangleleft$}}\hspace*{.5\marginparsep}#1}%
\else
\marginnote{%
\makebox[0pt]{\hspace*{.6\marginparsep}\textcolor{red}{$\blacktriangleleft$}}%
}%
\marginnote{#1}%
\fi}
\begin{document}
TEXT\arrow{%
\textbf{H}igh \textbf{F}requency\\\textbf{V}ery \textbf{H}igh \textbf{F}requency \\\textbf{U}ltra \textbf{H}igh \textbf{F}requency\\\textbf{S}uper \textbf{H}igh \textbf{F}requency}
\newpage
TEXT\arrow{%
\textbf{H}igh \textbf{F}requency\\\textbf{V}ery \textbf{H}igh \textbf{F}requency\\\textbf{U}ltra \textbf{H}igh \textbf{F}requency\\\textbf{S}uper \textbf{H}igh \textbf{F}requency}
\end{document}