started writing

This commit is contained in:
2024-08-06 19:13:26 +09:00
parent 8f2c8b6d06
commit b47b1b87b3
4 changed files with 19 additions and 48 deletions

View File

@@ -1,4 +1,4 @@
NAME=CHANGEME NAME=EC-Dep-Overview-13th-lecture-report
RM=/bin/rm RM=/bin/rm
TEX=lualatex TEX=lualatex
BIB=biber BIB=biber

Binary file not shown.

9
output/references.bib Normal file
View File

@@ -0,0 +1,9 @@
@online{example,
title = {Example Entry},
author = {Inc., Example},
organization = {Example, Inc.},
url = {https://www.example.com},
year = {1970},
month = {January},
urldate = {1970-01-01}
}

View File

@@ -86,67 +86,29 @@
} }
\end{filecontents*} \end{filecontents*}
\usepackage[backend=biber,bibencoding=utf8,firstinits=false,style=numeric-comp,date=short,dateabbrev=false,language=japanese]{biblatex} \usepackage[backend=biber,bibencoding=utf8,firstinits=false,style=numeric-comp,date=short,dateabbrev=false]{biblatex}
\addbibresource{references.bib} \addbibresource{references.bib}
\title{Insert Title Here} \title{高専で一般科目を学ぶ理由と卒業後の目標}
\author{ \author{
柴田 健琉 \thanks{学籍番号2024D14} 柴田 健琉 \thanks{学籍番号2024D14}
} }
\date{令和6年 aa月bb} \date{令和6年 8月2}
\usepackage{fancyhdr} \usepackage{fancyhdr}
\pagestyle{fancy} \pagestyle{fancy}
\fancyhead[RO,LE]{柴田健琉(2024D)} \fancyhead[RO,LE]{柴田健琉(2024D)}
\fancyhead[C]{Title Here} \fancyhead[LO,RE]{令和6年 8月6日}
\fancyhead[LO,RE]{令和6年 aa月bb日}
\fancyfoot[RO,LE]{test}
\fancyfoot[C]{\thepage} \fancyfoot[C]{\thepage}
\fancyfoot[LO,RE]{test}
\begin{document} \begin{document}
\maketitle \maketitle
Start Writing! \section{一般科目を学ぶ理由}
私が考えた高専で一般科目を学ぶ理由はまず様々な方面に興味を持ってもらうためだと思います。近年、テクノロジーは様々な業界、分野に取り入れられています。そして、それらでの技術者の需要も増えてきています。一般科目を学ぶということは技術者としての道の選択肢を増やすことでもあると思います。
Use lualatex + biber to compile. 勿論、今後の専門科目で扱う数物系知識は一般科目が基礎となっています。基礎を固めずに専門科目に挑めば確実に単位を落とすでしょう。そうならないためにも一般科目は必要です。
Test Bib\cite{example} \section{卒業後の目標}
今の所、卒業後の進路・目標はまだ完全に決まっていませんが、取り敢えず大学に編入できたらいいと考えています。遅くとも3年制を終える前に進路を固めておくと決めています。
いろはにほへと ちりぬるを
\begin{lstlisting}[language=C, caption=Basic Hello World]
#include <stdlib.h>
int main(int argc, char** argv) {
char* msg = "Hello World";
printf("%s\n", msg);
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
new page
\printbibliography
\end{document} \end{document}