-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.tex
More file actions
111 lines (94 loc) · 3.12 KB
/
example.tex
File metadata and controls
111 lines (94 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
% \documentclass{report}
% article - for articles in scientific journals, presentations, short reports, program documentation, invitations, ...
% proc - a class for proceedings based on the article class.
% minimal - is as small as it can get. It only sets a page size and a base font. It is mainly used for debugging purposes.
% report - for longer reports containing several chapters, small books, thesis, ...
% book - for real books
% slides - for slides. The class uses big sans serif letters.
% memoir - for changing sensibly the output of the document. It is based on the book class, but you can create any kind of document with it (1)
% letter - for writing letters.
% beamer - for writing presentations (see LaTeX/Presentations).
\documentclass{article}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{mathtools}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[hidelinks]{hyperref}
\usepackage{letltxmacro,xparse}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[hidelinks]{hyperref}
\usepackage{letltxmacro,xparse}
\LetLtxMacro\oldhref\href
\RenewDocumentCommand{\href}{o m m}{%
\IfValueTF{#1}
{\oldhref[#1]{#2}{\bfseries #3}}
{\oldhref{#2}{\bfseries #3}}%
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{indentfirst}
\usepackage{graphicx}
\graphicspath{ {./docs/} }
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{sample.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{blindtext} % Just for layout demo. Remove when real
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\author{StudentName StudentNumber}
\title{The Title of The Paper}
% \setlength{\parindent}{20pt}
\begin{document}
\maketitle
\section{Abstract}
\noindent
This is the Abstract
\section{Introduction}
% The \parencite command is used for parenthetical citations, and
% \textcite can be used for narrative citations.
Intro here. \parencite{santos_artificial_2023} likes lines like $f_{w,b}\big(x\big) = wx+b$
\section{Body}
\begin{equation}
\frac{\partial J(\mathbf{w},b)}{\partial w_j} = \frac{1}{m} \sum\limits_{i = 0}^{m-1} (f_{\mathbf{w},b}(\mathbf{x}^{(i)}) - y^{(i)})x_{j}^{(i)}
\end{equation}
\subsection{Dummy text}
\blindtext[1]
$$
\mathcal{L}_{layer} = \begin{cases}
\begin{aligned}
\mathcal{L}_{embed}, m=0 \\
\mathcal{L}_{hidden} + \mathcal{L}_{attention} M \geq m > 0 \\
\mathcal{L}_{predection}, m=M+1 \\
\end{aligned}
\end{cases}
$$
\blindtext[1]
\begin{table}[h!]
\centering
\begin{tabular}{||c c c ||}
\hline
Number of Samples & With Sentiment & Accuracy \\ [0.5ex]
\hline\hline
71,325 & Yes & 93.2\% \\
\hline
71,325 & No & 92.3\% \\
\hline
26,778 & Yes & 91.9\% \\
\hline
26,778 & No & 91.6\% \\
\hline
8,926 & Yes & 90.5\% \\
\hline
8,926 & No & 90.2\% \\ [1ex]
\hline
\end{tabular}
\caption{Model Accuracy With and Without Sentiment Over Sample Sizes}
\label{table:1}
\end{table}
\blindtext[1]
\begin{figure}[h]
\centering
\includegraphics[width=8cm]{format}
\caption{Confusion Matrix for 71,325 Sample Size using the Sentiment Feature}
\label{figure:1}
\end{figure}
\blindtext[2]
\printbibliography
\end{document}