줄 번호 크기 조정

줄 번호 크기 조정

저는 LaTex에서 글쓰기를 돕기 위해 Texmaker를 사용합니다. 논문 초안에 줄 번호를 추가했습니다. 행 번호의 크기가 너무 작습니다. 사이즈를 좀 더 크게 할 수 있는 방법이 없을까요? 서문과 일부 코드는 다음과 같습니다.

\documentclass[a4paper, oneside]{book}
\usepackage[left=35mm, right=15mm, top=20mm, bottom=15mm]{geometry}
\usepackage{setspace}
\usepackage{fixltx2e}
\usepackage{graphicx}     %For adding Figures
\usepackage{float}        %For removing figure borders
\usepackage{tabularx}      %For making tables
\usepackage{amssymb}
\usepackage{booktabs}      % For \toprule, \midrule and \bottomrule
\usepackage{pgfplotstable} % Generates table from .csv
\usepackage{longtable}     %Allows multi-page tables
\usepackage{rotating}      %Allows for single page landscape using 
\usepackage{pdflscape}     %Allows for landscape
\usepackage{multirow}      %Allows for merging across rows
\usepackage{tablefootnote} 
\usepackage{url}
\usepackage{footnote}
\usepackage{lineno}
\usepackage{threeparttable}
\usepackage{caption}
\captionsetup{singlelinecheck=false}
\usepackage{siunitx}
\sisetup{input-uncertainty-signs=\pm, 
        separate-uncertainty=true}


\begin{document}

\begin{titlepage}

Insert title page content here

\end{titlepage}

\tableofcontents
\newpage
\mainmatter
\linenumbers

\chapter{Introduction}
\setstretch{1.5}
\fontsize{14}{18}\selectfont

This portion contains the general body of work.\\
It contains a lot of text, numbers and citations.\\
There are plenty of pretty figures and LOTS of tables.\\

\end{document}

관련 정보