\begin{align}
y = f(x) \\ %automatically numbering, "\\" means "change the line"
y = g(x) \nonumber \\ % "\nonumber" means "do not numbering this equation"
y = \frac{1}{x} \nonumber
\end{align}
(2) Alignment
\begin{align}
y &= f(x) \nonumber \\
&= T_{0}+ (T_{0}-T_{h})e^{-x} % "&"s are automatically aligned them among themselves.
\end{align}
(Optional) Upload your image file on your overleaf cloud
\begin{figure}[h!]
\centering
\includegraphics[width=0.5\textwidth]{Figures/figure1.pdf}
\caption{Caption}
\end{figure}
\FloatBarrier %(Optional) This line prevents the pictures from being placed in an order I didn't intend.
(1) main.tex (Just copy the below codes, and paste on your main.tex file. You may need to press enter a bit)
\documentclass[10pt]{article}
\usepackage{graphicx} % 그림 삽입하기 위한 패키지
\usepackage{indentfirst}
\usepackage{subfiles} % 하위 파일 지원 패키지
\usepackage{subcaption}
\usepackage{amsfonts} % 폰트 추가
\usepackage{amsmath} % 수식 추가
\usepackage{amssymb} % math 심볼 추가
\usepackage{cancel} % 슬래쉬 치기
\usepackage{hyperref} % 수식 참조 및 하이퍼링크
\usepackage[most]{tcolorbox} % 수식 박스안에
\usepackage{placeins}
\tcbuselibrary{listingsutf8} % 박스 사이즈 조절, 위 여백은 -3mm , 아래여백 1mm
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\nodeshape=circle,draw,inner sep=0.5pt {#1};}}
\DeclareMathSymbol{\mlq}{\mathrel}{operators}{"5C} % left-double-quotation
\DeclareMathSymbol{\mrq}{\mathrel}{operators}{`"} % right-double-qutotation
\usepackage{geometry}
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
top=20mm,
}
\setlength{\parindent}{5pt} %인덴테이션 조절
\title{blank project}
\author{Do-Hyun Song}
\date{March 2025}
\begin{document}
\maketitle
\subfile{Sections/sec1.tex} % sec1.tex 불러오기 (폴더가 같은 위치에 있으면 상위폴더 지정 필요X)
\subfile{Sections/sec2.tex}
\subfile{Sections/sec3.tex}
\bibliographystyle{unsrt}
\bibliography{ref}
\end{document}
(2) sec1.tex (subsection file)
\documentclass[../main.tex]{subfiles} %main.tex의 프리앰블 설정 상속받기
\begin{document} % 단독 컴파일 가능
\section{Section 1} %섹션 제목 입력
Hello, World! %begin{document}-end{document} 사이에 글을 작성
\end{document}