3

I am looking for a character to indicate a missing paragraph. It is used in German schools when correcting essays.

The character is used like this and looks like the red one here (source):

Usage of the missing paragraph sign

I have tried:

  • detexify, but the best results are just \rfloor and \lceil, where I would need a combination of both
  • googling for latex missing paragraph, which yields a lot of results regarding \paragraph, which is not what I need.

I am not looking for ¶ \textparagraph, of course.

4
  • Please see this question: tex.stackexchange.com/q/65740/16550! Duplicate? Commented Aug 27, 2020 at 9:35
  • Well it is not really a symbol that you typeset, you write them. There seem to be a font here: tex.stackexchange.com/questions/65740/…. Commented Aug 27, 2020 at 9:37
  • @UlrikeFischer: yes, that's true. However, when writing about those symbols / describing them, I don't want to add them manually into the PDF. (I don't even know how I would do that, except printing and scanning) Commented Aug 27, 2020 at 10:28
  • I would probably just do this: to give them a "handwritten look" ;-) Commented Aug 27, 2020 at 10:59

2 Answers 2

1

I tried using tikz and the library calc:

\documentclass[a4paper]{article} \usepackage{tikz} \usetikzlibrary{calc} \newcommand{\missingParagraph}{ \begin{tikzpicture}[overlay] \node[left] (mleft) at (0,0) {}; \node[right] (mright) at (0.025,0) {}; \draw[red, thick] ($(mleft.south west)+(-0.05,0)$) -| ($(mright.north west)+(-0.05,0.25)$) -- ($(mright.north west)+(+0.2,0.25)$); \end{tikzpicture} } \begin{document} bis zum bitteren Zeilenende.\missingParagraph Hier soll ein Absatz eingefügt werden. \end{document} 

enter image description here

Not so optimized, but it works.

0

Just to have an answer here: As you will probably not publish anything containing these symbols, you can just produce one by hand, like the following.

\documentclass[border=5pt]{standalone} \usepackage{color,mathtools} \newcommand{\linebreaksign}{\ensuremath{\mathclap{\color{red}\rfloor\hspace{-1.37mm}\lceil}}} \begin{document} Here should be a \linebreaksign{} linebreak \end{document} 

Result

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.