Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convert multiple authors in str to array of strs #750

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/bids_eyetracker.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ cfg.dataset_description.Name = 'Visual Stability: predictive rema
cfg.dataset_description.BIDSVersion = 'unofficial extension';
% optional for dataset_description.json
cfg.dataset_description.Authors = 'Tao He, Matthias Fritsche, Floris de Lange';
cfg.dataset_description.Authors = {'Tao He', 'Matthias Fritsche', 'Floris de Lange'};
cfg.dataset_description.DatasetDOI = 'http://hdl.handle.net/11633/di.dccn.DSC_3018034.01_694';
cfg.dataset_description.License = 'RU-DI-HD-1.0';
cfg.dataset_description.Acknowledgements = 'n/a';
Expand Down
2 changes: 1 addition & 1 deletion example/bids_meg.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ for subindx=1:numel(subj)
% optional for dataset_description.json
cfg.dataset_description.License = 'RU-DI-HD-1.0';
cfg.dataset_description.Authors = 'Te Woerd ES, Oostenveld R, de Lange FP, Praamstra P';
cfg.dataset_description.Authors = {'Te Woerd ES', 'Oostenveld R', 'de Lange FP, Praamstra P'};
cfg.dataset_description.ReferencesAndLinks = {'https://doi.org/10.1152/jn.00547.2016'};
cfg.dataset_description.EthicsApprovals = 'DCCN 3018009.04';
Expand Down
2 changes: 1 addition & 1 deletion example/bids_nirs.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ The complete original dataset is available from Mendeley, a subset of the raw da

% the following settings relate to the dataset_description.json
cfg.dataset_description.Name = 'Defenderfer 2019; fNIRS data files for event-related vocoding/background noise study';
cfg.dataset_description.Authors = 'Defenderfer, Jessica; Buss, Aaron ';
cfg.dataset_description.Authors = {'Defenderfer, Jessica', 'Buss, Aaron'};
cfg.dataset_description.DatasetDOI = 'http://dx.doi.org/10.17632/4cjgvyg5p2.1';
cfg.dataset_description.License = 'CC BY 4.0';
cfg.dataset_description.ReferencesAndLinks = {'https://www.fieldtriptoolbox.org/example/nirs_speech/'}; % this can be a list
Expand Down
Loading