Skip to content

Instantly share code, notes, and snippets.

@foxyseta
Created October 19, 2021 23:18
Show Gist options
  • Save foxyseta/1a187eaff130a928bbe861c969989eab to your computer and use it in GitHub Desktop.
Save foxyseta/1a187eaff130a928bbe861c969989eab to your computer and use it in GitHub Desktop.
Some LaTeX examples for my friend
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{table}[h!]
\centering
\begin{tabular}{ | c | c | c | c | c | c | c | c | c | c | }
\hline
0 & 0 & 0 & 0 & 9 & 2 & 4 & 7 & \textbf{2} & \textbf{8}\\
\hline
\end{tabular}
\end{table}
\begin{center}
$\begin{bmatrix}
0 & 1 & 1 & 0\\
1 & 0 & 1 & 1\\
1 & 1 & 0 & 1\\
0 & 1 & 1 & 0
\end{bmatrix}$
\end{center}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment