CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download

Testing out the directory

Views: 34
Image: ubuntu2204
1
\documentclass{article}
2
3
% set font encoding for PDFLaTeX, XeLaTeX, or LuaTeX
4
\usepackage{ifxetex,ifluatex}
5
\if\ifxetex T\else\ifluatex T\else F\fi\fi T%
6
\usepackage{fontspec}
7
\else
8
\usepackage[T1]{fontenc}
9
\usepackage[utf8]{inputenc}
10
\usepackage{lmodern}
11
\fi
12
13
\usepackage{hyperref}
14
15
\title{Title of Document}
16
\author{Name of Author}
17
18
% Enable SageTeX to run SageMath code right inside this LaTeX file.
19
% http://doc.sagemath.org/html/en/tutorial/sagetex.html
20
% \usepackage{sagetex}
21
22
% Enable PythonTeX to run Python – https://ctan.org/pkg/pythontex
23
% \usepackage{pythontex}
24
25
\begin{document}
26
\maketitle
27
28
29
30
31
32
\end{document}
33
34