I was wondering if there is something that works like \hfill, in the display environment. I want to get a place a blacksquare at the end of the line on which a displayed equation is present to indicate end of the proof.
Please see the code below.
Code: Select all
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{mdwlist}
\usepackage{natbib}
\usepackage{showkeys} %To see labels (of equations, proof and lemma numbers) when working on a draft.
\usepackage{paralist}% Package that allows different types of lists such as in paragraph lists.
\usepackage[margin=1in,left=1.2in]{geometry}
\usepackage[T1]{fontenc}
\usepackage[charter]{mathdesign}
\def\sm{\scriptscriptstyle}
\usepackage{tikz}
\newtheorem{proposition}{Proposition}
\setlength{\parindent}{0in}
\setlength{\parskip}{2ex plus 0.5ex minus 0.2ex}
\begin{document}
Objective: To get the blacksquare in the same line as the equation below, and at the end of the line. Write down it is one line below.
\begin{equation*}
\delta_{0} f_{\sm D}(EG_{\sm D}^{\sm 0B}) / F_{\sm D}(EG_{\sm D}^{\sm 0B}) >(<) \delta_{1} f_{\sm D}(EG_{\sm D}^{\sm 1B}) / F_{\sm D}(EG_{\sm D}^{\sm 1B}).
\end{equation*}\hspace*{\fill}{$\blacksquare$}
\end{document}