
Q91
Q91 A reference appears incorrectly formatted in the output. What could be the reason?
The bibliography style file is incorrect
The .bib entry is missing required fields
The citation key is duplicated
The document class does not support references
Q92
Q92 Which LaTeX package is commonly used for customizing page layout?
geometry
graphicx
hyperref
tabularx
Q93
Q93 What is the default paper size in most LaTeX document classes?
A4
Letter
A5
Legal
Q94
Q94 How do you set custom margins in LaTeX using the geometry package?
\geometry{margin=1in}
\setmargins{1in}
\pagelayout{1in}
\setpage{margin=1in}
Q95
Q95 What is the role of \pagestyle{} in LaTeX?
Sets the page numbering style
Changes the document font
Defines image placement
Aligns text
Q96
Q96 How do you remove page numbers from a LaTeX document?
\pagestyle{empty}
\nopagenum{}
\removenumbers{}
\nolist{}
Q97
Q97 What is the correct way to set double-spacing in a LaTeX document?
\doublespacing
\linespread{1.6}
\textspacing{double}
\setspacing{double}
Q98
Q98 Which command is used to create a new page in LaTeX?
\newpage
\pagebreak
\clearpage
All of the above
Q99
Q99 How do you create custom headers and footers in LaTeX?
\usepackage{fancyhdr}
\headerstyle{custom}
\defineheader{}
\pageformat{}
Q100
Q100 How do you set different margins for odd and even pages in LaTeX?
\geometry{twoside}
\setmargins{odd=2cm, even=3cm}
\pageformat{double}
\pagelayout{twoside}
Q101
Q101 A LaTeX document displays incorrect margins after using \geometry{}. What could be the issue?
The package was loaded after \begin{document}
The margin values are too large
The document class does not support it
The command was placed inside a section
Q102
Q102 A page break is not working correctly in a LaTeX document. What could be the cause?
The \clearpage command was used
The \newpage command is inside a table
The \pagebreak command is misused
The \begin{document} is missing
Q103
Q103 The header does not appear on the first page of a LaTeX document. What could be the reason?
The \pagestyle{plain} is used
The fancyhdr package is missing
The document class does not support headers
The \headrulewidth is set to zero
Q104
Q104 Which LaTeX document class is best suited for writing research papers?
article
report
book
letter
Q105
Q105 What is the primary advantage of using LaTeX for research paper writing?
Automatic numbering of figures, tables, and references
Advanced text editing features
Real-time collaboration
Support for drag-and-drop elements
Q106
Q106 What is the purpose of the abstract environment in LaTeX?
To create a summary of the paper
To format mathematical expressions
To define a bibliography
To insert images
Q107
Q107 How can LaTeX help in managing large research documents?
It automatically manages citations, references, and formatting
It provides a graphical user interface
It includes built-in plagiarism detection
It allows code execution within text
Q108
Q108 How do you properly format a title page in LaTeX?
\maketitle
\titlepage
\begin{title} ... \end{title}
\createcoverpage
Q109
Q109 How do you format a research paper with multiple sections and subsections?
\section{}
\subsection{}
\subsubsection{}
\part{}
Q110
Q110 How do you add footnotes in LaTeX?
\footnote{}
\addfoot{}
\insertnote{}
\pagefoot{}
Q111
Q111 A LaTeX document does not display the title page correctly. What could be the issue?
The \maketitle command is missing
The document class does not support it
The \title{} command is missing
The title is too long
Q112
Q112 A research paper in LaTeX is displaying incorrect numbering of sections. What could be the issue?
The \tableofcontents command was not updated
The document was not compiled twice
The \section{} command is missing
The \documentclass{} is incorrect
Q113
Q113 What is the main purpose of the Beamer package in LaTeX?
To create presentations
To format tables
To generate research papers
To manage bibliography
Q114
Q114 Which LaTeX document class is used for Beamer presentations?
article
report
beamer
presentation
Q115
Q115 What command is used to start a slide in a Beamer presentation?
\begin{frame} ... \end{frame}
\begin{slide} ... \end{slide}
\startframe{}
\newslide{}
Q116
Q116 What is the function of \usetheme{} in Beamer?
To set the presentation theme
To add animations
To change font size
To define slide numbering
Q117
Q117 How do you add a title slide in Beamer?
\titlepage{}
\begin{titleframe} ... \end{titleframe}
\starttitle{}
\addtitle{}
Q118
Q118 How do you display bullet points one by one in Beamer?
\pause
\uncover{}
\stepwise{}
\showitem{}
Q119
Q119 How do you change slide transitions in Beamer?
\settransition{}
\animate{}
\transduration{}
\transdissolve{}
Q120
Q120 A Beamer slide does not appear in the final presentation. What could be the reason?
The frame is missing \begin{frame}
The \documentclass{beamer} is missing
The slide title is incorrect
The Beamer theme is unsupported