1
$$\{(x,y)\,|\,Ax+By+Cz=0\} = L$$ \begin{flushright}\dag \end{flushright}[1]

I am trying to align the dagger so it is flushed to the right but on the same line as the equation. When i insert \begin{flushright}\dag \end{flushright}inside $$ I get a compiling error.

ojd
  • 113

1 Answers1

2

The following solution uses the \tag* macro (provided by the amsmath package) to accomplish your objective.

enter image description here

Aside: The thick vertical lines at the left and right-hand edges of the image indicate the dimensions of the text block.

\documentclass{article}
\usepackage{amsmath} % for \tag* macro
\usepackage{showframe}
\begin{document}
\[
\bigl\{ (x,y) \bigm| Ax+By+Cz=0 \bigr\} = L \tag*{$\dagger$}
\]
\end{document}
Mico
  • 506,678