11

I want to create the symbol Aaron Turon used as a vertical separator on his thesis title page. I think it is typeset like normal text and is not an external Image. It looks like two integral symbols rotated into a horizontal shape. This is his Thesis.

enter image description here

And this is the titlepage:

enter image description here Does anyone know how to typeset the symbol?

Bernard
  • 271,350

2 Answers2

18

This one looks like adforn n° 21:

enter image description here

\documentclass{article}

\usepackage{adforn}

\begin{document}

\adforn{21}

\end{document}

You might also want to take a look at PGFOrnament and PSVectorian.

7

Just for fun, use @PhelypeOleinik nice answer for your work

You can indeed construct such a symbol from integral signs:

\documentclass{article}

\usepackage{graphicx}

\title{title}

\begin{document}

\maketitle

\begin{center}
\scalebox{2}{\rotatebox{-50}{$\int$}\kern-0.95em\rotatebox{-50}{$\int$}}
\end{center}

text

\end{document}

enter image description here