started writing
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,4 +1,4 @@
|
||||
NAME=CHANGEME
|
||||
NAME=art-something-about-japan
|
||||
RM=/bin/rm
|
||||
TEX=lualatex
|
||||
BIB=biber
|
||||
|
||||
24
Makefile.dbg
24
Makefile.dbg
@@ -1,24 +0,0 @@
|
||||
NAME=report-test
|
||||
RM=rm
|
||||
TEX=lualatex
|
||||
BIB=biber
|
||||
TEXFLAGS=--interaction=nonstopmode --output-directory=./out-temp/
|
||||
BIBFLAGS=--input-directory=./out-temp --output-directory=./out-temp/
|
||||
|
||||
PRINTFORMAT="\033[1;92;49m%s\033[m\n"
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all:
|
||||
@mkdir -p out-temp
|
||||
@printf ${PRINTFORMAT} "[1/4] First Compilation"
|
||||
${TEX} ${TEXFLAGS} ./${NAME}.tex
|
||||
@printf ${PRINTFORMAT} "[2/4] Bib Generation"
|
||||
${BIB} ${BIBFLAGS} ${NAME}
|
||||
@printf ${PRINTFORMAT} "[3/4] Second Compilation"
|
||||
${TEX} ${TEXFLAGS} ./${NAME}.tex
|
||||
@printf ${PRINTFORMAT} "[4/4] Final Compilation"
|
||||
${TEX} ${TEXFLAGS} ./${NAME}.tex
|
||||
|
||||
clean:
|
||||
${RM} ./out-temp/{*.aux,*.log,*.out,*.blg,*.bcf,*.bbl,*.xml}
|
||||
@@ -1,2 +1,3 @@
|
||||
# CHANGEME
|
||||
# art-something-about-japan
|
||||
|
||||
report for 2nd art assignment
|
||||
|
||||
31
art-something-about-japan.tex
Normal file
31
art-something-about-japan.tex
Normal file
@@ -0,0 +1,31 @@
|
||||
\documentclass{class/nitonepage}
|
||||
|
||||
\reporttitle{これが日本の戦時航空機ダゼイ}
|
||||
\reportauthor{柴田 健琉}
|
||||
\studentid{2024D14}
|
||||
\reportdate{令和6年}{11月}{22日}
|
||||
\schoolname{岐阜工業高等専門学校}
|
||||
\department{電子制御工学科}
|
||||
\subject{美術}
|
||||
|
||||
\begin{document}
|
||||
\titleheading
|
||||
|
||||
\paragraph{戦時航空機にした理由}
|
||||
|
||||
最初の課題が終わって、この課題の内容を聞いたとき最初は何を切り貼りすればいいか分からなかった。過去の作品を見ていくと一つの写真が目に入った。
|
||||
それは軍艦のコラージュだった。それに便乗するように「航空機にしたらおもしろいんじゃね?」という思い付きからこのテーマにした。
|
||||
|
||||
\paragraph{作品の見所}
|
||||
|
||||
b
|
||||
|
||||
\paragraph{意見交換など}
|
||||
|
||||
c
|
||||
|
||||
\paragraph{ショートストーリー創作}
|
||||
|
||||
d
|
||||
|
||||
\end{document}
|
||||
@@ -8,13 +8,12 @@ replaceText="s/CHANGEME/$reportName/g"
|
||||
read -p "Select Template [1: generic, 2: onepage]: " selectedTemplate
|
||||
|
||||
if [[ "$selectedTemplate" == "1" ]]; then
|
||||
cp templates/report.tex ./report.tex
|
||||
cp templates/report.tex ./report.tex;
|
||||
else
|
||||
if [[ "$selectedTemplate" == "2"]]; then
|
||||
if [[ "$selectedTemplate" == "2" ]]; then
|
||||
cp templates/onepage.tex ./report.tex
|
||||
else
|
||||
echo "Invalid Selection!"
|
||||
exit 1
|
||||
echo "Invalid Selection!" && exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
BIN
output/art-something-about-japan.pdf
Normal file
BIN
output/art-something-about-japan.pdf
Normal file
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
\chapter{Introduction}
|
||||
\clearpage
|
||||
|
||||
\section{はじめに}
|
||||
|
||||
Start Writing!
|
||||
|
||||
Use lualatex + biber to compile.
|
||||
|
||||
Test Bib\cite{example}
|
||||
|
||||
いろはにほへと ちりぬるを
|
||||
|
||||
{\ipagothic \LaTeX で自由な組版を。}
|
||||
|
||||
{\liberationsans Write freely with \LaTeX{}.}
|
||||
|
||||
{\zeroxproto LaTeX shall be free forever!}
|
||||
|
||||
\begin{lstlisting}[language=C, caption=Basic Hello World]
|
||||
#include <stdlib.h>
|
||||
|
||||
int square(int n) {
|
||||
return n*n;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
char* msg = "Hello World";
|
||||
int x = 3;
|
||||
int y = square(x);
|
||||
printf("%s\n", msg);
|
||||
printf("f(x) = x^2; x: %d, y: %d\n", x, y);
|
||||
return 0;
|
||||
}
|
||||
\end{lstlisting}
|
||||
|
||||
\begin{displaymath}
|
||||
\int_{a}^{b} f(x) \,dx = F(b)-F(a)
|
||||
\end{displaymath}
|
||||
|
||||
\begin{itemize}
|
||||
\item C
|
||||
\item Python
|
||||
\item Javascript
|
||||
\item Rust
|
||||
\item Haskell
|
||||
\end{itemize}
|
||||
|
||||
\begin{enumerate}
|
||||
\item lualatex <filename>.tex
|
||||
\item biber <filename>
|
||||
\item lualatex <filename>.tex
|
||||
\item lualatex <filename>.tex
|
||||
\end{enumerate}
|
||||
|
||||
\newpage
|
||||
|
||||
\section{Section}
|
||||
|
||||
section
|
||||
|
||||
\subsection{Sub Section}
|
||||
|
||||
sub section
|
||||
|
||||
\paragraph{Paragraph}
|
||||
|
||||
paragraph
|
||||
@@ -1,16 +0,0 @@
|
||||
\documentclass{class/nitonepage}
|
||||
|
||||
\reporttitle{Insert Title Here}
|
||||
\reportauthor{Taro Kosen}
|
||||
\studentid{0000-01}
|
||||
\reportdate{令和6年}{aa月}{bb日}
|
||||
\schoolname{岐阜工業高等専門学校}
|
||||
\department{一般科}
|
||||
\subject{〇〇概論}
|
||||
|
||||
\begin{document}
|
||||
\titleheading
|
||||
|
||||
Hello
|
||||
|
||||
\end{document}
|
||||
@@ -1,30 +0,0 @@
|
||||
\documentclass{class/nitreport}
|
||||
|
||||
\reporttitle{Insert Title Here}
|
||||
\reportauthor{高専 太郎}
|
||||
\studentid{0000-01}
|
||||
\reportdate{令和6年}{aa月}{bb日}
|
||||
\schoolname{岐阜工業高等専門学校}
|
||||
\department{一般科}
|
||||
\subject{〇〇概論}
|
||||
|
||||
\pagenumbering{roman}
|
||||
|
||||
\begin{document}
|
||||
\coverpage
|
||||
|
||||
\tableofcontents
|
||||
\newpage
|
||||
|
||||
\pagenumbering{arabic}
|
||||
|
||||
\input{section/introduction.tex}
|
||||
|
||||
\newpage
|
||||
|
||||
new page
|
||||
|
||||
\printbibliography
|
||||
|
||||
\compiledTime
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user