Graphics, Figures & Tables ⇒ Arabic footnotes needed but I keep getting lower case letter
Arabic footnotes needed but I keep getting lower case letter
\documentclass{article}
\usepackage{setspace}
\onehalfspace
\usepackage{pdflscape}
\usepackage{longtable}
\title{Discrimination at Home; An analysis in to the earnings performance of British born ethnic minorities in the first decade of the 21st Century}
\date{22 January 2010}
\begin{document}
\maketitle
\section{Introduction}
\begin{table}[htbp]
\centering
\caption{Darity \& Nembhard (2000); Key Monthly Income Ratios: Selected Countries}
\begin{minipage}{\textwidth}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\begin{tabular}{l c c}
\hline
{\bf Country} & {\bf Inferior/Dominant} & {\bf Monthly Income Ratio} \\
\hline
{\bf Malaysia} & Malay/Chinese & 0.46-0.57 \\
& Indian/Chinese & 0.8-0.81 \\
& SC \footnote[1]{SC are the Scheduled Castes, these are the religiously inferior caste and include the``Dalits" also known as the``untouchables".}/Other & 0.78-0.79 \\
& Muslim/Brahmin & 0.53 \\
{\bf India} & Sikh/Brahmin & 0.87 \\
& Hindu Low Caste/Brahmin & 0.55 \\
& Hindu Middle Caste/Brahmin & 0.53 \\
& Hindu High Caste/Brahmin & 1.03 \\
{\bf Belize} & Creole/White & 0.52 \\
& Mestizo/White & 0.38 \\
& Black/White & 0.12 - 0.46 \\
{\bf South Africa} & Coloured/White & 0.23-0.47 \\
& Asian/White & 0.37-0.63 \\
\hline
\end{tabular}
\end{minipage}
\label{tab:addlabel}
\end{table}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Arabic footnotes needed but I keep getting lower case letter
Next time please use the code environment to tag code as such. This keeps a post clear and legible.
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Arabic footnotes needed but I keep getting lower case letter
Thank you once again.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Arabic footnotes needed but I keep getting lower case letter
Can be read in the Board Rules (which should have been done before posting).Patel wrote:[…] Sorry about the lack of code, I didn't know the etiquette. […]
Just for your inspiration. With some enhancements by means of the booktabs package.Patel wrote:[…] I probably won't use threewaytable as suggested, it takes me several hours to get to grips with every new package and dissertation in on Friday. […]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage[onehalfspacing]{setspace}
\usepackage{booktabs,threeparttable}
\title{Discrimination at Home; An analysis in to the earnings performance of British born ethnic minorities in the first decade of the 21st Century}
\date{22 January 2010}
\begin{document}
\maketitle
\section{Introduction}
\begin{table}[!ht]
\begin{threeparttable}
\caption{Darity \& Nembhard (2000); Key Monthly Income Ratios: Selected Countries}\label{tab:addlabel}
\centering
\begin{tabular}{lcc}\toprule
\textbf{Country} & \textbf{Inferior/Dominant} & \textbf{Monthly Income Ratio} \\ \midrule
\textbf{Malaysia} & Malay/Chinese & 0.46--0.57 \\
& Indian/Chinese & 0.8--0.81 \\
& SC \tnote{1} /Other & 0.78--0.79 \\
& Muslim/Brahmin & 0.53 \\
\textbf{India} & Sikh/Brahmin & 0.87 \\
& Hindu Low Caste/Brahmin & 0.55 \\
& Hindu Middle Caste/Brahmin & 0.53 \\
& Hindu High Caste/Brahmin & 1.03 \\
\textbf{Belize} & Creole/White & 0.52 \\
& Mestizo/White & 0.38 \\
& Black/White & 0.12--0.46 \\
\textbf{South Africa} & Coloured/White & 0.23--0.47 \\
& Asian/White & 0.37--0.63 \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\footnotesize
\item[1] SC are the Scheduled Castes, these are the religiously inferior caste and include the "Dalits" also known as the "untouchables".
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Arabic footnotes needed but I keep getting lower case letter
Code: Select all
\begin{minipage}{\textwidth}
\renewcommand{\thempfn}{\arabic{mpfootnote}}
...
\end{minipage}