This is not a too serious answer, but just to substantiate my statement that such things can be done very easily with asymptote. (You need to run e.g. with pdflatex -shell-escape.)
\documentclass[border=3.14mm]{standalone}
\usepackage{asypictureB}
\begin{document}
\begin{asypicture}{name=AsyPers}
import labelpath3;
size(8cm,8cm);
settings.render = 4;
currentprojection = perspective((-0.5,4,0.1), up=Z,autoadjust=true);
currentlight=(2,15,5);
material pens = material(diffusepen=0.7blue,ambientpen=blue,emissivepen=0.9*white,specularpen=0.95white,shininess=0.95);
draw(scale(0.8,1,-1)*labelpath("$\displaystyle B(p,q)=\frac{\Gamma(p)\,\Gamma(q)}{\Gamma(p+q)}$",
(2*Y+X-Z) -- X-Z),pens);
path3 Back=scale3(3)*plane(X,Z,O);
draw(surface(Back), black);
\end{asypicture}
\end{document}

And before I forget: there are, of course, dedicated TikZ packages and libraries to do the projections.
\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{amsmath,amsfonts,amssymb,mathtools}
\usetikzlibrary{3d}
\usepackage{tikz-3dplot}
\makeatletter % https://tex.stackexchange.com/a/48776/121799
\tikzoption{canvas is xy plane at z}[]{%
\def\tikz@plane@origin{\pgfpointxyz{0}{0}{#1}}%
\def\tikz@plane@x{\pgfpointxyz{1}{0}{#1}}%
\def\tikz@plane@y{\pgfpointxyz{0}{1}{#1}}%
\tikz@canvas@is@plane
}
\makeatother
\newcommand{\dd}{\ensuremath{\mathrm{d}}}
\begin{document}
\begin{tikzpicture}
%\clip(-10pt,-10pt) rectangle (610pt,310pt);
\fill[black!95!white] (0,0) rectangle (600pt,300pt);
%\tdplotsetmaincoords{90+30*sin(\X)}{\X}
\tdplotsetmaincoords{90+30*sin(40)}{40}
\begin{scope}[tdplot_main_coords,white,transform shape]
\begin{scope}[canvas is xy plane at z=0,yscale=-1]
\node at (80pt,5pt) {$ \vec{F}=m\,\vec{a} $};
\node at (50pt,10pt) {$ \vec{F}=m \frac{\dd \vec{v}}{\dd t}
+ \vec{v}\frac{\dd m}{\dd t} $};
\node at (270pt,15pt) {$\displaystyle \lim_{x \to a} \frac{f(x) - f(a)}{x - a} $};
\end{scope}
\begin{scope}[canvas is xy plane at z=0]
\node at (550pt,50pt) {$ E=m\, c^2 $};
\node at (520pt,100pt) {$ \vec{F}_g=-F\,\frac{m_1 m_2}{r^2}\, \vec{e}_r $};
\node at (550pt,150pt) {$\displaystyle \int\limits_{0}^{\pi} \sin x \, \dd x = 2 $};
\end{scope}
\begin{scope}[canvas is xz plane at y=0]
\node at (100pt,250pt) {$\displaystyle \frac{\dd}{\dd x}\sin x=\cos x $};
\node at (500pt,50pt) {$\displaystyle \frac{\dd }{\dd x}\ln(x)=\frac{1}{x} $};
\node at (400pt,50pt) {$ 2\text{H}_2 + \text{O}_2 \xrightarrow{n,m}
2\text{H}_2\text{O} $};
\end{scope}
\begin{scope}[canvas is yz plane at x=0]
\node at (200pt,150pt) {$\displaystyle x = a_0 + \frac{1}{a_1 + \frac{1}{a_2 + \frac{1}{a_3 + a_4}}} $};
\node at (350pt,300pt) {$ \mathbf{X} =
\begin{pmatrix}
x_1 & x_2 & \ldots \\
x_3 & x_4 & \ldots \\
\vdots & \vdots & \ddots
\end{pmatrix}$};
\end{scope}
\end{scope}
\end{tikzpicture}
\end{document}
As you can see, I made no effort in arranging them nicely (yet I made some adjustments like switching to pmatrix, using \overrightarrow and making symbols like chemical elements and differential d's upright).
asymptote, so you may want to consider tagging this questionasymptote. (Perspective drawing is possible with TikZ, see https://tex.stackexchange.com/questions/447114/aligning-a-text-in-3d-diagram/447120#447120, but AFAIK you cannot "distort" the characters in the way shown in your screen shot.) – Nov 30 '18 at 16:44asymptotedoes everything for you. – Nov 30 '18 at 17:36