Answers for "how to write equivalent in latex"

4

writing code in latex

\begin{lstlisting}
Put your code here.
\end{lstlisting}
Posted by: Guest on March-28-2021
0

basic latex document

\documentclass{article}

\title{My first document}
\date{2013-09-01}
\author{John Doe}

\begin{document}
  \maketitle
  \newpage

  Hello World!
\end{document}
Posted by: Guest on November-14-2020

Browse Popular Code Answers by Language