Although I care little about logos, it might be preferable to have one that can
be constructed in a simple way, e.g. as ASCII art or by a LaTeX macro.
There are some tools (figlet for ascii-art) or tizk for LaTeX which may be of
help (see links below).
A quick search and some adjustments resulted in the hints below (which doesn't
mean, I like it ;). Actually I like the one Bill referred to in the last post.
https://en.wikipedia.org/wiki/FIGlet
logo:=[_
" ____________________________________________________",_
" ________ __ ________________ ________ ",_
" / ____/______(__) ______/ __ | / ____/ ",_
" / __// ____/ / /____/ ____ |__\ \ ",_
"/__/ /__/ /__/\______/__/ |__/______/ ",_
"=~=~=~=~==~=~=~=~==~=~=~=~= "]
(2)
[" __________________________", " ____ _ ________ ____ ",
" / __/___(_) ___/ _ | / __/ ", " / _// __/ / /__/ __ |_\ \ ",
"/_/ /_/ /_/\___/_/ |_/___/ ", "=~=~=~=~==~=~=~=~==~=~=~=~= "]
Type: List(String)
map(output,logo);
__________________________
____ _ ________ ____
/ __/___(_) ___/ _ | / __/
/ _// __/ / /__/ __ |_\ \
/_/ /_/ /_/\___/_/ |_/___/
=~=~=~=~==~=~=~=~==~=~=~=~=
Type: List(Void)
or in LaTeX:
https://tex.stackexchange.com/questions/381262/logo-design-with-tikz
https://tex.stackexchange.com/questions/297879/drawing-logo-with-tikz
https://tex.stackexchange.com/questions/469279/how-can-i-create-this-logo-in-latex
\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{fit}
\usepackage{amssymb}
\begin{document}
\begin{tikzpicture}
\node [yscale=2.8,xscale=1.2,rotate=-5] (int)
{$\int_\mathtt{\partial}^{\mathtt{\aleph_0}}$};
\node (H1) at ([yshift=-1mm,xshift=2mm]int.east) {\textbf{\textsf{CAS}}};
\node (H2) at ([yshift=1mm,xshift=-1mm]int.west) {\textbf{\textsf{Fri}}};
\node[circle,draw,thick,fit=(int) (H1) (H2),inner sep=-4pt]{};
\end{tikzpicture}
\end{document}