Baxter, Jere 1852-1904
google.charts.load('current', {packages: ['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var options = {
height: 200,
legend: { position: 'top', maxLines: 3 },
bar: { groupWidth: '75%' },
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:{
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'
}
};
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
{ role: 'annotation' } ],
['1870-1872', 0, 0, 0, ''],
['1872-1874', 0, 0, 0, ''],
['1874-1876', 0, 0, 0, ''],
['1876-1878', 0, 0, 0, ''],
['1878-1880', 5, 0, 0, ''],
['1880-1882', 0, 0, 0, ''],
['1882-1884', 0, 0, 0, ''],
['1884-1886', 10, 0, 0, ''],
['1886-1888', 0, 0, 0, ''],
['1888-1890', 0, 0, 0, ''],
['1890-1892', 5, 0, 0, ''],
['1892-1894', 0, 0, 0, ''],
['1894-1896', 0, 0, 0, ''],
['1896-1898', 0, 0, 0, ''],
['1898-1900', 0, 0, 0, ''],
['1900-1902', 10, 0, 0, ''],
['1902-1904', 10, 0, 0, ''],
['1904-1906', 0, 0, 0, ''],
['1906-1908', 0, 0, 0, ''],
['1908-1910', 0, 0, 5, ''],
['1910-1912', 0, 0, 0, ''],
['1912-1914', 0, 0, 0, ''],
['1914-1916', 0, 0, 0, ''],
['1916-1918', 0, 0, 0, ''],
['1918-1920', 0, 0, 0, ''],
['1920-1922', 0, 0, 0, ''],
['1922-1924', 0, 0, 0, ''],
['1924-1926', 0, 0, 0, ''],
['1926-1928', 0, 0, 0, ''],
['1928-1930', 0, 0, 0, ''],
['1930-1932', 0, 0, 0, ''],
['1932-1934', 0, 0, 0, ''],
['1934-1936', 0, 0, 0, ''],
['1936-1938', 0, 0, 0, ''],
['1938-1940', 0, 0, 0, ''],
['1940-1942', 0, 0, 0, ''],
['1942-1944', 0, 0, 0, ''],
['1944-1946', 0, 0, 0, ''],
['1946-1948', 0, 0, 0, ''],
['1948-1950', 0, 0, 0, ''],
['1950-1952', 0, 0, 0, ''],
['1952-1954', 0, 0, 0, ''],
['1954-1956', 0, 0, 0, ''],
['1956-1958', 0, 5, 0, ''],
['1958-1960', 0, 0, 0, ''],
['1960-1962', 0, 0, 0, ''],
['1962-1964', 0, 0, 0, ''],
['1964-1966', 0, 0, 0, ''],
['1966-1968', 0, 0, 0, ''],
['1968-1970', 0, 0, 0, ''],
['1970-1972', 0, 0, 0, ''],
['1972-1974', 0, 0, 0, ''],
['1974-1976', 0, 0, 0, ''],
['1976-1978', 0, 0, 0, ''],
['1978-1980', 0, 0, 0, ''],
['1980-1982', 0, 0, 0, ''],
['1982-1984', 0, 0, 0, ''],
['1984-1986', 0, 0, 0, ''],
['1986-1988', 0, 0, 0, ''],
['1988-1990', 0, 0, 0, ''],
['1990-1992', 0, 0, 0, ''],
['1992-1994', 0, 0, 0, ''],
['1994-1996', 0, 0, 0, ''],
['1996-1998', 0, 0, 0, ''],
['1998-2000', 0, 0, 0, ''],
['2000-2002', 0, 0, 0, ''],
['2002-2004', 0, 0, 0, ''],
['2004-2006', 0, 0, 0, ''],
['2006-2008', 0, 0, 0, ''],
['2008-2010', 0, 0, 0, ''],
['2010-2012', 0, 0, 0, ''],
['2012-2014', 0, 0, 0, ''],
['2014-2016', 0, 5, 0, ''],
['2016-2018', 0, 10, 0, ''],
['2018-2020', 0, 0, 0, ''],
['2020-2022', 0, 0, 0, ''],
]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
};
function bringBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;
}
}
function sendBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;
}
}
function getElementsByClassName(classname, node) {
if(!node)
node = document.getElementsByTagName("body")[0];
var a=;
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");
for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;
}
function turnEditEntriesOn(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {
for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="block";
}
}
document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';
}
function turnEditEntriesOff(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {
for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="none";
}
}
document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';
}
Baxter, Jere 1852-1904
Overview
Works: | 27 works in 57 publications in 1 language and 598 library holdings |
---|---|
Genres: | Periodicals History |
Roles: | Author |
Publication Timeline
.
Most widely held works about
Jere Baxter
Jere Baxter
Baxter, Jere by
Thomas William Herringshaw(
)
Jay Guy Cisco Papers by
Jay Guy Cisco(
)
"Col." Baxter as a humorist(
Book
)
Records by
Tennessee Central Railway Company(
)
Papers by
Jere Baxter(
)
Nathaniel Baxter/Robert Jackson Papers by
Nathaniel Baxter(
)
more
fewer
Most widely held works by
Jere Baxter
Jere Baxter
The Legal reporter : a monthly publication of the recent and important opinions delivered by the Supreme Court of Tennessee,
together with other and general legal information(
)
in
English
and held by
214 WorldCat member
libraries
worldwide
The Tennessee legal reporter : new series : decisions of the Supreme Court by
Tennessee(
)
in
English
and held by
173 WorldCat member
libraries
worldwide
Reports of cases argued and determined in the Supreme Court of Tennessee by
Tennessee(
)
in
English
and held by
102 WorldCat member
libraries
worldwide
The legal reporter : new series(
)
in
English
and held by
41 WorldCat member
libraries
worldwide
"A monthly publication of the recent and important opinions delivered by the Supreme Court of Tennessee, together with other
and general legal information. New series."--T.p
Reports of cases argued and determined in the Supreme Court of Tennessee by
Jere Baxter(
Book
)
in
English
and held by
26 WorldCat member
libraries
worldwide
Points of information in reference to the establishment of a great manufacturing city at Sheffield, Alabama by
Jere Baxter(
Book
)
2
editions published
in
1884
in
English
and held by
8 WorldCat member
libraries
worldwide
Reply to the "Scroll of shame" speech of Senator Baxter, Feb. 9, 1903 by
J. M Dickinson(
Book
)
1
edition published
in
1903
in
English
and held by
6 WorldCat member
libraries
worldwide
Louisville & Nashville monopoly, its methods and purposes exposed : the reply of Jere Baxter to Milton H. Smith by
Jere Baxter(
Book
)
1
edition published
in
1902
in
English
and held by
3 WorldCat member
libraries
worldwide
The legal reporter : a monthly publication of the recent and important opinions delivered by the Supreme Court of Tennessee,
together with other and general legal information. v. 1-3 ; May 1877-Nov. 1879(
Book
)
1
edition published
in
1957
in
English
and held by
3 WorldCat member
libraries
worldwide
REPORTS OF CASES ARGUED AND DETERMINED IN THE SUPREME COURT OF TENNESSEE, MIDDLE DIVISION, AT... THE DECEMBER TERM, 1873 AND
'74 by
Jere Baxter(
Book
)
1
edition published
in
2016
in
English
and held by
2 WorldCat member
libraries
worldwide
The Mississippi Valley(
)
in
English
and held by
2 WorldCat member
libraries
worldwide
Reports of Cases argued and determined in the Supreme Court of Tennessee ... 1872( -1878). Edited by Jere Baxter by
Tennessee(
Book
)
1
edition published
in
1878
in
English
and held by
2 WorldCat member
libraries
worldwide
The facts on the railroad situation in middle Tennessee : and especially on the necessity for the amendment of Terminal Company
Charter by
Jere Baxter(
Book
)
1
edition published
in
1901
in
English
and held by
2 WorldCat member
libraries
worldwide
REPORTS OF CASES ARGUED AND DETERMINED IN THE SUPREME COURT OF TENNESSEE, MIDDLE DIVISION, AT... THE DECEMBER TERM, 1874 AND
'75 by
Jere Baxter(
Book
)
1
edition published
in
2016
in
English
and held by
1 WorldCat member
library
worldwide
REPORTS OF CASES ARGUED AND DETERMINED IN THE SUPREME COURT OF TENNESSEE, : for the... eastern division, september terms,
1874-75, for th by
Jere Baxter(
Book
)
1
edition published
in
2016
in
English
and held by
1 WorldCat member
library
worldwide
Announcement of Jere Baxter, of Davidson, as a candidate for the gubernatorial nomination of the Tennessee Democratic Convention,
July 15, 1890 by
Jere Baxter(
Book
)
1
edition published
in
1890
in
English
and held by
1 WorldCat member
library
worldwide
In the grip of monopoly : how the Louisville & Nashville Railroad has oppressed the citizens of Nashville, its false pretenses
to our people laid bare, cold facts for the public by
Jere Baxter(
Book
)
1
edition published
in
1901
in
English
and held by
1 WorldCat member
library
worldwide
Reports, Supreme Court, Tennessee, 1872-78 by
Tennessee(
Book
)
1
edition published
in
1902
in
English
and held by
1 WorldCat member
library
worldwide
REPORTS OF CASES ARGUED AND DETERMINED IN THE SUPREME COURT OF TENNESSEE, : for the... eastern, middle and western divisions by
Jere Baxter(
Book
)
1
edition published
in
2015
in
English
and held by
1 WorldCat member
library
worldwide
British reconnaissance prior to the battle of the Modder River, November 26-27 and prior to the battle of Magersfontein, December
9-11th by
Jere Baxter(
)
in
Undetermined
and held by
1 WorldCat member
library
worldwide
This paper discusses Lord Methuen’s forces and whether he had sufficient cavalry and mounted infantry to make reconnaissance
effective
more
fewer
Audience Level
0 | 1 | |||
Kids | General | Special |
Audience level:
0.63
(from
0.21
for
British re
... to
0.99
for
Baxter, Je
...)
Related Identities
Tennessee Supreme Court
Pickle, George Wesley 1845-1917
Lea, Benjamin James 1833-1894
Heiskell, Joseph B. (Joseph Brown) 1823-1913
Thompson, Frank M. (Frank Marian) 1860-1926
Beeler, Roy H. (Roy Hood) 1882-1954
Cornelius, Charles Le Sueur 1888-1968
Cates, Charles T. (Charles Theodore) 1863-1938
McCanless, George F.
Pack, David M.
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikipedia Jere Baxter
Wikidata.
Associated Subjects
Alabama Alabama--Sheffield Baxter, Jere, Baxter, Nathaniel, Cisco, Jay Guy Coal mines and mining Democratic Party (Tenn.) Economic history Finance Frazier, James Beriah, Genealogy Industries Iron mines and mining Jackson, Robert F.,--Mrs., Jackson, Robert F.--(Robert Fenner), Law Law reports, digests, etc Lawyers Louisville and Nashville Railroad Company Mississippi River Valley Newspaper publishing Political campaigns Politics and government Presidents Publishers and publishing Railroad law Railroads Railroads and state Railroads--Finance Reconstruction Finance Corporation Soldiers' bodies, Disposition of Statesmen Tennessee Tennessee.--General Assembly.--Senate Tennessee Central Railroad Company Tennessee Central Railway Company Tennessee Historical Society Tennessee--Nashville Tennessee--Sumner County Tennessee--Tennessee, Middle Vanderbilt University Winchester, James,
Alternative Names
Jere Baxter American politician
Jere Baxter Amerikaans politicus (1852-1904)
Jere Baxter personnalité politique américaine
Jere Baxter político estadounidense
Jere Baxter yhdysvaltalainen poliitikko
Languages
English
(55)
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);