151 lines
5.9 KiB
Typst
151 lines
5.9 KiB
Typst
#import "@preview/starter-journal-article:0.4.0": article, author-meta
|
||
#import "@preview/tablem:0.2.0": tablem
|
||
|
||
#show: article.with(
|
||
title: "Article Title",
|
||
authors: (
|
||
"Haonan Chen": author-meta(
|
||
"xmu",
|
||
// email: "chn@chn.moe",
|
||
),
|
||
"Junyong Kang": author-meta(
|
||
"xmu",
|
||
email: "jykang@xmu.edu.cn"
|
||
)
|
||
),
|
||
affiliations: (
|
||
"xmu": "Xiamen University",
|
||
),
|
||
abstract: [#lorem(100)],
|
||
keywords: ("Typst", "Template", "Journal Article"),
|
||
)
|
||
|
||
// 行号
|
||
#set par.line(numbering: "1")
|
||
|
||
// 两端对齐
|
||
#set par(justify: true)
|
||
|
||
// 中文使用思源宋体,英文使用 Times New Roman
|
||
#set text(font: ("Times New Roman", "Source Han Serif SC"))
|
||
|
||
// 图表标题
|
||
#show figure.caption: it => {
|
||
set text(10pt)
|
||
align(center, box(align(left, it), width: 80%))
|
||
}
|
||
|
||
// 页码
|
||
#set page(
|
||
numbering: "1/1",
|
||
)
|
||
|
||
// TODO: why globally set placement not work?
|
||
// #set figure(placement: none)
|
||
|
||
// 标题序号
|
||
#set heading(numbering: "1.")
|
||
|
||
= Introduction
|
||
|
||
#include "section/introduction.typ"
|
||
|
||
= Method
|
||
|
||
#include "section/method.typ"
|
||
|
||
= Results and Discussion
|
||
|
||
// - 无缺陷:
|
||
// 我们将声子分为两类,一类是极性比较弱的(18个),一类是比较强的(3个)。
|
||
// - 弱极性的声子:
|
||
// - TODO: 确认一下最后一次实验中,峰偏移等是否与掺杂有明显关系,以及这个关系与之前是否相同。
|
||
// - 强极性的声子:
|
||
// - 强极性声子在 Gamma 附近散射谱不连续,它的声子模式由入射光的方向决定。在入射光不沿 z 轴的情况下,使用 C6v 群不再适用。
|
||
// - TODO: 写文字
|
||
// - 在接近 y 轴入射时,可以看到分裂。这个模式可能对表面敏感。
|
||
// - TODO: 佐证它对表面敏感
|
||
// - 对于 LO,可能形成 LOPC
|
||
// - 有缺陷的情况:
|
||
// - TODO: 描述缺陷原子的振动
|
||
// - TODO: 计算拉曼张量,描述光谱的可能变化
|
||
|
||
== Phonons in Perfect 4H-SiC
|
||
|
||
#include "section/perfect/default.typ"
|
||
|
||
=== Phonons with Negligible Polarities
|
||
|
||
#include "section/perfect/non-polar/default.typ"
|
||
|
||
=== Strong-polar Phonons
|
||
|
||
// 在半导体的极性声子模式中,原子间存在长距离的库伦相互作用,导致散射谱在 Gamma 附近不再连续(引用),如图中的彩色线所示。
|
||
// 这导致不同方向的入射/散射光的声子模式不同。
|
||
// 具体来说,当入射光/散射光沿着 z 方向时,起作用的是 A-Gamma 线上的声子模式(图中的左半边的橘线),它们适用于群 C6v。
|
||
// 这时会有一个 E1 模式(TO,振动方向在面内)和一个 A1 模式(LO,沿 z 振动)。
|
||
// 而当沿着 y 方向入射时,起作用的是 Gamma-K 线上的声子模式(图中的右半边的橘线),它们不再适用于群 C6v,而只适用于群 C2v;
|
||
// 它会分裂成沿x、y、z 方向的三个声子模式(图中的右半边的蓝线),它们分别对应于群 C2v 的 A1、B1 和 B2 表示 TODO: 确认这个几个表示的名字。
|
||
// 若考虑到到入射光不是严格沿着 z 方向,而是有一个小的角度(例如 10 度),则此时有一个声子模式沿着 x 方向,另外两个声子模式则为 y-z 两个方向的混合。
|
||
// (没有在图上表示)
|
||
|
||
// 极性声子模式还会与载流子发生较强的相互作用。
|
||
|
||
#page(flipped: true)[
|
||
#figure({
|
||
// 使用 m2 m3
|
||
let m(n, content) = table.cell(colspan: n, content);
|
||
let A1 = [A#sub[1]];
|
||
let A2 = [A#sub[2]];
|
||
let B1 = [B#sub[1]];
|
||
let B2 = [B#sub[2]];
|
||
let E1 = [E#sub[1]];
|
||
let E2 = [E#sub[2]];
|
||
let NA = [Not Applicable]
|
||
let yzmix = [y-z mixed#linebreak() (LO-TO mixed)];
|
||
let lopc = [Yes#linebreak() (LOPC)];
|
||
let overf = [Yes#linebreak() (overfocused)];
|
||
set text(size: 9pt);
|
||
set par(justify: false);
|
||
table(columns: 20, align: center + horizon, inset: (x: 3pt, y: 5pt),
|
||
[*Direction of Incident & Scattered Light*], m(5)[z], m(5)[y], m(9)[between z and y, 45#sym.degree to z],
|
||
// z y 45 y&z
|
||
[*Number of Phonon*], [1], [2], m(3)[3], m(3)[1], [2], [3], m(4)[1], [2], m(4)[3],
|
||
[*Vibration Direction*],
|
||
[x#linebreak() (TO)], [y#linebreak() (TO)], m(3)[z (LO)], // z
|
||
m(3)[z (TO)], [x#linebreak() (TO)], [y (LO)], // y
|
||
m(4, yzmix), [x#linebreak() (TO)], m(4, yzmix), // 45 y&z
|
||
[*Representation in Group C#sub[6v]*], m(2, E1), m(3, A1), m(14, NA),
|
||
// z y 45 y&z
|
||
[*Representation in Group C#sub[2v]*], B2, B1, m(3, A1), m(3, A1), B2, B1, m(9, NA),
|
||
[*Scattering in Polarization*],
|
||
[xz], [yz], [xx], [yy], [zz], // z
|
||
[xx], [yy], [zz], [xz], [yz], // y
|
||
[xx], [yy], [yz], [zz], [xz], [xx], [yy], [yz], [zz], // 45 y&z
|
||
[*Raman Intensity (a.u.)*],
|
||
m(2)[53.52], m(2)[58.26], [464.69], // z
|
||
m(2)[58.26], [454.09], [53.52], [53.55], // y
|
||
m(2)[53.71], [3.20], [425.98], [53.56], m(2)[3.60], [50.36], [27.99], // 45 y&z
|
||
[*Visible in Common Raman Experiment*],
|
||
m(2)[Yes], m(2, lopc), [No], // z
|
||
overf, [No], overf, [Yes], lopc, // y
|
||
m(4)[], [], m(4)[], // 45 y&z
|
||
[*Wavenumber (Simulation) (cm#super[-1])*],
|
||
// z y 45 y&z
|
||
m(2)[776.57], m(3)[933.80], m(3)[761.80], [776.57], [941.33], m(4)[762.76], [776.57], m(4)[940.86],
|
||
[*Electrical Polarity*], m(19)[Strong]
|
||
)},
|
||
caption: [Strong-polarized phonons near $Gamma$ point],
|
||
)
|
||
]
|
||
|
||
#include "section/appendix/default.typ"
|
||
|
||
#include "掺杂晶格变化.typ"
|
||
#include "晶格变化导致的频率变化.typ"
|
||
|
||
// TODO: 这句话放哪里?
|
||
// whose dispersion curves exhibit discontinuity near the #sym.Gamma point (also shown in @phonon),
|
||
|
||
#bibliography("./ref.bib", title: "Reference", style: "american-physics-society")
|