¿Cómo elimino las comas entre los símbolos de notas al pie sucesivos en esta elsarticle
clase modificada?
\documentclass{elsarticle}
\usepackage{etoolbox}
\makeatletter
%replace first instance (first tnote)
\patchcmd{\tnotemark}{\ding{73}}{\dag}{}{\@latex@error{Failed to path \string\tnotemark\space for \string\ding{73}}}
%replace second instance (second tnote)
\patchcmd{\tnotemark}{\ding{73}\ding{73}}{\dag\dag}{}{\@latex@error{Failed to path \string\tnotemark\space for \string\ding{73}\string\ding{73}}}
%replace first instance (first tnote)
\patchcmd{\tnotetext}{\ding{73}}{\dag}{}{\@latex@error{Failed to path \string\tnotetext\space for \string\ding{73}}}
%replace second instance (second tnote)
\patchcmd{\tnotetext}{\ding{73}\ding{73}}{\dag\dag}{}{\@latex@error{Failed to path \string\tnotetext\space for \string\ding{73}\string\ding{73}}}
\makeatother
\begin{document}
\begin{frontmatter}
\title{This is a specimen title\tnoteref{t1}}
\author{M. Author\tnoteref{t2}}
\tnotetext[t1]{This document is a collaborative effort.}
\tnotetext[t2]{Another title note.}
\end{frontmatter}
\section{Paper Material}
Some Text.
\end{document}
Respuesta1
No estoy seguro de por qué querrías hacerlo. Sin embargo, la coma está justo antes \ding{73}\ding{73}
de \tnotemark
, por lo que reemplazarla \,
es fácil.
\documentclass{elsarticle}
\usepackage{etoolbox}
%replace first instance (first tnote)
\patchcmd{\tnotemark}
{\ding{73}}
{\dag}
{}{}
%replace second instance (second tnote)
\patchcmd{\tnotemark}
{,\ding{73}\ding{73}}
{\,\dag\dag}
{}{}
%replace first instance (first tnote)
\patchcmd{\tnotetext}
{\ding{73}}{\dag}
{}{}
%replace second instance (second tnote)
\patchcmd{\tnotetext}
{\ding{73}\ding{73}}
{\dag\dag}
{}{}
\begin{document}
\begin{frontmatter}
\title{This is a specimen title\tnoteref{t1}\tnoteref{t2}}
\author{M. Author}
\tnotetext[t1]{This document is a collaborative effort.}
\tnotetext[t2]{Another title note.}
\end{frontmatter}
\section{Paper Material}
Some Text.
\end{document}
También hay algunos malentendidos sobre las notas. En elsarticle
uno se distingue entre notas de título y notas de autor. El primero usa \tnoteref
y \tnotetext
, el segundo \fnref
y \fntext
. Las notas de título están marcadas con símbolos, las notas de autor con números. Puedes evitar las comas y reemplazar los símbolos de las notas del título con los parches que tienes.
También puedes abusar \tnoteref
de las notas del autor, pero está mal ya que solo obtienes como máximo dos de ellas. Simplemente elimínelo, en el parche de arriba, \,
si desea hacer esto.
\documentclass{elsarticle}
\usepackage{etoolbox}
%replace first instance (first tnote)
\patchcmd{\tnotemark}
{\ding{73}}
{\dag}
{}{}
%replace second instance (second tnote)
\patchcmd{\tnotemark}
{,\ding{73}\ding{73}}
{\dag\dag}
{}{}
%replace first instance (first tnote)
\patchcmd{\tnotetext}
{\ding{73}}{\dag}
{}{}
%replace second instance (second tnote)
\patchcmd{\tnotetext}
{\ding{73}\ding{73}}
{\dag\dag}
{}{}
\begin{document}
\begin{frontmatter}
\title{This is a specimen title\tnoteref{t1}}
\author{M. Author\tnoteref{t2}}
\tnotetext[t1]{Title note.}
\tnotetext[t2]{Author note.}
\end{frontmatter}
\section{Paper Material}
Some Text.
\end{document}
No me culpe a mí ni a este sitio si su envío es rechazado por no cumplir con el estándar.
Respuesta2
En mi opinión, eliminar la coma no tiene sentido, ya que esto dará como resultado una secuencia de tres símbolos idénticos, que parece una única referencia a una nota al pie.
Si realmente lo desea, simplemente reemplace el segundo comando de parche
%replace second instance (second tnote)
\patchcmd{\tnotemark}{\ding{73}\ding{73}}{\dag\dag}{}{\@latex@error{Failed to path \string\tnotemark\space for \string\ding{73}\string\ding{73}}}
por
%replace second instance (second tnote)
\patchcmd{\tnotemark}{,\ding{73}\ding{73}}{\dag\dag}{}{\@latex@error{Failed to path \string\tnotemark\space for \string\ding{73}\string\ding{73}}}