Test Post Please Ignore

2022-09-23 (last edited 2025-10-25)

LAK132

links[1][2][3][4][5]

Test Post Please Ignore

FS Sony a7RII, Sirui 50mm T/2.9 1.6x, ISO100 1/250s T/8

1 Image

IR Nikon D1, 35mm f/1.8 G, 1/500s f/5.6
The sky

Figure 1 shows the evening sky in the Northern Territory, Australia.

2 Code

int main() {
        return EXIT_FAILURE;
    }
int main() {
        return EXIT_FAILURE;
    }
A C++ snippet.

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}

3 Graph

G main main parse parse main->parse init init main->init cleanup cleanup main->cleanup printf printf main->printf execute execute parse->execute make_string make_string execute->make_string execute->printf init->make_string
A dot graph.

4 Math

4.1 2D

\begin{split}
 a \wedge b
 &= ( a_1 e_1 + a_2 e_2 )
 \wedge ( b_1 e_1 + b_2 e_2 ) \\
 &= \begin{vmat...

4.2 3D

\begin{split}
 a \wedge b
 &= ( a_1 e_1 + a_2 e_2 + a_3 e_3 )
 \wedge ( b_1 e_1 + b_2 e_2 + b_3 e_3 ...

References

1.
@LAK132. Retrieved from https://x.com/LAK132
2.
3.
@LAK132. Retrieved from https://app.wafrn.net/blog/LAK132
4.
@LAK132. Retrieved from https://www.instagram.com/lak132/
5.
@LAK132. Retrieved from https://github.com/LAK132