Last active
February 17, 2025 21:06
-
-
Save vicapow/fd1b63bc6457acef71dd951496f12703 to your computer and use it in GitHub Desktop.
Debugging Gist File Uploads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
Hello world! | |
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{amsmath} | |
\usepackage{caption} | |
\usepackage{geometry} | |
\usepackage{hyperref} | |
\geometry{a4paper, margin=1in} | |
\begin{document} | |
\section{Crixet} | |
Welcome to Crixet! Crixet is AI enabled Latex editor that runs in your browser. It may take a bit longer the first time your compile as it downloads and installs your packages, but should be faster as you make edits and continue to work on your document. | |
\subsection{Sandbox vs Local vs Gist mode} | |
\begin{itemize} | |
\item \textbf{Local} - Crixet will read and write a project from a local file directory. | |
\item \textbf{Sandbox} - You can use Crixet in the local sandbox mode. These files just live in your browser window. | |
\item \textbf{Gist} - Load a github "gist". Crixet will be in "readonly" mode, loading the gist you specify in the "gist" url parameter. ie.,: | |
\href{https://crixet.com/?gist=0dc4c44f59b22d42d2a0b2f5d12b5470}{https://crixet.com/?gist=0dc4c44f59b22d42d2a0b2f5d12b5470} This is a great way to quickly share short examples from https://tex.stackexchange.com/ or https://reddit.com/r/LaTeX/. | |
\end{itemize} | |
\subsection{I have a question or feature request} | |
Email us at [email protected] | |
\section{Latex} | |
LaTeX is used in academia for the communication and publication of scientific documents in many fields, including mathematics, computer science, engineering, physics, chemistry, and economics. | |
\subsection{Mathematical Expressions} | |
LaTeX excels at typesetting complex mathematical expressions. For example, the quadratic formula is given by: | |
\[ | |
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} | |
\] | |
\subsection{Figures and Tables} | |
LaTeX can also handle figures and tables with ease. Below is an example of a simple table: | |
\input{table.tex} | |
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\begin{table}[h] | |
\centering | |
\begin{tabular}{|c|c|c|} | |
\hline | |
A & B & C \\ \hline | |
1 & 2 & 3 \\ \hline | |
4 & 5 & 6 \hline | |
\end{tabular} | |
\caption{A simple table} | |
\label{tab:simple_table} | |
\end{table} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment