質問編集履歴

5

質問文の編集

2022/12/29 06:27

投稿

shu214
shu214

スコア18

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,9 @@
1
1
  ### 実現したいこと
2
2
  - bibliographyのヘッダーが左右に「参考文献」と表示されるのを、右だけにしたい。
3
3
  ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2022-12-28/f5e20e38-0810-4b6e-a71c-7ae0ec56a661.png)
4
+
5
+ - 本文のヘッダーに関しては変更をしたくない(下記コードをコンパイルした際の3ページ目のヘッダーは下の画像のままにしたい)。
6
+ ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2022-12-29/18d159ec-1900-4579-b9e8-a5967481df05.png)
4
7
 
5
8
  ### 該当のソースコード
6
9
 
@@ -91,6 +94,8 @@
91
94
  \chapter{はじめに} %章
92
95
 
93
96
  \section{背景} %1.1
97
+ 文章を記入。\\
98
+ a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\a\\
94
99
  \subsection{---とは} %1.1.1
95
100
  \cite{keddie1997film,goossens1994latex,mittelbach2004latex,steward2000overview,lamport1985i1,hunter1994reconsidering,oetiker1998not,lamport1991latex,morton1954swelling,raulf2014latex,goossens1997latex,yassin1994latex}
96
101
  \subsection{-----とは} %1.1.2
@@ -119,7 +124,6 @@
119
124
  \bibliography{sample}
120
125
 
121
126
  \end{document}
122
-
123
127
  ```
124
128
  \
125
129
  bibファイル(sample.bibとしてください)

4

urlの修正

2022/12/29 04:54

投稿

shu214
shu214

スコア18

test CHANGED
File without changes
test CHANGED
@@ -12,8 +12,8 @@
12
12
  ```
13
13
  \
14
14
  \
15
- 環境:CloudLatex(https://cloudlatex.io/)
15
+ 環境:CloudLatex( https://cloudlatex.io/
16
- 参考コード(https://qiita.com/non-caffeine/items/1a7a3ad2c8f840d8748f)\
16
+ 参考コード( https://qiita.com/non-caffeine/items/1a7a3ad2c8f840d8748f
17
17
  (好きな名前.texとしてください)
18
18
  ```Latex
19
19
  \documentclass[12pt,a4j,dvipdfmx]{jreport}

3

urlの追加

2022/12/29 04:52

投稿

shu214
shu214

スコア18

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
  ```
13
13
  \
14
14
  \
15
- 環境:CloudLatex
15
+ 環境:CloudLatex(https://cloudlatex.io/)
16
16
  参考コード(https://qiita.com/non-caffeine/items/1a7a3ad2c8f840d8748f)\
17
17
  (好きな名前.texとしてください)
18
18
  ```Latex

2

再現可能なコードの追加

2022/12/29 04:50

投稿

shu214
shu214

スコア18

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,264 @@
10
10
  \bibliographystyle{junsrt} %本文に\cite{}を入れることで,参考文献表示
11
11
  \bibliography{reference} %bibtexファイルの読み込み
12
12
  ```
13
+ \
14
+ \
15
+ 環境:CloudLatex
16
+ 参考コード(https://qiita.com/non-caffeine/items/1a7a3ad2c8f840d8748f)\
17
+ (好きな名前.texとしてください)
18
+ ```Latex
19
+ \documentclass[12pt,a4j,dvipdfmx]{jreport}
20
+
21
+ \usepackage{comment}
22
+ \usepackage{float}
23
+ %\usepackage{color}
24
+ \usepackage{multicol}
25
+ \usepackage{pict2e}
26
+ \usepackage{wrapfig}
27
+ \usepackage{graphicx}
28
+ \usepackage[hang,small,bf]{caption}
29
+ \usepackage[subrefformat=parens]{subcaption}
30
+ \captionsetup{compatibility=false}
31
+ \usepackage{bm}
32
+ \usepackage{url}
33
+ \usepackage{underscore}
34
+ \usepackage{colortbl}
35
+ \usepackage{tabularx}
36
+ \usepackage{fancyhdr}
37
+ \usepackage{ulem}
38
+ \usepackage{cite}
39
+ \usepackage{amsmath,amssymb,amsfonts}
40
+ \usepackage{algorithmic}
41
+ \usepackage{textcomp}
42
+ \usepackage{xcolor}
43
+ \usepackage[ipaex]{pxchfon}
44
+ \usepackage[top=30truemm,bottom=30truemm,left=25truemm,right=25truemm]{geometry}
45
+ \usepackage{lscape}
46
+
47
+
48
+ \usepackage[top=30truemm,bottom=30truemm,left=25truemm,right=25truemm]{geometry}
49
+
50
+ \begin{document}
51
+
52
+ \thispagestyle{empty}
53
+ \begin{center}
54
+
55
+ \vspace{20mm}
56
+ {\Large\noindent 文書}\\
57
+ \vspace{40mm}
58
+ {\Huge\noindent\textbf{タイトル}}\\
59
+ \vspace{40mm}
60
+
61
+ {\Large\noindent
62
+ 2022年12月29日\\
63
+ \vspace{\baselineskip}
64
+ 名前
65
+ }
66
+ \vspace{40mm}
67
+
68
+ \end{center}
69
+
70
+ \thispagestyle{empty}
71
+ \clearpage
72
+
73
+ %=====================================================================================
74
+ \renewcommand{\abstractname}{要旨}
75
+
76
+ \begin{abstract}
77
+ 要旨を記入。
78
+ \end{abstract}
79
+
80
+ %=====================================================================================
81
+
82
+ % 目次の表示
83
+ \tableofcontents
84
+
85
+ %=====================================================================================
86
+ \pagestyle{fancy}
87
+ \lhead{\rightmark}
88
+ \renewcommand{\chaptermark}[1]{\markboth{第\ \normalfont\thechapter\ 章~~#1}{}}
89
+ %=====================================================================================
90
+
91
+ \chapter{はじめに} %章
92
+
93
+ \section{背景} %1.1
94
+ \subsection{---とは} %1.1.1
95
+ \cite{keddie1997film,goossens1994latex,mittelbach2004latex,steward2000overview,lamport1985i1,hunter1994reconsidering,oetiker1998not,lamport1991latex,morton1954swelling,raulf2014latex,goossens1997latex,yassin1994latex}
96
+ \subsection{-----とは} %1.1.2
97
+ \cite{keddie2010fundamentals,cabanes20121,jacob1993composition,micheletto1995simple,ng1981reaction}
98
+
99
+ \section{目的}
100
+
101
+ \section{校正}
102
+
103
+ \chapter{結果}
104
+
105
+ \chapter{考察}
106
+
107
+ \chapter{おわりに}
108
+ まとめを記入。
109
+ %=====================================================================================
110
+ \chapter*{謝辞}
111
+ \addcontentsline{toc}{chapter}{謝辞}
112
+ 謝辞を記入。
113
+
114
+ %=====================================================================================
115
+
116
+ \addcontentsline{toc}{chapter}{参考文献}
117
+ \renewcommand{\bibname}{参考文献}
118
+ \bibliographystyle{junsrt}
119
+ \bibliography{sample}
120
+
121
+ \end{document}
122
+
123
+ ```
124
+ \
125
+ bibファイル(sample.bibとしてください)
126
+ ```bib
127
+ @article{keddie1997film,
128
+ title={Film formation of latex},
129
+ author={Keddie, Joseph L},
130
+ journal={Materials Science and Engineering: R: Reports},
131
+ volume={21},
132
+ number={3},
133
+ pages={101--170},
134
+ year={1997},
135
+ publisher={Elsevier}
136
+ }
137
+ @book{goossens1994latex,
138
+ title={The LATEX companion},
139
+ author={Goossens, Michel and Mittelbach, Frank and Samarin, Alexander},
140
+ volume={1},
141
+ year={1994},
142
+ publisher={Addison-Wesley Reading}
143
+ }
144
+ @book{mittelbach2004latex,
145
+ title={The LATEX companion},
146
+ author={Mittelbach, Frank and Goossens, Michel and Braams, Johannes and Carlisle, David and Rowley, Chris},
147
+ year={2004},
148
+ publisher={Addison-Wesley Professional}
149
+ }
150
+ @article{steward2000overview,
151
+ title={An overview of polymer latex film formation and properties},
152
+ author={Steward, PA and Hearn, J and Wilkinson, MC},
153
+ journal={Advances in colloid and interface science},
154
+ volume={86},
155
+ number={3},
156
+ pages={195--267},
157
+ year={2000},
158
+ publisher={Elsevier}
159
+ }
160
+ @book{lamport1985i1,
161
+ title={I1 ($\backslash$LaTeX)---A Document},
162
+ author={Lamport, Leslie},
163
+ volume={410},
164
+ year={1985},
165
+ publisher={pub-AW}
166
+ }
167
+ @article{hunter1994reconsidering,
168
+ title={Reconsidering the functions of latex},
169
+ author={Hunter, J Robert},
170
+ journal={Trees},
171
+ volume={9},
172
+ number={1},
173
+ pages={1--5},
174
+ year={1994},
175
+ publisher={Springer}
176
+ }
177
+ @article{oetiker1998not,
178
+ title={The not so short introduction to latex 2},
179
+ author={Oetiker, Tobias and Partl, Hubert and Hyna, Irene and Schlegl, Elisabeth},
180
+ journal={Available as CTAN/info/lshort/lshort2e. pdf and CTAN/info/lshort/lshort2e},
181
+ volume={600},
182
+ year={1998}
183
+ }
184
+ @book{lamport1991latex,
185
+ title={LaTeX},
186
+ author={Lamport, Leslie},
187
+ year={1991},
188
+ publisher={{\'S}Company Cyfronet}
189
+ }
190
+ @article{morton1954swelling,
191
+ title={Swelling of latex particles},
192
+ author={Morton, Maurice and Kaizerman, Samuel and Altier, Mary W},
193
+ journal={Journal of Colloid Science},
194
+ volume={9},
195
+ number={4},
196
+ pages={300--312},
197
+ year={1954},
198
+ publisher={Elsevier}
199
+ }
200
+ @incollection{raulf2014latex,
201
+ title={The latex story},
202
+ author={Raulf, Monika},
203
+ booktitle={History of Allergy},
204
+ volume={100},
205
+ pages={248--255},
206
+ year={2014},
207
+ publisher={Karger Publishers}
208
+ }
209
+ @book{goossens1997latex,
210
+ title={The LATEX graphics companion: illustrating documents with TEX and PostScript},
211
+ author={Goossens, Michel and Rahtz, Sebastian PQ and Rahtz, Sebastian and Mittelbach, Frank},
212
+ volume={3},
213
+ year={1997},
214
+ publisher={Addison-Wesley Professional}
215
+ }
216
+ @article{yassin1994latex,
217
+ title={Latex allergy in hospital employees.},
218
+ author={Yassin, Mohamed S and Lierl, Michelle B and Fischer, Thomas J and O'Brien, Kevin and Cross, Jennifer and Steinmetz, Christine},
219
+ journal={Annals of allergy},
220
+ volume={72},
221
+ number={3},
222
+ pages={245--249},
223
+ year={1994}
224
+ }
225
+ @book{keddie2010fundamentals,
226
+ title={Fundamentals of latex film formation: processes and properties},
227
+ author={Keddie, Joseph and Routh, Alexander F},
228
+ year={2010},
229
+ publisher={Springer Science \& Business Media}
230
+ }
231
+ @article{cabanes20121,
232
+ title={1 Latex Allergy: Position Paper},
233
+ author={Caba{\~n}es, N and Igea, JM and de La Hoz, B and Agust{\'\i}n, P and Blanco, C and Dom{\'\i}nguez, J and L{\'a}zaro, M and Lleonart, R and M{\'e}ndez, J and Nieto, A and others},
234
+ journal={Journal of Investigational Allergology and Clinical Immunology},
235
+ volume={22},
236
+ number={5},
237
+ pages={313},
238
+ year={2012}
239
+ }
240
+ @article{jacob1993composition,
241
+ title={The composition of natural latex fromHevea brasiliensis},
242
+ author={Jacob, Jean-Louis and d’Auzac, Jean and Prevot, Jean-Claude},
243
+ journal={Clinical reviews in allergy},
244
+ volume={11},
245
+ number={3},
246
+ pages={325--337},
247
+ year={1993},
248
+ publisher={Springer}
249
+ }
250
+ @article{micheletto1995simple,
251
+ title={A simple method for the production of a two-dimensional, ordered array of small latex particles},
252
+ author={Micheletto, Ruggero and Fukuda, Hiroyaki and Ohtsu, Motoichi},
253
+ journal={Langmuir},
254
+ volume={11},
255
+ number={9},
256
+ pages={3333--3336},
257
+ year={1995},
258
+ publisher={ACS Publications}
259
+ }
260
+ @article{ng1981reaction,
261
+ title={Reaction of natural rubber latex with performic acid},
262
+ author={Ng, S-C and Gan, L-H},
263
+ journal={European Polymer Journal},
264
+ volume={17},
265
+ number={10},
266
+ pages={1073--1077},
267
+ year={1981},
268
+ publisher={Elsevier}
269
+ }
270
+ ```
13
271
 
14
272
  ### 試したこと
15
273
 

1

最後の挨拶

2022/12/28 11:54

投稿

shu214
shu214

スコア18

test CHANGED
File without changes
test CHANGED
@@ -15,3 +15,6 @@
15
15
 
16
16
  \pagestyleや\thispagestyleで\markbothを設定する方法は試しましたができませんでした。
17
17
 
18
+ #
19
+ よろしくお願いいたします。
20
+