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
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
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.