Posts

Showing posts from June, 2022

INTRO To Latex

Image
LaTeX is one of the efficient methods for publishing journals and papers in today's society, It is essential to study latex like other coding programmes  First step : \documentclass{article} This is the first step as like as in #include in C, Inside the braces we can use many extensions but mostly we use article   step 2 : Using packages \usepackage{amsmath,amssymb} this is the package for math mode typing also there are many packages, table for tabulation and table making,and graphicx for picture installation.   Step 3 : then we shall begin the document with the command. \begin{document}           ..............     \end{document}  On giving begin document automatically \end {document} will appear,if not we have to put \end{document} in the end of the problembetween begin and end document we've to create the program or the content Step 4 :    We can use the facilities which are available ...