★ LaTeX Problem !!
1: How can I write number cancellation in latex codès ?
2: How can I write sentence in tabular form ?
ex :- [tex]\begin{array}{| c | c | c |}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{array} [/tex]
* Instead of numbers , how can one write sentences ?
________________________
★ History Problem !!
1: Who was the writer of & ?
2: When and where was Lakshminath Bezbarua born ?
§ Spammers , y'all are not worthy , leave it !
§ I will appreciate good answerers ♡︎
Answers
SOLUTION 1 :-
★ Cancellation can be done in two ways ,
i) :- Using \not{ Your text }
Note :- It only cancels single letter or number and it can be seen in be too.
ii) :- Using \cancel{ Your text }
Note :- It cancels the total text in between the brackets and it cannot be seen in web and it can be only seen in app
SOLUTION 2 :-
★ To write sentences in tabular form , use \begin{tabular} in the starting and \end{tabular} at the end of the cοde . After using \begin{tabular} use {|c|c|c|} , if there are {|c|c|c|} it indicates that the table has 3 columns , if you want more columns use the same no. of c in between modulus( | ) . After {|c|c|c|} add \cline{1-3} , here \cline{1-3} draws a line from column 1-3 , if the table has ‘n' columns use \cline{1-n} . Then use \\ , then add your text and then add & symbol it adds a vertical line after your text . And at the end of the table add
\\ \cline{1-no.of columns} \end{tabular}
These are the commands to draw a table .
Lets take an example :-
♦ Draw an table with 3 columns and two rows :-
Cοde :-
\begin{tabular}{|c|c|c|} \cline{1-3}\\ Hi & Hello & How are you\\ \cline{1-3} Bro & Sister & Mom \\\cline{1-3}\end{tabular}