initial commit

This commit is contained in:
2026-06-13 22:17:41 +09:00
commit f021bcc3ad
21 changed files with 6410 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
all: report.pdf
%.tex: %.md
pandoc --from markdown --to latex --template=./template.tex -s -o $@ $^
%.pdf: %.tex
lualatex --output-directory=./out $^
Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Generated
+147
View File
@@ -0,0 +1,147 @@
{
"nodes": {
"eskk-vim": {
"flake": false,
"locked": {
"lastModified": 1778495889,
"narHash": "sha256-1R/ChmsdtSXMEMMtKuyXgX7oe7ZE0a8gdx3sC9s6wp0=",
"owner": "vim-skk",
"repo": "eskk.vim",
"rev": "131a290d5305b9bf06426cfe32065f97e23d471c",
"type": "github"
},
"original": {
"owner": "vim-skk",
"repo": "eskk.vim",
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"flake-utils_2": {
"inputs": {
"systems": "systems_2"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1779560665,
"narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1779560665,
"narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"report-temp": {
"inputs": {
"eskk-vim": "eskk-vim",
"flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1779899181,
"narHash": "sha256-A4/M6T6f0koV0JJSt+nJhjpt1XEsJgn+R4+1zws7vTk=",
"owner": "kenryuS",
"repo": "report-temp",
"rev": "2c996ad3f1c3fc256c18836520314027d2e4c3c0",
"type": "github"
},
"original": {
"owner": "kenryuS",
"repo": "report-temp",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs",
"report-temp": "report-temp"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}
+23
View File
@@ -0,0 +1,23 @@
{
description = "Template for Pandoc Markdown";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
report-temp.url = "github:kenryuS/report-temp";
};
outputs = { self, nixpkgs, flake-utils, report-temp }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config = {};
overlays = [];
};
in
{
devShells.default = report-temp.devShells.${system}.pandoc;
}
);
}
+67
View File
@@ -0,0 +1,67 @@
\relax
\abx@aux@refcontext{none/global//global/global/global}
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\gdef \LT@i {\LT@entry
{3}{222.76343pt}\LT@entry
{3}{222.76343pt}}
\gdef \LT@ii {\LT@entry
{1}{222.76343pt}\LT@entry
{1}{222.76343pt}}
\@writefile{toc}{\contentsline {section}{\numberline {1}Erratum \#1 (Report A-2, Page 5, Figure 4-1)}{1}{section.1}\protected@file@percent }
\newlabel{erratum-1-report-a-2-page-5-figure-4-1}{{1}{1}{Erratum \#1 (Report A-2, Page 5, Figure 4-1)}{section.1}{}}
\newlabel{erratum-1-report-a-2-page-5-figure-4-1@cref}{{[section][1][]1}{[1][1][]1}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Voltage v.s. Current of Differenct Resistors with Theoretical Values and Error Ranges}{1}{subsection.1.1}\protected@file@percent }
\newlabel{voltage-v.s.-current-of-differenct-resistors-with-theoretical-values-and-error-ranges}{{1.1}{1}{Voltage v.s. Current of Differenct Resistors with Theoretical Values and Error Ranges}{subsection.1.1}{}}
\newlabel{voltage-v.s.-current-of-differenct-resistors-with-theoretical-values-and-error-ranges@cref}{{[subsection][1][1]1.1}{[1][1][]1}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Changes}{1}{subsection.1.2}\protected@file@percent }
\newlabel{changes}{{1.2}{1}{Changes}{subsection.1.2}{}}
\newlabel{changes@cref}{{[subsection][2][1]1.2}{[1][1][]1}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2}Erratum \#2 (Report A-2, Page 6, Table 4-1)}{1}{section.2}\protected@file@percent }
\newlabel{erratum-2-report-a-2-page-6-table-4-1}{{2}{1}{Erratum \#2 (Report A-2, Page 6, Table 4-1)}{section.2}{}}
\newlabel{erratum-2-report-a-2-page-6-table-4-1@cref}{{[section][2][]2}{[1][1][]1}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Result of Experiment \#2 with Circuit (a)}{1}{subsection.2.1}\protected@file@percent }
\newlabel{result-of-experiment-2-with-circuit-a}{{2.1}{1}{Result of Experiment \#2 with Circuit (a)}{subsection.2.1}{}}
\newlabel{result-of-experiment-2-with-circuit-a@cref}{{[subsection][1][2]2.1}{[1][1][]1}{}{}{}}
\gdef \LT@iii {\LT@entry
{1}{222.76343pt}\LT@entry
{1}{222.76343pt}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Changes}{2}{subsection.2.2}\protected@file@percent }
\newlabel{changes-1}{{2.2}{2}{Changes}{subsection.2.2}{}}
\newlabel{changes-1@cref}{{[subsection][2][2]2.2}{[1][1][]2}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3}Erratum \#3 (Report A-2, Page 8, Table 5-3)}{2}{section.3}\protected@file@percent }
\newlabel{erratum-3-report-a-2-page-8-table-5-3}{{3}{2}{Erratum \#3 (Report A-2, Page 8, Table 5-3)}{section.3}{}}
\newlabel{erratum-3-report-a-2-page-8-table-5-3@cref}{{[section][3][]3}{[1][2][]2}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Applying Kirchhoff's Voltage Law on each Loop}{2}{subsection.3.1}\protected@file@percent }
\newlabel{applying-kirchhoffs-voltage-law-on-each-loop}{{3.1}{2}{Applying Kirchhoff's Voltage Law on each Loop}{subsection.3.1}{}}
\newlabel{applying-kirchhoffs-voltage-law-on-each-loop@cref}{{[subsection][1][3]3.1}{[1][2][]2}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Changes}{2}{subsection.3.2}\protected@file@percent }
\newlabel{changes-2}{{3.2}{2}{Changes}{subsection.3.2}{}}
\newlabel{changes-2@cref}{{[subsection][2][3]3.2}{[1][2][]2}{}{}{}}
\gdef \LT@iv {\LT@entry
{1}{222.76343pt}\LT@entry
{1}{222.76343pt}}
\@writefile{toc}{\contentsline {section}{\numberline {4}Erratum \#4 (Report T-1, Page 3, Figure 4-1)}{3}{section.4}\protected@file@percent }
\newlabel{erratum-4-report-t-1-page-3-figure-4-1}{{4}{3}{Erratum \#4 (Report T-1, Page 3, Figure 4-1)}{section.4}{}}
\newlabel{erratum-4-report-t-1-page-3-figure-4-1@cref}{{[section][4][]4}{[1][3][]3}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Supply Voltage v.s. LED Forward Voltage}{3}{subsection.4.1}\protected@file@percent }
\newlabel{supply-voltage-v.s.-led-forward-voltage}{{4.1}{3}{Supply Voltage v.s. LED Forward Voltage}{subsection.4.1}{}}
\newlabel{supply-voltage-v.s.-led-forward-voltage@cref}{{[subsection][1][4]4.1}{[1][3][]3}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Changes}{3}{subsection.4.2}\protected@file@percent }
\newlabel{changes-3}{{4.2}{3}{Changes}{subsection.4.2}{}}
\newlabel{changes-3@cref}{{[subsection][2][4]4.2}{[1][3][]3}{}{}{}}
\gdef \LT@v {\LT@entry
{1}{222.76343pt}\LT@entry
{1}{222.76343pt}}
\@writefile{toc}{\contentsline {section}{\numberline {5}Erratum \#5 (Report T-1, Page 4, Figure 4-1)}{4}{section.5}\protected@file@percent }
\newlabel{erratum-5-report-t-1-page-4-figure-4-1}{{5}{4}{Erratum \#5 (Report T-1, Page 4, Figure 4-1)}{section.5}{}}
\newlabel{erratum-5-report-t-1-page-4-figure-4-1@cref}{{[section][5][]5}{[1][4][]4}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Reverse Supply Voltage v.s. LED Reverse Voltage}{4}{subsection.5.1}\protected@file@percent }
\newlabel{reverse-supply-voltage-v.s.-led-reverse-voltage}{{5.1}{4}{Reverse Supply Voltage v.s. LED Reverse Voltage}{subsection.5.1}{}}
\newlabel{reverse-supply-voltage-v.s.-led-reverse-voltage@cref}{{[subsection][1][5]5.1}{[1][4][]4}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Changes}{4}{subsection.5.2}\protected@file@percent }
\newlabel{changes-4}{{5.2}{4}{Changes}{subsection.5.2}{}}
\newlabel{changes-4@cref}{{[subsection][2][5]5.2}{[1][4][]4}{}{}{}}
\abx@aux@read@bbl@mdfivesum{nobblfile}
\gdef \@abspage@last{5}
+2386
View File
File diff suppressed because it is too large Load Diff
+3546
View File
File diff suppressed because it is too large Load Diff
+15
View File
@@ -0,0 +1,15 @@
\BOOKMARK [1][-]{section.1}{\376\377\000E\000r\000r\000a\000t\000u\000m\000\040\000\043\0001\000\040\000\050\000R\000e\000p\000o\000r\000t\000\040\000A\000-\0002\000,\000\040\000P\000a\000g\000e\000\040\0005\000,\000\040\000F\000i\000g\000u\000r\000e\000\040\0004\000-\0001\000\051}{}% 1
\BOOKMARK [2][-]{subsection.1.1}{\376\377\000V\000o\000l\000t\000a\000g\000e\000\040\000v\000.\000s\000.\000\040\000C\000u\000r\000r\000e\000n\000t\000\040\000o\000f\000\040\000D\000i\000f\000f\000e\000r\000e\000n\000c\000t\000\040\000R\000e\000s\000i\000s\000t\000o\000r\000s\000\040\000w\000i\000t\000h\000\040\000T\000h\000e\000o\000r\000e\000t\000i\000c\000a\000l\000\040\000V\000a\000l\000u\000e\000s\000\040\000a\000n\000d\000\040\000E\000r\000r\000o\000r\000\040\000R\000a\000n\000g\000e\000s}{section.1}% 2
\BOOKMARK [2][-]{subsection.1.2}{\376\377\000C\000h\000a\000n\000g\000e\000s}{section.1}% 3
\BOOKMARK [1][-]{section.2}{\376\377\000E\000r\000r\000a\000t\000u\000m\000\040\000\043\0002\000\040\000\050\000R\000e\000p\000o\000r\000t\000\040\000A\000-\0002\000,\000\040\000P\000a\000g\000e\000\040\0006\000,\000\040\000T\000a\000b\000l\000e\000\040\0004\000-\0001\000\051}{}% 4
\BOOKMARK [2][-]{subsection.2.1}{\376\377\000R\000e\000s\000u\000l\000t\000\040\000o\000f\000\040\000E\000x\000p\000e\000r\000i\000m\000e\000n\000t\000\040\000\043\0002\000\040\000w\000i\000t\000h\000\040\000C\000i\000r\000c\000u\000i\000t\000\040\000\050\000a\000\051}{section.2}% 5
\BOOKMARK [2][-]{subsection.2.2}{\376\377\000C\000h\000a\000n\000g\000e\000s}{section.2}% 6
\BOOKMARK [1][-]{section.3}{\376\377\000E\000r\000r\000a\000t\000u\000m\000\040\000\043\0003\000\040\000\050\000R\000e\000p\000o\000r\000t\000\040\000A\000-\0002\000,\000\040\000P\000a\000g\000e\000\040\0008\000,\000\040\000T\000a\000b\000l\000e\000\040\0005\000-\0003\000\051}{}% 7
\BOOKMARK [2][-]{subsection.3.1}{\376\377\000A\000p\000p\000l\000y\000i\000n\000g\000\040\000K\000i\000r\000c\000h\000h\000o\000f\000f\000'\000s\000\040\000V\000o\000l\000t\000a\000g\000e\000\040\000L\000a\000w\000\040\000o\000n\000\040\000e\000a\000c\000h\000\040\000L\000o\000o\000p}{section.3}% 8
\BOOKMARK [2][-]{subsection.3.2}{\376\377\000C\000h\000a\000n\000g\000e\000s}{section.3}% 9
\BOOKMARK [1][-]{section.4}{\376\377\000E\000r\000r\000a\000t\000u\000m\000\040\000\043\0004\000\040\000\050\000R\000e\000p\000o\000r\000t\000\040\000T\000-\0001\000,\000\040\000P\000a\000g\000e\000\040\0003\000,\000\040\000F\000i\000g\000u\000r\000e\000\040\0004\000-\0001\000\051}{}% 10
\BOOKMARK [2][-]{subsection.4.1}{\376\377\000S\000u\000p\000p\000l\000y\000\040\000V\000o\000l\000t\000a\000g\000e\000\040\000v\000.\000s\000.\000\040\000L\000E\000D\000\040\000F\000o\000r\000w\000a\000r\000d\000\040\000V\000o\000l\000t\000a\000g\000e}{section.4}% 11
\BOOKMARK [2][-]{subsection.4.2}{\376\377\000C\000h\000a\000n\000g\000e\000s}{section.4}% 12
\BOOKMARK [1][-]{section.5}{\376\377\000E\000r\000r\000a\000t\000u\000m\000\040\000\043\0005\000\040\000\050\000R\000e\000p\000o\000r\000t\000\040\000T\000-\0001\000,\000\040\000P\000a\000g\000e\000\040\0004\000,\000\040\000F\000i\000g\000u\000r\000e\000\040\0004\000-\0001\000\051}{}% 13
\BOOKMARK [2][-]{subsection.5.1}{\376\377\000R\000e\000v\000e\000r\000s\000e\000\040\000S\000u\000p\000p\000l\000y\000\040\000V\000o\000l\000t\000a\000g\000e\000\040\000v\000.\000s\000.\000\040\000L\000E\000D\000\040\000R\000e\000v\000e\000r\000s\000e\000\040\000V\000o\000l\000t\000a\000g\000e}{section.5}% 14
\BOOKMARK [2][-]{subsection.5.2}{\376\377\000C\000h\000a\000n\000g\000e\000s}{section.5}% 15
BIN
View File
Binary file not shown.
+83
View File
@@ -0,0 +1,83 @@
<?xml version="1.0" standalone="yes"?>
<!-- logreq request file -->
<!-- logreq version 1.0 / dtd version 1.0 -->
<!-- Do not edit this file! -->
<!DOCTYPE requests [
<!ELEMENT requests (internal | external)*>
<!ELEMENT internal (generic, (provides | requires)*)>
<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>
<!ELEMENT cmdline (binary, (option | infile | outfile)*)>
<!ELEMENT input (file)+>
<!ELEMENT output (file)+>
<!ELEMENT provides (file)+>
<!ELEMENT requires (file)+>
<!ELEMENT generic (#PCDATA)>
<!ELEMENT binary (#PCDATA)>
<!ELEMENT option (#PCDATA)>
<!ELEMENT infile (#PCDATA)>
<!ELEMENT outfile (#PCDATA)>
<!ELEMENT file (#PCDATA)>
<!ATTLIST requests
version CDATA #REQUIRED
>
<!ATTLIST internal
package CDATA #REQUIRED
priority (9) #REQUIRED
active (0 | 1) #REQUIRED
>
<!ATTLIST external
package CDATA #REQUIRED
priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED
active (0 | 1) #REQUIRED
>
<!ATTLIST provides
type (static | dynamic | editable) #REQUIRED
>
<!ATTLIST requires
type (static | dynamic | editable) #REQUIRED
>
<!ATTLIST file
type CDATA #IMPLIED
>
]>
<requests version="1.0">
<internal package="biblatex" priority="9" active="0">
<generic>latex</generic>
<provides type="dynamic">
<file>report.bcf</file>
</provides>
<requires type="dynamic">
<file>report.bbl</file>
</requires>
<requires type="static">
<file>blx-dm.def</file>
<file>blx-unicode.def</file>
<file>blx-compat.def</file>
<file>biblatex.def</file>
<file>standard.bbx</file>
<file>numeric.bbx</file>
<file>numeric.cbx</file>
<file>biblatex.cfg</file>
<file>english.lbx</file>
</requires>
</internal>
<external package="biblatex" priority="5" active="0">
<generic>biber</generic>
<cmdline>
<binary>biber</binary>
<infile>report</infile>
</cmdline>
<input>
<file>report.bcf</file>
</input>
<output>
<file>report.bbl</file>
</output>
<provides type="dynamic">
<file>report.bbl</file>
</provides>
<requires type="dynamic">
<file>report.bcf</file>
</requires>
</external>
</requests>
+94
View File
@@ -0,0 +1,94 @@
---
documentclass: bxjsarticle
classoption:
- lualatex
- ja=standard
- 11pt
- a4paper
---
# Erratum \#1 (Report A-2, Page 5, Figure 4-1)
## Voltage v.s. Current of Differenct Resistors with Theoretical Values and Error Ranges
| Before | After |
|:-:|:-:|
| ![](./assets/error1.png){width=100%} | ![](./assets/correction1.png){width=100%} |
## Changes
* Made graph monochrome and changed line styles to distinguish each graphs
* Added explanation of error bars in the caption
> Section 3 Etiquette of Graph (Rule 4, 5, 10)
# Erratum \#2 (Report A-2, Page 6, Table 4-1)
## Result of Experiment \#2 with Circuit (a)
| Before | After |
|:-:|:-:|
| ![](./assets/error2.png){width=100%} | ![](./assets/correction2.png){width=100%} |
## Changes
* Removed virtical grid lines
* Aligned numerical values to right
* Made table title more detailed
> Section 4 Etiquette of Table (Rule 2, 4)
>
> Section 6 Caption, Numbering, Referencing (Rule 2)
# Erratum \#3 (Report A-2, Page 8, Table 5-3)
## Applying Kirchhoff's Voltage Law on each Loop
| Before | After |
|:-:|:-:|
| ![](./assets/error3.png){width=100%} | ![](./assets/correction3.png){width=100%} |
## Changes
* Fixed grammar errors in the caption
* Removed virtical grid lines
* Aligned numerical values to right
> Section 4 Etiquette of Table (Rule 2, 4)
>
> Section 6 Caption, Numbering, Referencing (Rule 2)
\newpage
# Erratum \#4 (Report T-1, Page 3, Figure 4-1)
## Supply Voltage v.s. LED Forward Voltage
| Before | After |
|:-:|:-:|
| ![](./assets/error4.png){width=100%} | ![](./assets/correction4.png){width=100%} |
## Changes
* Reduced number of horizontal grid lines
* Modified x-axis tics for consistency
* Added markers on the graph
> Section 3 Etiquette of Graph (Rule 3, 4, 7)
\newpage
# Erratum \#5 (Report T-1, Page 4, Figure 4-1)
## Reverse Supply Voltage v.s. LED Reverse Voltage
| Before | After |
|:-:|:-:|
| ![](./assets/error5.png){width=100%} | ![](./assets/correction5.png){width=100%} |
## Changes
* Reduced number of horizontal grid lines
* Added markers on the graph
> Section 3 Etiquette of Graph (Rule 4, 7)
+42
View File
@@ -0,0 +1,42 @@
$passoptions.latex()$
\documentclass[
$for(babel-otherlangs)$
$babel-otherlangs$,
$endfor$
$if(babel-lang)$
$babel-lang$,
$endif$
$if(fontsize)$
$fontsize$,
$endif$
$if(papersize)$
$papersize$paper,
$endif$
$for(classoption)$
$classoption$$sep$,
$endfor$
]{$documentclass$}
$common.latex()$
\usepackage{depD-experiment}
\reportauthor{柴田健琉}
\reporttitle{正誤表}
\reportdate{2026年}{06月}{02日}
\turnindate{2026年}{06月}{13日}
\schoolyear{2026}
\grade{3}
\department{電子制御工学科}
\subject{電子制御工学実験1}
\reportid{Skill 1}
\expgroup{-}
\seatingnum{15}
\addExperimentDate{-}
\begin{document}
\experimentTitle{}
$body$
\end{document}