Skip to content

Commit 3e4b577

Browse files
committed
Add bibtex file with old libmesh paper reference
1 parent c1e61a8 commit 3e4b577

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@
1111
*.fls
1212
*.pdf
1313
*.spl
14+
*.bbl
15+
*.blg

papers/2024_softwarex/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all: $(NAME).pdf
44

55
# We have a custom .latexmkrc file in this directory which tells latexmk how to make the glossary.
66
# https://tex.stackexchange.com/questions/1226/how-to-make-latexmk-use-makeglossaries
7-
$(NAME).pdf: $(NAME).tex # $(NAME).bib
7+
$(NAME).pdf: $(NAME).tex $(NAME).bib
88
latexmk -g -pdf -logfilewarnings $<
99

1010
# Removes all temporary files including output files (dvi/ps/pdf).

papers/2024_softwarex/paper.bib

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@Article{libMeshPaper,
2+
author = {Benjamin S. Kirk and John W. Peterson and Roy H. Stogner and Graham F. Carey},
3+
title = {{\texttt{libMesh}: A C++ Library for Parallel Adaptive Mesh Refinement/Coarsening Simulations}},
4+
journal = {Engineering with Computers},
5+
volume = 22,
6+
number = {3--4},
7+
pages = {237--254},
8+
year = 2006,
9+
note = {\url{https://doi.org/10.1007/s00366-006-0049-3}}
10+
}

papers/2024_softwarex/paper.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ \section{Motivation and significance}
197197
\section{Software description}
198198

199199
\textit{Describe the software. Provide enough detail to help the reader understand its impact. }
200+
\cite{libMeshPaper}
200201

201202
\subsection{Software architecture}
202203
\textit{ Give a short overview of the overall software architecture; provide a pictorial overview where possible; for example, an image showing the components. If necessary, provide implementation details.}
@@ -244,21 +245,20 @@ \section*{Acknowledgements}
244245
%% References:
245246
%% If you have bibdatabase file and want bibtex to generate the
246247
%% bibitems, please use
247-
%%
248-
%% \bibliographystyle{elsarticle-num}
249-
%% \bibliography{<your bibdatabase>}
248+
\bibliographystyle{elsarticle-num}
249+
\bibliography{paper}
250250

251251
%% else use the following coding to input the bibitems directly in the
252252
%% TeX file.
253253

254-
\begin{thebibliography}{00}
254+
% \begin{thebibliography}{00}
255255

256256
%% \bibitem{label}
257257
%% Text of bibliographic item
258258

259-
\bibitem{} Use this style of ordering. References in-text should also use a similar style.
259+
% \bibitem{} Use this style of ordering. References in-text should also use a similar style.
260260

261-
\end{thebibliography}
261+
% \end{thebibliography}
262262

263263
\textit{If the software repository you used supplied a DOI or another
264264
Persistent IDentifier (PID), please add a reference for your software

0 commit comments

Comments
 (0)