In a document I am writing I have a list close to this one:
\begin{itemize}
\item \emph{c} before \emph{e} or \emph{i} is pronounced as in \emph{church}
\item \emph{g} before \emph{e} or \emph{i} is pronounced as in \emph{gin}
\end{itemize}
Of course, there is a large portion of repeated text. Is it possible to replace it with a single character ” centered ans taking the right width?
The final result should look like:
c before e or i is pronounced as in church
g ” as in gin


\documentclass{article} \begin{document} \setbox0\hbox{before \emph{e} or \emph{i} is pronounced} \begin{itemize} \item \emph{c} before \emph{e} or \emph{i} is pronounced as in \emph{church} \item \emph{g} \makebox[\the\wd0][c]{"} as in \emph{gin} \end{itemize} \end{document}? – Oct 22 '19 at 16:36Quote (ditto mards) to avoid repeating a text. This would help search engines find the post, as I expect that many who would want to do this would seach for "how to make ditto marks" or similar. – dedded Oct 22 '19 at 17:05