I have a problem with the indentation of the text. Can anyone please help me understanding why the line produced by the code indicated with the arrow is not aligned with the others?
Thank you very much,
Ignazio
Code: Select all
\documentclass[italian]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{color}
\usepackage{pict2e}[2009/06/01]
\setlength{\parindent}{0pt}
\newcommand\Response{{%
\setbox0\hbox{R}
\unitlength\ht0
\picture(0,0)
\linethickness{.075\unitlength}
\polyline(0.2,-0.3)(.7,1.2)(0.2,1.35)
\endpicture
\box0
}}
\newcommand\ResponseB{%
\unitlength=1.5ex
R
\begin{picture}(0, 0)(1.9, 0)
\linethickness{.075\unitlength}
\polyline(0.2,-0.3)(.7,1.2)(0.2,1.35)
\end{picture}
\kern-1.7ex
}
\begin{document}
\textbf{%
R test\\%
\Response{} test\\%
\ResponseB{} test\\%
}
\textbf{R test}\\%
\textbf{\Response{} test}\\%
\textbf{\ResponseB{} test}\\%
\textcolor{red}{\textbf{R test}}\\%
\textcolor{red}{\textbf{\Response{} test}}\\% <-----------
\textcolor{red}{\textbf{\ResponseB{} test}}\\%
\textcolor{red}{\textbf{%
R test\\%
\Response{} test\\%
\ResponseB{} test\\%
}}
\end{document}