Code: Select all
my formul .1

Code: Select all
my formul .1
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\tagform@
. Here I modify the original version, removing parentheses and inserting the dot:Code: Select all
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\renewcommand*{\tagform@}[1]{\maketag@@@{.\ignorespaces#1\unskip\@@italiccorr}}
\makeatother
\begin{document}
\begin{align}
y = f(x)
\end{align}
\end{document}
\newtagform{<name>}{<left>}{<right>}
macro which maybe is a little bit more intuitive:Code: Select all
\documentclass{article}
\usepackage{mathtools}% loads `amsmath'
\newtagform{leftdot}{.}{}
\usetagform{leftdot}
\begin{document}
\begin{align}
y = f(x)
\end{align}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis