@nahisaho/satori 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENCE +0 -0
- package/README.md +191 -0
- package/bin/satori.js +95 -0
- package/package.json +29 -0
- package/src/.github/skills/scientific-academic-writing/SKILL.md +361 -0
- package/src/.github/skills/scientific-academic-writing/assets/acs_article.md +199 -0
- package/src/.github/skills/scientific-academic-writing/assets/elsevier_article.md +244 -0
- package/src/.github/skills/scientific-academic-writing/assets/ieee_transactions.md +212 -0
- package/src/.github/skills/scientific-academic-writing/assets/imrad_standard.md +181 -0
- package/src/.github/skills/scientific-academic-writing/assets/nature_article.md +179 -0
- package/src/.github/skills/scientific-academic-writing/assets/qiita_technical_article.md +385 -0
- package/src/.github/skills/scientific-academic-writing/assets/science_research_article.md +169 -0
- package/src/.github/skills/scientific-bioinformatics/SKILL.md +220 -0
- package/src/.github/skills/scientific-biosignal-processing/SKILL.md +357 -0
- package/src/.github/skills/scientific-causal-inference/SKILL.md +347 -0
- package/src/.github/skills/scientific-cheminformatics/SKILL.md +196 -0
- package/src/.github/skills/scientific-data-preprocessing/SKILL.md +413 -0
- package/src/.github/skills/scientific-data-simulation/SKILL.md +244 -0
- package/src/.github/skills/scientific-doe/SKILL.md +360 -0
- package/src/.github/skills/scientific-eda-correlation/SKILL.md +141 -0
- package/src/.github/skills/scientific-feature-importance/SKILL.md +208 -0
- package/src/.github/skills/scientific-image-analysis/SKILL.md +310 -0
- package/src/.github/skills/scientific-materials-characterization/SKILL.md +368 -0
- package/src/.github/skills/scientific-meta-analysis/SKILL.md +352 -0
- package/src/.github/skills/scientific-metabolomics/SKILL.md +326 -0
- package/src/.github/skills/scientific-ml-classification/SKILL.md +265 -0
- package/src/.github/skills/scientific-ml-regression/SKILL.md +215 -0
- package/src/.github/skills/scientific-multi-omics/SKILL.md +303 -0
- package/src/.github/skills/scientific-network-analysis/SKILL.md +257 -0
- package/src/.github/skills/scientific-pca-tsne/SKILL.md +235 -0
- package/src/.github/skills/scientific-pipeline-scaffold/SKILL.md +331 -0
- package/src/.github/skills/scientific-process-optimization/SKILL.md +215 -0
- package/src/.github/skills/scientific-publication-figures/SKILL.md +208 -0
- package/src/.github/skills/scientific-sequence-analysis/SKILL.md +389 -0
- package/src/.github/skills/scientific-spectral-signal/SKILL.md +227 -0
- package/src/.github/skills/scientific-statistical-testing/SKILL.md +240 -0
- package/src/.github/skills/scientific-survival-clinical/SKILL.md +239 -0
- package/src/.github/skills/scientific-time-series/SKILL.md +291 -0
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
# Qiita 技術記事テンプレート
|
|
2
|
+
|
|
3
|
+
> 対象: Qiita (qiita.com) 技術記事
|
|
4
|
+
> 構成: YAML Frontmatter → はじめに → 本編 → まとめ → 参考資料
|
|
5
|
+
> 特徴: Qiita 独自記法(:::note / :::note warn)、Mermaid / PlantUML ダイアグラム、\<details\> 折りたたみ
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## YAML Frontmatter
|
|
10
|
+
|
|
11
|
+
```yaml
|
|
12
|
+
---
|
|
13
|
+
title: '[記事タイトル]'
|
|
14
|
+
tags:
|
|
15
|
+
- [タグ1]
|
|
16
|
+
- [タグ2]
|
|
17
|
+
- [タグ3]
|
|
18
|
+
- [タグ4] # 任意
|
|
19
|
+
- [タグ5] # 任意
|
|
20
|
+
private: false
|
|
21
|
+
updated_at: 'YYYY-MM-DDT00:00:00+09:00'
|
|
22
|
+
id: null
|
|
23
|
+
organization_url_name: null
|
|
24
|
+
slide: false
|
|
25
|
+
ignorePublish: false
|
|
26
|
+
---
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Frontmatter ルール
|
|
30
|
+
|
|
31
|
+
| フィールド | 規約 |
|
|
32
|
+
|---|---|
|
|
33
|
+
| `title` | 記事のタイトル |
|
|
34
|
+
| `tags` | 最大 5 個。記事内容に合ったタグを自由に選択 |
|
|
35
|
+
| `private` | 下書き中は `true`、公開時に `false` |
|
|
36
|
+
| `slide` | 常に `false` |
|
|
37
|
+
| ファイル名 | `qiita-[ハイフン区切り英語テーマ].md` |
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## セクション構成
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
## はじめに ← 背景・動機・記事のゴール
|
|
45
|
+
## 環境 ← テーブル(OS, 言語, ライブラリ)※任意
|
|
46
|
+
## [本編セクション 1] ← 記事の主要内容
|
|
47
|
+
### ...
|
|
48
|
+
## [本編セクション 2]
|
|
49
|
+
...
|
|
50
|
+
## [本編セクション N]
|
|
51
|
+
## まとめ ← 要点の整理
|
|
52
|
+
## 参考資料 ← リンクリスト
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
※ セクションの分け方・数・名前は記事内容に応じて自由に設計する。
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 書式規約
|
|
60
|
+
|
|
61
|
+
### 図のファイル名
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
figures/Fig{N}_{snake_case_description}.png
|
|
65
|
+
```
|
|
66
|
+
- N = 通し番号(1 始まり)、300 DPI
|
|
67
|
+
|
|
68
|
+
### 図の参照
|
|
69
|
+
|
|
70
|
+
```markdown
|
|
71
|
+

|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### 結果テーブル
|
|
75
|
+
|
|
76
|
+
ベストの行を **太字** で強調する。
|
|
77
|
+
|
|
78
|
+
### ソースコード(任意)
|
|
79
|
+
|
|
80
|
+
長いコードは `<details>` 折りたたみで配置する。
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Qiita Markdown 記法リファレンス
|
|
85
|
+
|
|
86
|
+
> 参照: [Markdown記法 チートシート — Qiita公式](https://qiita.com/Qiita/items/c686397e4a0f4f11683d)
|
|
87
|
+
> 準拠: GitHub Flavored Markdown + Qiita 独自拡張
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
### Note — 補足説明(Qiita 独自)
|
|
92
|
+
|
|
93
|
+
`:::note` と `:::` で囲む。`info`(省略可)/ `warn` / `alert` の 3 種。
|
|
94
|
+
|
|
95
|
+
```markdown
|
|
96
|
+
:::note info
|
|
97
|
+
インフォメーション(青色)。info は省略可能。
|
|
98
|
+
:::
|
|
99
|
+
|
|
100
|
+
:::note warn
|
|
101
|
+
注意事項・限界(黄色)。
|
|
102
|
+
:::
|
|
103
|
+
|
|
104
|
+
:::note alert
|
|
105
|
+
重大な警告(赤色)。
|
|
106
|
+
:::
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
**Note 内で使用可能な Markdown:**
|
|
110
|
+
リスト、強調(`**太字**`)、打ち消し線、コードスパン、リンク、画像、コードブロック。
|
|
111
|
+
※ 見出し (`#`) やテーブルは Note 内では使用不可。
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
### Code — コードの挿入
|
|
116
|
+
|
|
117
|
+
#### コードブロック(ファイル名指定可)
|
|
118
|
+
|
|
119
|
+
バッククオート 3 つ、またはチルダ 3 つで囲む。**言語名:ファイル名** でファイル名表示可能。
|
|
120
|
+
|
|
121
|
+
````markdown
|
|
122
|
+
```python:analysis.py
|
|
123
|
+
import pandas as pd
|
|
124
|
+
df = pd.read_csv("data.csv")
|
|
125
|
+
```
|
|
126
|
+
````
|
|
127
|
+
|
|
128
|
+
#### Diff + シンタックスハイライト
|
|
129
|
+
|
|
130
|
+
言語名の前に `diff_` を付けると Diff と構文ハイライトを同時に使用可能。
|
|
131
|
+
|
|
132
|
+
````markdown
|
|
133
|
+
```diff_python
|
|
134
|
+
- old_value = 42
|
|
135
|
+
+ new_value = 100
|
|
136
|
+
```
|
|
137
|
+
````
|
|
138
|
+
|
|
139
|
+
#### コードスパン(インライン)
|
|
140
|
+
|
|
141
|
+
`` `コード` `` でインライン表示。CSS カラー値(`#ffce44`, `rgb(255,0,0)` 等)を書くと横に色が表示される。
|
|
142
|
+
|
|
143
|
+
#### 言語指定一覧(よく使うもの)
|
|
144
|
+
|
|
145
|
+
| 言語 | 指定 | 備考 |
|
|
146
|
+
|---|---|---|
|
|
147
|
+
| Python | ` ```python ` | ` ```python:filename.py ` でファイル名付き |
|
|
148
|
+
| Bash | ` ```bash ` | |
|
|
149
|
+
| JSON | ` ```json ` | |
|
|
150
|
+
| YAML | ` ```yaml ` | |
|
|
151
|
+
| Markdown | ` ```markdown ` | |
|
|
152
|
+
| 数式 | ` ```math ` | LaTeX 形式の数式ブロック |
|
|
153
|
+
| Mermaid | ` ```mermaid ` | ダイアグラム |
|
|
154
|
+
| PlantUML | ` ```plantuml ` | ダイアグラム |
|
|
155
|
+
| Diff | ` ```diff ` | `diff_python` 等で言語併用可 |
|
|
156
|
+
| なし | ` ``` ` | プレーンテキスト |
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
### 数式 — LaTeX 形式
|
|
161
|
+
|
|
162
|
+
#### ブロック数式(推奨: ` ```math ` )
|
|
163
|
+
|
|
164
|
+
````markdown
|
|
165
|
+
```math
|
|
166
|
+
\left( \sum_{k=1}^n a_k b_k \right)^{2} \leq
|
|
167
|
+
\left( \sum_{k=1}^n a_k^2 \right)
|
|
168
|
+
\left( \sum_{k=1}^n b_k^2 \right)
|
|
169
|
+
```
|
|
170
|
+
````
|
|
171
|
+
|
|
172
|
+
※ `$$...$$` でも可能だが、`\{` 等のエスケープが必要になるため ` ```math ` を推奨。
|
|
173
|
+
|
|
174
|
+
#### インライン数式(推奨: `` $`...`$ `` )
|
|
175
|
+
|
|
176
|
+
```markdown
|
|
177
|
+
x^2 + y^2 = 1 をインライン表示すると $`x^2 + y^2 = 1`$ になります。
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
※ `$...$` でも可能だが、Markdown 構文との衝突(`_` 等)でエスケープが必要になるため `` $`...`$ `` を推奨。
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
### Details — 折りたたみ
|
|
185
|
+
|
|
186
|
+
`<details>` タグで囲む。`open` 属性で展開状態にできる。
|
|
187
|
+
**重要: HTML タグの下には空行が必要。**
|
|
188
|
+
|
|
189
|
+
```markdown
|
|
190
|
+
<details><summary>クリックで展開</summary>
|
|
191
|
+
|
|
192
|
+
(↑ この空行が必須)
|
|
193
|
+
|
|
194
|
+
折りたたまれるコンテンツ
|
|
195
|
+
|
|
196
|
+
</details>
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
展開状態にする場合:
|
|
200
|
+
|
|
201
|
+
```markdown
|
|
202
|
+
<details open><summary>展開済み</summary>
|
|
203
|
+
|
|
204
|
+
コンテンツ
|
|
205
|
+
|
|
206
|
+
</details>
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
### リンクカード(Qiita 独自)
|
|
212
|
+
|
|
213
|
+
URL を独立した行に書き、前後に空行を入れるとリンクカード表示になる。
|
|
214
|
+
|
|
215
|
+
```markdown
|
|
216
|
+
(空行)
|
|
217
|
+
https://qiita.com/Qiita/items/c686397e4a0f4f11683d
|
|
218
|
+
(空行)
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
### 脚注
|
|
224
|
+
|
|
225
|
+
本文中に `[^識別子]` で脚注リンクを挿入し、同じ記事内に `[^識別子]: 内容` で注釈を定義。
|
|
226
|
+
番号は記事表示時の登場順で自動付与される。
|
|
227
|
+
|
|
228
|
+
```markdown
|
|
229
|
+
本文テキスト[^note1]。別のテキスト[^note2]。
|
|
230
|
+
|
|
231
|
+
[^note1]: 最初の脚注です。
|
|
232
|
+
[^note2]: 二番目の脚注です。
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
---
|
|
236
|
+
|
|
237
|
+
### 画像
|
|
238
|
+
|
|
239
|
+
```markdown
|
|
240
|
+

|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
HTML タグでサイズ調整も可能:
|
|
244
|
+
|
|
245
|
+
```markdown
|
|
246
|
+
<img width="400" src="./figures/Fig1_overview.png">
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
### テーブル
|
|
252
|
+
|
|
253
|
+
```markdown
|
|
254
|
+
| Left align | Right align | Center align |
|
|
255
|
+
|:-----------|------------:|:------------:|
|
|
256
|
+
| left | right | center |
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
テーブル内で `|` を使う場合は `\|` でエスケープ。
|
|
260
|
+
`<table>` + `<caption>` でキャプション付き HTML テーブルも使用可能。
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
### チェックボックス
|
|
265
|
+
|
|
266
|
+
順序なしリストの後に `[ ]` / `[x]` でチェックボックスを生成。
|
|
267
|
+
|
|
268
|
+
```markdown
|
|
269
|
+
- [ ] 未完了タスク
|
|
270
|
+
- [x] 完了タスク
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
---
|
|
274
|
+
|
|
275
|
+
### テキスト装飾
|
|
276
|
+
|
|
277
|
+
| 記法 | 表示 | 注意 |
|
|
278
|
+
|---|---|---|
|
|
279
|
+
| `*斜体*` or `_斜体_` | *斜体* | 前後に半角スペース or 改行必要 |
|
|
280
|
+
| `**太字**` or `__太字__` | **太字** | 前後に半角スペース or 改行必要 |
|
|
281
|
+
| `~~打ち消し~~` | ~~打ち消し~~ | 前後に半角スペース or 改行必要 |
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
### 見出しと目次
|
|
286
|
+
|
|
287
|
+
```markdown
|
|
288
|
+
# H1(記事タイトル用 — 通常 1 つだけ)
|
|
289
|
+
## H2(主要セクション)
|
|
290
|
+
### H3(サブセクション)
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
- `#` とテキストの間に**半角スペース必須**
|
|
294
|
+
- 目次 (TOC) は見出しから自動生成され、右側に自動挿入される
|
|
295
|
+
- `##` を主要セクション、`###` をサブセクションに統一すると見栄えが良い
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
### 絵文字
|
|
300
|
+
|
|
301
|
+
`:emoji_name:` で絵文字を埋め込める。
|
|
302
|
+
|
|
303
|
+
```markdown
|
|
304
|
+
:thumbsup: :rocket: :warning:
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
参照: [Emoji Cheat Sheet](http://www.emoji-cheat-sheet.com/)
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
### ダイアグラム
|
|
312
|
+
|
|
313
|
+
#### Mermaid
|
|
314
|
+
|
|
315
|
+
````markdown
|
|
316
|
+
```mermaid
|
|
317
|
+
graph TD;
|
|
318
|
+
A-->B;
|
|
319
|
+
A-->C;
|
|
320
|
+
B-->D;
|
|
321
|
+
```
|
|
322
|
+
````
|
|
323
|
+
|
|
324
|
+
**制限事項:**
|
|
325
|
+
- コードブロックあたり **2,000 文字以内**
|
|
326
|
+
- フローチャートの Chain (`&`) は **10 個以下**
|
|
327
|
+
- Interaction 機能(クリックイベント)は無効
|
|
328
|
+
|
|
329
|
+
#### PlantUML
|
|
330
|
+
|
|
331
|
+
````markdown
|
|
332
|
+
```plantuml
|
|
333
|
+
Bob->Alice : Hello!
|
|
334
|
+
```
|
|
335
|
+
````
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
### 引用
|
|
340
|
+
|
|
341
|
+
```markdown
|
|
342
|
+
> 引用テキスト
|
|
343
|
+
> 複数行の場合は各行に `>` が必要
|
|
344
|
+
>
|
|
345
|
+
> > ネストされた引用
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
※ 引用の上下には空行が必要。
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
### 水平線
|
|
353
|
+
|
|
354
|
+
```markdown
|
|
355
|
+
---
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
`***`、`---`、`___` のいずれでも可。
|
|
359
|
+
|
|
360
|
+
---
|
|
361
|
+
|
|
362
|
+
### コンテンツ埋め込み
|
|
363
|
+
|
|
364
|
+
以下のサービスの埋め込みタグが利用可能:
|
|
365
|
+
X(旧 Twitter)、CodeSandbox、CodePen、GitHub、GitHub Gist、
|
|
366
|
+
YouTube、Figma、Speaker Deck、SlideShare、Google Slide、
|
|
367
|
+
Docswell、Asciinema、StackBlitz、blueprintUE、Claude Artifacts
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
371
|
+
### コマンド補完(エディタ内)
|
|
372
|
+
|
|
373
|
+
`/` コマンドで記法テンプレートを挿入可能:
|
|
374
|
+
|
|
375
|
+
| コマンド | 説明 |
|
|
376
|
+
|---|---|
|
|
377
|
+
| `/codeblock` | コードブロック挿入 |
|
|
378
|
+
| `/info` | :::note info 挿入 |
|
|
379
|
+
| `/warn` | :::note warn 挿入 |
|
|
380
|
+
| `/alert` | :::note alert 挿入 |
|
|
381
|
+
| `/details` | 折りたたみ挿入 |
|
|
382
|
+
| `/table` | テーブル挿入 |
|
|
383
|
+
| `/reference` | 脚注リンク挿入 |
|
|
384
|
+
| `/footnote` | 脚注内容挿入 |
|
|
385
|
+
| `/commentout` | コメントアウト挿入 |
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# Science Research Article テンプレート
|
|
2
|
+
|
|
3
|
+
> 対象: Science, Science Advances, Science Robotics 等
|
|
4
|
+
> 構成: Abstract (structured) → Introduction → Results → Discussion → Materials and Methods
|
|
5
|
+
> 特徴: Materials and Methods は末尾。One-sentence summary 必須。fig. S1 形式で SI 参照。
|
|
6
|
+
> 語数目安: Research Article ≤ 4,500 words / Report ≤ 2,500 words
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# [タイトル — 簡潔で具体的。サブタイトルにコロンを使用可]
|
|
11
|
+
|
|
12
|
+
Author A¹*, Author B¹†, Author C²
|
|
13
|
+
|
|
14
|
+
¹ Affiliation 1
|
|
15
|
+
² Affiliation 2
|
|
16
|
+
\* Corresponding author. Email: corresponding@example.com
|
|
17
|
+
† Present address: [現所属]
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## One-Sentence Summary
|
|
22
|
+
|
|
23
|
+
<!-- 必須。125 characters 以内。研究の核心を一文で述べる。 -->
|
|
24
|
+
|
|
25
|
+
[本研究の主要な発見を一文で要約する。]
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Abstract
|
|
30
|
+
|
|
31
|
+
<!-- 最大 125 words。段落分けなし。 -->
|
|
32
|
+
|
|
33
|
+
[一文目: 研究の動機・背景。
|
|
34
|
+
二文目以降: アプローチ、主要な結果(定量的)、意義を簡潔に述べる。]
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Introduction
|
|
39
|
+
|
|
40
|
+
<!-- 背景→ギャップ→目的。参照は括弧番号 (1)。 -->
|
|
41
|
+
|
|
42
|
+
[研究分野の背景・重要性] (1, 2).
|
|
43
|
+
|
|
44
|
+
[先行研究のレビュー] (3–5).
|
|
45
|
+
|
|
46
|
+
[研究ギャップの特定].
|
|
47
|
+
|
|
48
|
+
[本研究の目的とアプローチ].
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Results
|
|
53
|
+
|
|
54
|
+
<!-- 小見出し付き。図表は Fig. 1A, Fig. 2B の形式で参照(大文字パネル)。 -->
|
|
55
|
+
|
|
56
|
+
### [Result 1 のタイトル]
|
|
57
|
+
|
|
58
|
+
[結果の記述 (Fig. 1A)。定量値を含む。]
|
|
59
|
+
|
|
60
|
+
### [Result 2 のタイトル]
|
|
61
|
+
|
|
62
|
+
[結果の記述 (Fig. 1, B and C)。]
|
|
63
|
+
|
|
64
|
+
### [Result 3 のタイトル]
|
|
65
|
+
|
|
66
|
+
[結果の記述 (Fig. 2)。補足は (fig. S1) で参照。]
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Discussion
|
|
71
|
+
|
|
72
|
+
[主要な発見の解釈を述べる。]
|
|
73
|
+
|
|
74
|
+
[先行研究との比較。]
|
|
75
|
+
|
|
76
|
+
[理論的・実用的意義。]
|
|
77
|
+
|
|
78
|
+
[限界。]
|
|
79
|
+
|
|
80
|
+
[結論と展望。]
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Materials and Methods
|
|
85
|
+
|
|
86
|
+
<!-- 本文末尾に配置。詳細は Supplementary Materials で補足可。 -->
|
|
87
|
+
|
|
88
|
+
### Experimental design
|
|
89
|
+
|
|
90
|
+
[実験設計の概要]
|
|
91
|
+
|
|
92
|
+
### Sample preparation
|
|
93
|
+
|
|
94
|
+
[材料・試料の詳細]
|
|
95
|
+
|
|
96
|
+
### Measurements
|
|
97
|
+
|
|
98
|
+
[測定手法・装置の詳細]
|
|
99
|
+
|
|
100
|
+
### Data analysis
|
|
101
|
+
|
|
102
|
+
[解析手法・ソフトウェア]
|
|
103
|
+
|
|
104
|
+
### Statistical analysis
|
|
105
|
+
|
|
106
|
+
[統計手法の詳細]
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## References and Notes
|
|
111
|
+
|
|
112
|
+
<!-- 括弧番号順。著者名をイニシャル先行。ジャーナル名イタリック。 -->
|
|
113
|
+
|
|
114
|
+
1. A. B. Author, C. D. Author, E. F. Author, Title of article. *Science* **vol**, pages (year).
|
|
115
|
+
2. [Reference 2]
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## Acknowledgments
|
|
120
|
+
|
|
121
|
+
[資金援助、技術支援への謝辞]
|
|
122
|
+
|
|
123
|
+
**Funding**: [Grant details]
|
|
124
|
+
|
|
125
|
+
**Author contributions**: [CRediT 形式推奨]
|
|
126
|
+
A.B.A.: Conceptualization, Methodology, Writing – original draft.
|
|
127
|
+
C.D.A.: Investigation, Validation.
|
|
128
|
+
E.F.A.: Supervision, Writing – review & editing.
|
|
129
|
+
|
|
130
|
+
**Competing interests**: The authors declare no competing interests.
|
|
131
|
+
|
|
132
|
+
**Data and materials availability**: All data are available in the main text
|
|
133
|
+
or the supplementary materials.
|
|
134
|
+
[or: deposited at [repository] (accession number XXXXX).]
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Supplementary Materials
|
|
139
|
+
|
|
140
|
+
<!-- fig. S1, table S1, movie S1 の形式で参照 -->
|
|
141
|
+
|
|
142
|
+
Materials and Methods
|
|
143
|
+
Figs. S1 to SX
|
|
144
|
+
Tables S1 to SX
|
|
145
|
+
References (XX–YY)
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Figure Captions
|
|
150
|
+
|
|
151
|
+
**Fig. 1. [タイトル(太字)].** [説明。]
|
|
152
|
+
(**A**) [パネル A の説明。]
|
|
153
|
+
(**B**) [パネル B の説明。]
|
|
154
|
+
(**C**) [パネル C の説明。]
|
|
155
|
+
[Error bars indicate mean ± SD (n = XX). *P < 0.05, **P < 0.01 (Student's t test).]
|
|
156
|
+
|
|
157
|
+
**Fig. 2. [タイトル].** [説明]
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Tables
|
|
162
|
+
|
|
163
|
+
**Table 1. [タイトル].**
|
|
164
|
+
|
|
165
|
+
| Column A | Column B | Column C |
|
|
166
|
+
|---|---|---|
|
|
167
|
+
| Data | Data | Data |
|
|
168
|
+
|
|
169
|
+
[略語の脚注]
|