2022-09-23 (last edited 2025-10-25)
Test Post Please Ignore
Figure 1 shows the evening sky in the Northern Territory, Australia.
int main() {
        return EXIT_FAILURE;
    }int main() {
        return EXIT_FAILURE;
    }Figure 2 shows a C++ code snippet.
\documentclass{article}
\title{\input{title}}
\subtitle{2022-09-23 (last edited 2025-10-25)}
\author{LAK132}
\begin{document}
links\cite{twitter}\cite{bsky}\cite{wafrn}\cite{instagram}\cite{github}
\begin{lstlisting}[language=page-meta]
{["description"]="test post please ignore",
 ["image"]="resources/DSC_0363_edited.jpg"}
\end{lstlisting}
\maketitle
\include{preview}
\section{Image}
\begin{figure}
	\caption{IR Nikon D1, 35mm f/1.8 G, 1/500s f/5.6}
	\includegraphics{\postpath resources/DSC_0363_edited.jpg}
\end{figure}
\begin{figure}
	\caption{The sky}
	\label{fig:sky}
	\includegraphics[width=10cm]{resources/IMG_2479.JPG}
\end{figure}
Figure \ref{fig:sky} shows the evening sky in the Northern Territory, Australia.
\section{Code}
\begin{lstlisting}[language=cpp]
	int main() {
		return EXIT_FAILURE;
	}
\end{lstlisting}
\begin{lstlisting}[label={fig:cpp}, caption={A C++ snippet.}, language=cpp]
	int main() {
		return EXIT_FAILURE;
	}
\end{lstlisting}
Figure \ref{fig:cpp} shows a C++ code snippet.
\codesample{tex}{main.tex}
\section{Graph}
\begin{lstlisting}[label={fig:graph}, caption={A dot graph.}, language=dot-image]
	digraph G {
		main -> parse -> execute;
		main -> init;
		main -> cleanup;
		execute -> make_string;
		execute -> printf;
		init -> make_string;
		main -> printf;
	}
\end{lstlisting}
\section{Math}
\subsection{2D}
\begin{equation}\begin{split}
  a \wedge b
  &= \left( a_1 e_1 + a_2 e_2 \right)
  \wedge \left( b_1 e_1 + b_2 e_2 \right) \\
  &= \begin{vmatrix}
  a_1 & b_1 \\
  a_2 & b_2
  \end{vmatrix} \left( e_1 \wedge e_2 \right)
\end{split}\end{equation}
\subsection{3D}
\begin{equation}\begin{split}
  a \wedge b
  &= \left( a_1 e_1 + a_2 e_2 + a_3 e_3 \right)
  \wedge \left( b_1 e_1 + b_2 e_2 + b_3 e_3 \right) \\
  &= \begin{vmatrix}
  a_1 & b_1 \\
  a_2 & b_2
  \end{vmatrix} \left( e_1 \wedge e_2 \right)
  + \begin{vmatrix}
  a_2 & b_2 \\
  a_3 & b_3
  \end{vmatrix} \left( e_2 \wedge e_3 \right)
  + \begin{vmatrix}
  a_3 & b_3 \\
  a_1 & b_1
  \end{vmatrix} \left( e_3 \wedge e_1 \right) \\
  &= \begin{vmatrix}
  a_1 & b_1 & e_{23} \\
  a_2 & b_2 & e_{31} \\
  a_3 & b_3 & e_{12}
  \end{vmatrix}
\end{split}\end{equation}
\newpage
\section[references]{References}
\bibliography{bibliography}
\bibliographystyle{ieeetr}
\end{document}