General ⇒ equation labeling and calling
equation labeling and calling
I have two issues. Can someone help me?
1. I have an equation labelled as "main integral" in a file "Main.tex". I want to call this equation with its label in another file that I am saving as "second.tex". This will help me in automatically updating number of this equation across the files. Is this possible in MikTex?
2. I am using \title command, but I don't want author, date etc. However even though I don't use \date, date is getting printed automatically. How do I remove this option?
Thank you,
Omkar
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
equation labeling and calling
2. Assuming you are using one of the standard document classes and the option \maketitle, then it is enough to add in the preamble
Code: Select all
\date{}
Re: equation labeling and calling
\documentclass [oneside, 10pt, a4paper, onecolumn, fleqn]{article}
\pagenumbering{arabic}
\usepackage{setspace}
\onehalfspace
\usepackage{array}
\setlength{\extrarowheight}{3mm}
\usepackage{geometry}
\geometry{left=25mm,right=25mm,top=25mm,bottom=25mm}
\usepackage{amsmath, amsthm, amssymb}
\begin{document}
\title{Appendix E}
\maketitle
text text text text......................
Regards,
Omkar
Re: equation labeling and calling
Re: equation labeling and calling
Thank you.