-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjournal-challengingGenderBinary.html
324 lines (272 loc) · 12.4 KB
/
journal-challengingGenderBinary.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="date" content="2014-04-10" />
<title>Challenging the Gender Binary</title>
</head>
<body>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1" /> -->
<link href="auxDocs/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="auxDocs/gallery.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/reset.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/et-book.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/riley.css" type="text/css" />
<!-- <link rel="stylesheet" href="auxDocs/riley-navbar.css" type="text/css" /> -->
<style type="text/css">
/*h1 {*/
/*font-size: 34px;*/
/*}*/
/*h1.title {*/
/*font-size: 38px;*/
/*}*/
/*h2 {*/
/*font-size: 30px;*/
/*}*/
/*h3 {*/
/*font-size: 24px;*/
/*}*/
/*h4 {*/
/*font-size: 18px;*/
/*}*/
/*h5 {*/
/*font-size: 16px;*/
/*}*/
/*h6 {*/
/*font-size: 12px;*/
/*}*/
/*.table th:not([align]) {*/
/*text-align: left;*/
/*}*/
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
/*background-color: rgba(0, 0, 0, 0.04);*/
}
/*img {*/
/*max-width:100%;*/
/*height: auto;*/
/*}*/
/*.tabbed-pane {*/
/*padding-top: 12px;*/
/*}*/
/*button.code-folding-btn:focus {*/
/*outline: none;*/
/*}*/
/*</style>
<style type="text/css">*/
/* padding for bootstrap navbar */
body {
padding-top: 51px;
padding-bottom: 40px;
}
/* offset scroll position for anchor links (for fixed navbar) */
.section h1 {
padding-top: 56px;
margin-top: -56px;
}
.section h2 {
padding-top: 56px;
margin-top: -56px;
}
.section h3 {
padding-top: 56px;
margin-top: -56px;
}
.section h4 {
padding-top: 56px;
margin-top: -56px;
}
.section h5 {
padding-top: 56px;
margin-top: -56px;
}
.section h6 {
padding-top: 56px;
margin-top: -56px;
}
</style>
<!-- <script> -->
<!-- // manage active state of menu based on current page -->
<!-- $(document).ready(function () { -->
<!-- // active menu anchor -->
<!-- href = window.location.pathname -->
<!-- href = href.substr(href.lastIndexOf('/') + 1) -->
<!-- if (href === "") -->
<!-- href = "index.html"; -->
<!-- var menuAnchor = $('a[href="' + href + '"]'); -->
<!-- -->
<!-- // mark it active -->
<!-- menuAnchor.parent().addClass('active'); -->
<!-- -->
<!-- // if it's got a parent navbar menu mark it active as well -->
<!-- menuAnchor.closest('li.dropdown').addClass('active'); -->
<!-- }); -->
<!-- </script> -->
<!-- </head> -->
<!-- <body> -->
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
<!-- CODEFOLDING SCRIPT -->
<script>
window.initializeCodeFolding = function(show) {
// handlers for show-all and hide all
$("#rmd-show-all-code").click(function() {
$('div.r-code-collapse').each(function() {
$(this).collapse('show');
});
});
$("#rmd-hide-all-code").click(function() {
$('div.r-code-collapse').each(function() {
$(this).collapse('hide');
});
});
// index for unique code element ids
var currentIndex = 1;
// select all R code blocks
var rCodeBlocks = $('pre.r');
rCodeBlocks.each(function() {
// create a collapsable div to wrap the code in
var div = $('<div class="collapse r-code-collapse"></div>');
if (show)
div.addClass('in');
var id = 'rcode-643E0F36' + currentIndex++;
div.attr('id', id);
$(this).before(div);
$(this).detach().appendTo(div);
// add a show code button right above
var showCodeText = $('<span>' + (show ? 'Hide' : 'Code') + '</span>');
var showCodeButton = $('<button type="button" class="btn btn-default btn-xs code-folding-btn pull-right"></button>');
showCodeButton.append(showCodeText);
showCodeButton
.attr('data-toggle', 'collapse')
.attr('data-target', '#' + id)
.attr('aria-expanded', show)
.attr('aria-controls', id);
var buttonRow = $('<div class="row"></div>');
var buttonCol = $('<div class="col-md-12"></div>');
buttonCol.append(showCodeButton);
buttonRow.append(buttonCol);
div.before(buttonRow);
// update state of button on show/hide
div.on('hidden.bs.collapse', function () {
showCodeText.text('Code');
});
div.on('show.bs.collapse', function () {
showCodeText.text('Hide');
});
});
}
</script>
<div class="container-fluid main-container">
<div class="navbar navbar-default navbar-fixed-top" role=
"navigation">
<div class="container">
<div class="navbar-header"><a class="navbar-brand" href="index.html"><i class="fa fa-home" aria-hidden="true"></i></a></div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav"></ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="litSearchMethods.html">Methods</a>
</li>
<li>
<a href="graphicsGallery.html">DataViz <!--& Tabulations--></a>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">< Source Code ></a>
<ul class="dropdown-menu" role="button">
<li><a href="QCA.nb.html"><code>R</code> Source Code & Output Notebook</a></li>
<li><a href="sourceCode.html"><code>R</code> & <code>SQL</code> Source Files & Data</a></li>
</ul>
</li>
<li>
<a target="_blank" href="auxDocs/_journal-Passcode.html"> [<i class="fa fa-lock" aria-hidden="true"></i>]</a>
</li>
<!-- </ul>
</li> -->
</ul>
</div>
<!--/.nav-collapse --></div>
<!--/.container --></div>
<!--/.navbar -->
<div class="fluid-row" id="header"></div>
</div>
<h1 class="title toc-ignore">Challenging the Gender Binary</h1>
<h4 class="date"><em>2014-04-10</em></h4>
<blockquote>
<p>“Yet it is important to note that the majority of existing risk models, risk assessment instruments, and prevention and intervention strategies were primarily developed with heterosexual samples and then applied to FSSIPV. It is only recently that researchers have begun to examine the role of minority stress (e.g., internalized homophobia and discrimination) as risk factors for IPV in same-sex relationships <span class="citation">(Balsam & Szymanski, 2005)</span>.”</p>
<footer>
<span class="citation">(Hassouneh & Glass, 2008, p. 311)</span>
</footer>
<p>“Historically, heterosexual discourse has engendered persons as being feminine or masculine. This duality has created gender role stereotypes that many view as immutable biological categories rather than social constructions. Perper and Cornog (2000) describe this form of biological categorization:”</p>
<blockquote>
<p>“Western cultural traditions have created two idealized categories, called Man and Woman, that co-align gender roles, sexual activities, and anatomy. In everyday and vivid words, Men enact masculine gender roles, have sex with women, and have big muscles, penises, and testicles. Women enact feminine gender roles, have sex with men, and have breats, vaginas, and clitorises. (p.101).”</p>
</blockquote>
<p>In addition to focusing on women’s anatomy and sexual behavior, traditional gender role stereotyping has portrayed women as being innately nonviolent, caretaking, and nurturing <span class="citation">(Gilbert, 2002; Girshick, 2002; Perilla, Frndak, Lillard, & East, 2003)</span>. This perception has significant implications for women who behave in ways that are incongruent with traditional gender stereotypical roles, such as women who perpetrate violence and women who have sex with women. Such women may be viewed as being unnatural, deviant, a threat to the status quo of existing gender relations in families and society.</p>
<blockquote>
<footer>
<span class="citation">(Hassouneh & Glass, 2008, p. 312)</span>
</footer>
</blockquote>
</blockquote>
<hr />
<div id="references" class="section level1">
<h1>References</h1>
<div class="refs">
<div id="refs" class="references">
<div id="ref-balsam2005relationship">
<p>Balsam, K. F., & Szymanski, D. M. (2005). Relationship quality and domestic violence in women’s same-sex relationships: The role of minority stress. <em>Psychology of Women Quarterly</em>, <em>29</em>(3), 258–269.</p>
</div>
<div id="ref-gilbert2002discourses">
<p>Gilbert, P. R. (2002). Discourses of female violence and societal gender stereotypes. <em>Violence Against Women</em>, <em>8</em>(11), 1271–1300.</p>
</div>
<div id="ref-girshick2002no">
<p>Girshick, L. B. (2002). No sugar, no spice: Reflections on research on woman-to-woman sexual violence. <em>Violence Against Women</em>, <em>8</em>(12), 1500–1520.</p>
</div>
<div id="ref-hassouneh2008influence">
<p>Hassouneh, D., & Glass, N. (2008). The influence of gender role stereotyping on women’s experiences of female same-sex intimate partner violence. <em>Violence Against Women</em>, <em>14</em>(3), 310–325.</p>
</div>
<div id="ref-perilla2003working">
<p>Perilla, J. L., Frndak, K., Lillard, D., & East, C. (2003). A working analysis of women’s use of violence in the context of learning, opportunity, and choice. <em>Violence Against Women</em>, <em>9</em>(1), 10–46.</p>
</div>
</div>
</div>
<hr class="Bold" />
<style>
</style>
<div style="width:25%;color:rgba(0, 0, 0, 0.6);text-align:left;font-size:0.75rem;float:right">
<!-- <div class="contactIcons"> -->
<span style="color:#404040;" class="lmText" id="lmText"></span><span id="lmDate" class="lmDate"></span>
<hr />
<a href="mailto:rms7@pdx.edu" target="_blank" aria-label="Email: rms7@pdx.edu" class="iconOnly"><i class="fa fa-envelope" aria-hidden="true"></i></a> <a href="https://www.linkedin.com/in/rachel-smith-9b8b2931/" target="_blank" aria-label="Linked In" class="iconOnly"><i class="fa fa-linkedin-square"></i></a> <a href="https://github.com/eccriley" target="_blank" aria-label="Github" class="iconOnly"><i class="fa fa-github-square" aria-hidden="true"></i></a> <a href="https://twitter.com/rileymsmith19" target="_blank" aria-label="Twitter" class="iconOnly"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
<!-- </div> -->
<hr />
<span>Design by <a href="EccRiley.github.io"><em><strong>Rachel ("Riley") Smith-Hunter</strong></em></a> based on the <a href="https://github.com/edwardtufte/tufte-css"><em><code>Tufte CSS</code></em></a> theme by <a href="https://github.com/daveliepmann"><em>Dave Liepmann</em></a> & <a href="https://github.com/edwardtufte"><em>Edward Tufte</em></a></span>
<hr />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Conducting a Community-Psychology-Focused & Action-Oriented Systematic Literature Review using R, SQL, & Git</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://eccriley.github.io/CommPsy-SysLitRvw/" property="cc:attributionName" rel="cc:attributionURL">Rachel M. Smith-Hunter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>. Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="EccRiley.github.io" rel="dct:source">EccRiley.github.io</a>.<br /><br />
<script src="auxDocs/lastModified.js"></script>
</div>
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>