
Q61
Q61 How do you include the amsmath package in a LaTeX document?
\package{amsmath}
\addpackage{amsmath}
\usepackage{amsmath}
\begin{amsmath}
Q62
Q62 What is the correct way to load multiple packages in LaTeX?
\usepackage{graphicx, hyperref}
\usepackage{graphicx}; \usepackage{hyperref}
\loadpackage{graphicx hyperref}
\begin{package}[graphicx, hyperref]
Q63
Q63 How do you change the document font to Times New Roman in LaTeX?
\usepackage{times}
\usepackage{tnr}
\fontfamily{times}
\setfont{Times}
Q64
Q64 How do you define a custom command in LaTeX?
\commanddef{}
\newcommand{\cmd}{definition}
\addcommand{\cmd}{definition}
\begin{command}{\cmd}
Q65
Q65 A LaTeX document throws an error when using \includegraphics{}. What could be the issue?
The graphicx package is missing
The image file is missing
The image format is incorrect
The image path is incorrect
Q66
Q66 A package command like \usepackage{geometry} is not working. What could be the issue?
The package is not installed
The package is misspelled
The package is loaded after \begin{document}
The package is outdated
Q67
Q67 A user-defined command using \newcommand{} is causing errors. What could be the issue?
The command is being redefined
The command contains invalid characters
The command name conflicts with existing LaTeX commands
The command is missing a required argument
Q68
Q68 Which LaTeX package is commonly used to include images?
graphicx
images
picture
graphics
Q69
Q69 What is the purpose of the \includegraphics{} command in LaTeX?
To insert an image into the document
To create a new figure environment
To generate a vector image
To create a hyperlink to an image
Q70
Q70 What file formats are supported by the \includegraphics{} command?
PNG, JPG, PDF
DOC, XLS, TXT
GIF, BMP, PSD
CSV, JSON, XML
Q71
Q71 What is the purpose of the figure environment in LaTeX?
To insert floating images
To format tables
To create a list of figures
To generate a hyperlink
Q72
Q72 What does the [width=0.5\textwidth] option do in \includegraphics[width=0.5\textwidth]{image.png}?
Resizes the image to half the page width
Centers the image
Rotates the image
Adds a border around the image
Q73
Q73 How do you center an image in LaTeX?
\begin{center} \includegraphics{} \end{center}
\begin{align} \includegraphics{} \end{align}
\center{\includegraphics{}}
\imagecenter{}
Q74
Q74 What is the correct way to include an image with a caption?
\begin{figure} \caption{} \includegraphics{} \end{figure}
\begin{caption} \includegraphics{} \end{caption}
\begin{image} \caption{} \end{image}
\begin{picture} \includegraphics{} \end{picture}
Q75
Q75 Which command is used to rotate an image in LaTeX?
\rotategraphics{}
\rotateimage{}
\includegraphics[angle=90]{}
\rotatebox{90}{}
Q76
Q76 How do you adjust image placement to prevent overlapping with text?
\float{}
\textwrap{}
\begin{wrapfigure} ... \end{wrapfigure}
\wrapimage{}
Q77
Q77 Why does \includegraphics{} fail to display an image?
The graphicx package is not loaded
The file path is incorrect
The image format is unsupported
The image size is too large
Q78
Q78 A figure is not appearing in the expected position in the document. What could be the issue?
The [h] placement option is missing
The figure caption is too long
The document is too short
The figure file is too large
Q79
Q79 An image is appearing blurry in the output PDF. What could be the reason?
The image resolution is too low
The document is using a non-vector format
The image was resized too much
The image compression is too high
Q80
Q80 What is the purpose of BibTeX in LaTeX?
To manage and format references
To create tables
To generate mathematical equations
To insert images
Q81
Q81 Which command is used to include a bibliography in LaTeX?
\bibliography{}
\bibfile{}
\addbib{}
\reference{}
Q82
Q82 What is the correct file extension for a BibTeX bibliography file?
.bbl
.bib
.btx
.bibtex
Q83
Q83 Which command is used to format bibliography entries in LaTeX?
\bibstyle{}
\bibliographystyle{}
\setstyle{}
\style{}
Q84
Q84 What is the purpose of the natbib package in LaTeX?
To format inline citations
To add hyperlinks to citations
To create numbered citations
To manage references manually
Q85
Q85 How do you cite a reference in LaTeX using BibTeX?
\cite{}
\ref{}
\bibitem{}
\addcite{}
Q86
Q86 What is the correct format for defining an article reference in a .bib file?
@article{key, author={}, title={}, journal={}, year={}}
@reference{key, author={}, title={}, year={}}
@cite{key, author={}, title={}, year={}}
@article{key, author={}}
Q87
Q87 How do you define a book reference in BibTeX?
@book{key, author={}, title={}, year={}, publisher={}}
@bib{key, author={}, title={}, year={}}
@reference{key, author={}, title={}, publisher={}}
@cite{key, title={}, author={}}
Q88
Q88 How do you include multiple citations in a single LaTeX command?
\cite{ref1, ref2}
\multicite{ref1, ref2}
\bibcite{ref1, ref2}
\addcite{ref1, ref2}
Q89
Q89 A LaTeX document does not show the bibliography section. What could be the issue?
The .bib file is missing
The bibliography command is missing
The document is not compiled with BibTeX
The reference keys are incorrect
Q90
Q90 A citation appears as [?] instead of the correct reference. What could be the reason?
The reference key is misspelled
The .bib file is missing
BibTeX was not run before LaTeX
The bibliography style is incorrect