Skip to content

Commit fb376c5

Browse files
prepared main structure
1 parent 25bebb0 commit fb376c5

12 files changed

+2325
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
.DS_Store
3+
4+
main.pdf
5+
6+
segtex*

abstract.tex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
\begin{abstract}%
3+
%
4+
Abstract
5+
%
6+
\end{abstract}

address-and-authors.tex

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
\address{%
3+
\footnotemark[1]
4+
The University of Memphis, Department of Civil Engineering,
5+
3890 Central Avenue, Memphis, Tennessee 38152, USA.
6+
E-mail: \href{mailto:[email protected]}{[email protected]}.
7+
8+
\footnotemark[2]
9+
The University of Memphis, Center for Earthquake Research and Information,
10+
3890 Central Avenue, Memphis, Tennessee 38152, USA.
11+
E-mail: \href{mailto:[email protected]}{[email protected]};
12+
13+
14+
\footnotemark[3]
15+
Carnegie Mellon University, Department of Civil and Environmental Engineering,
16+
Pittsburgh, Pennsylvania 15213-3890, USA.
17+
E-mail: \href{mailto:[email protected]}{[email protected]}.
18+
}
19+
20+
\author{
21+
Ricardo Taborda\footnotemark[1]\footnotemark[2],
22+
Md Monsurul Huda\footnotemark[2],
23+
Naeem Khoshnevis\footnotemark[2], and
24+
Jacobo Bielak\footnotemark[3]
25+
}

buildpdf.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
# run : ./buildpdf.sh main
4+
5+
pdflatex $1.tex
6+
bibtex $1.aux
7+
pdflatex $1.tex
8+
pdflatex $1.tex
9+
10+
open -a Adobe\ Acrobat\ Pro.app ${1}.pdf
11+
12+
rm ${1}.fff ${1}.log ${1}.aux ${1}.ttt ${1}.bbl ${1}.lof ${1}.blg ${1}.spl ${1}.out
13+
14+
clear

content.tex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
\input{introduction}

foothead.tex

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
\footer{Example}
3+
\lefthead{Taborda et al.}
4+
\righthead{Adaptive internal friction model}

0 commit comments

Comments
 (0)