Recent content by krupashah
-
K
LaTeX Deriving the Einstein Equations: Appendix for Honours Project
here AppendixA is one new txt file which is include k so in main file write the below clde. \appendix \flushbottom \include{AppendixA} \flushbottom In AppendixA file write below code... \chapter{Acronyms} SO we get Chapter name as Acronyms in our report or article n also in index...- krupashah
- Post #3
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
K
LaTeX Tackling Table Problems in LaTeX
your table format is nt prper... so \begin{table}[b!] \caption{Numbering scheme.}\label{tab:sam} \vspace{3mm} \centering \begin{tabular}[width=1\textwidth]{l|p{59mm}|p{65mm}} then after u have to used " multicolumn{}" so find on net how to do multi column in table- krupashah
- Post #2
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
K
MATLAB Plotting Histograms in MATLAB - x-axis Labels Aligned with Tick Marks
hi... histogram program will be there which i used...please try it i=imread(image path); [r,c]=size(i); val=0:255; scale=0:255; for x=1:r for y=1:c val(i(x,y))=val(i(x,y))+1; end end figure; stem(scale,val);- krupashah
- Post #6
- Forum: MATLAB, Maple, Mathematica, LaTeX