Skip to content

Commit 3c25502

Browse files
committed
first round of revisions from grad college complete
1 parent 7856206 commit 3c25502

File tree

2 files changed

+75
-14
lines changed

2 files changed

+75
-14
lines changed

Asberry_Dissertation/Dissertation.rnw

+71-10
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ liststotoc, % Uncomment to add the list of figures/tables/etc to the table of co
3939
%nohyperref, % Uncomment to not load the hyperref package
4040
headsepline, % Uncomment to get a line under the header
4141
chapterinoneline, % Uncomment to place the chapter title next to the number on one line
42-
%consistentlayout, % Uncomment to change the layout of the declaration, abstract and acknowledgements pages to match the default layout
42+
consistentlayout, % Uncomment to change the layout of the declaration, abstract and acknowledgements pages to match the default layout
4343
openany, % eliminates all extra blank pages from entire document
4444
]{DoctoralThesis} % The class file specifying the document structure
4545

@@ -65,6 +65,7 @@ openany, % eliminates all extra blank pages from entire document
6565
\usepackage{tipa} % Required for IPA symbols
6666

6767
\usepackage{multirow} % Required for multirow cells in tables
68+
6869
%----------------------------------------------------------------------------------------
6970
% TODO PACKAGE
7071
%----------------------------------------------------------------------------------------
@@ -90,9 +91,70 @@ openany, % eliminates all extra blank pages from entire document
9091
%showframe, % Uncomment to show how the type block is set on the page
9192
}
9293

94+
%----------------------------------------------------------------------------------------
95+
% TOC Formatting
96+
%----------------------------------------------------------------------------------------
9397
% Change the depth of numbering in (sub)sections and their display in the table of contents
94-
\setcounter{tocdepth}{4}
95-
\setcounter{secnumdepth}{4}
98+
%\setcounter{tocdepth}{4}
99+
%\setcounter{secnumdepth}{4}
100+
101+
%\usepackage{tocloft,calc}
102+
%\renewcommand{\cftchappresnum}{\chaptername\space}
103+
%\setlength{\cftchapnumwidth}{\widthof{\textbf{Appendix~999~}}}
104+
%\makeatletter
105+
%\g@addto@macro\appendix{%
106+
% \addtocontents{toc}{%
107+
% \protect\renewcommand{\protect\cftchappresnum}{\appendixname\space}%
108+
% }%
109+
%}
110+
111+
%\usepackage{titlesec}
112+
%\usepackage{tocbasic}
113+
%
114+
%\DeclareTOCStyleEntry[
115+
% entrynumberformat=\entrywithprefix{\chaptertitlename},
116+
% dynnumwidth
117+
%]{tocline}{chapter}
118+
%\newcommand*\entrywithprefix[2]{#1~#2}
119+
120+
%\usepackage[titletoc]{appendix}%
121+
%\usepackage{tocloft}%
122+
%
123+
%\setlength{\cftchapnumwidth}{65pt}%
124+
%
125+
%\renewcommand{\cftpartpresnum}{\partname\hspace{10pt}}
126+
%\renewcommand{\cftchappresnum}{\chaptername\hspace{5pt}}
127+
%\renewcommand{\cftchapaftersnum}{\hspace{5pt}}
128+
%
129+
%\let\oldappendices\appendices
130+
%\renewcommand{\appendices}{%
131+
% \oldappendices
132+
% \bookmarksetupnext{level=-1}
133+
% \addtocontents{toc}{\protect\renewcommand\protect\cftpartpresnum{}}
134+
% %\addcontentsline{toc}{part}{Appendices}
135+
% \addtocontents{toc}{\protect\renewcommand\protect\cftchappresnum{}%
136+
% \protect\setlength\protect\cftchapnumwidth{15pt}}%
137+
%}
138+
139+
\usepackage{titlesec}
140+
\usepackage{titletoc}
141+
\usepackage{appendix}
142+
143+
\makeatletter
144+
145+
\titlecontents{chapter}%
146+
[0em]%
147+
{}%
148+
{\@chapapp\ \thecontentslabel\quad}%
149+
{\hspace{-0em}}%
150+
{\hfill\contentspage}%
151+
[\addvspace{0pt}]%
152+
153+
\g@addto@macro\appendices{%
154+
\addtocontents{toc}{\protect\renewcommand{\protect\@chapapp}{\appendixname}}%
155+
}
156+
157+
\makeatother
96158

97159
%----------------------------------------------------------------------------------------
98160
% THESIS INFORMATION
@@ -347,14 +409,15 @@ In the Graduate College \\ % University required text
347409
% a: all major sections with the document in a consistent manner
348410
% b: section headings in document must match their listings (exact words) in TOC
349411
%
412+
350413
\tableofcontents % Prints the main table of contents
351-
%
414+
352415
% Lists of figures and tables must include accurate page numbers
353416
\listoffigures % Prints the list of figures
354-
355417
\listoftables % Prints the list of tables
356418

357419

420+
358421
%----------------------------------------------------------------------------------------
359422
% ABBREVIATIONS
360423
%----------------------------------------------------------------------------------------
@@ -431,13 +494,11 @@ In the Graduate College \\ % University required text
431494
%If no appendices are used, comment out all active lines in this section
432495
%\pagestyle{thesis}
433496

434-
\renewcommand\thechapter{}
435-
436-
\appendix % Cue to tell LaTeX that the following "chapters" are Appendices
437497

498+
%\appendix % Cue to tell LaTeX that the following "chapters" are Appendices
438499
% Include the appendices of the thesis as separate files from the Appendices folder
439500
% Uncomment the lines as you write the Appendices
440-
501+
\begin{appendices}
441502
\Sexpr{knit_child('Appendices/Appendix_BLP.rnw')}
442503
\Sexpr{knit_child('Appendices/Appendix_LexTALE.rnw')}
443504
\Sexpr{knit_child('Appendices/Appendix_LexTALE-Esp.rnw')}
@@ -447,7 +508,7 @@ In the Graduate College \\ % University required text
447508
\Sexpr{knit_child('Appendices/Appendix_Wuggy.rnw')}
448509
\Sexpr{knit_child('Appendices/Appendix_Software.rnw')}
449510
%\Sexpr{knit_child('Appendices/Revision_Comments.rnw')}
450-
511+
\end{appendices}
451512
%----------------------------------------------------------------------------------------
452513
% BIBLIOGRAPHY
453514
%----------------------------------------------------------------------------------------

Asberry_Dissertation/FrontBackMatter/Abstract.rnw

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111

1212
\addchaptertocentry{\abstractname} % Add the abstract to the table of contents
13-
14-
\begin{center}
15-
\MakeUppercase{Abstract}\\ \bigskip
16-
\end{center}
13+
\chapter*{Abstract} % Main chapter title
14+
%\begin{center}
15+
%\MakeUppercase{Abstract}\\ \bigskip
16+
%\end{center}
1717
\ttodo[inline]{mh:should be present tense. I won't mark these further.\newline me: converted past tense to present tense}
1818
This dissertation investigates intuitions about Spanish syllable structure and whether or not word segmentation strategies are affected by these syllabic intuitions. The study utilizes monolingual Spanish speakers, L1 Spanish speakers who are L2 learners of English and L1 English speakers who are L2 learners of Spanish. For Spanish syllabic intuitions a two-alternative forced choice task is used to gain insights about the initial syllables of CV and CVC trisyllabic words. A visual letter sequence monitoring task is utilized to investigate the use of a syllable-based segmentation strategy when processing Spanish. Support is found for differing Spanish syllabic intuitions between L1 Spanish--L2 English and L1 English--L2 Spanish bilinguals. L1 Spanish speakers have been shown to use a syllable-based segmentation approach to Spanish word segmentation while L1 English speakers have shown only a slight sensitivity to the syllable's role when segmenting in their L2. Lastly, previous studies in investigating the syllable-based segmentation strategy have included some auditory components, which may have provided additional help in some manner to participants. The current studies here replicate these findings utilizing a completely visual design, which indicates the plausibility of a visual experimental design to study phonological processes.\newline
1919

0 commit comments

Comments
 (0)